body, h1, h2, h3, section, article, div, p, span {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.2em;
    font-weight: 300;
}
body {
    /*background-image: url('assets/gaesca-desktop-background.webp');*/
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #ffffff;
    background-size: cover;
	color: #97989a;
}
h1 {
	font-size: 3em;
    font-weight: 200;
	text-transform:capitalize;
    color: #11b19f;
}
h2 {
	font-size: 1.25em;
	line-height: 1.2em;
}
h3 {
	font-size: 3em;
}
img {
	width: 80%;
	max-width: 400px;
}
a {
	color: #ffffff;
	text-decoration: none;
}
.container {
    height: 100vh;
	padding: 0 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
}
.col {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 48px;
}
.kv img {
    display: none;
}
.highlight {
    font-weight: 600;
    color: #11b19f;
}
.conversemos div {
    background-color: white;
    border-radius: 16px;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    gap: 8px;
}
.conversemos a img {
    /* height: 48px; */
    display: inline;
}
.footer {
    font-size: 0.8em;
    padding: 16px 0px;
    border-top: 1px solid #dddddd;
}
@media (max-width: 768px) {
    body {
        background-color:#F7F8FC;
        background-image: none;
        text-align: center;
    }
    h1 {
        font-size: 3em;
    }
    .container {
        padding:0 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .col {
        width: 100%;
        gap: 40px;
    }
    .conversemos {
        margin: 0;
    }
    .logo img {
        display: inline;
        width: 100%;
        max-width: 400px;
    }
    .kv img {
        display: inline;
        width: 100%;
        max-width: 320px;
    }
    .footer {
        font-size: 0.6em;
        padding: 16px;
        border-top: 1px solid #dddddd;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 0.8em;
    }
    p {
        font-size: 0.8em;
    }
    .col {
        gap: 24px;
    }
    .logo img {
        display: inline;
        width: 100%;
        max-width: 310px;
    }
    .kv img {
        display: inline;
        width: 100%;
        max-width: 160px;
    }
}