:root{
    --margin-left: 120px;
    --margin-right: 120px;
    --margin-inline: 120px;
}

html, body{
    margin: 0;
}

body{
    font-family: 'Montserrat', sans-serif;
}

.top{
    background: linear-gradient(90deg, #1D858C 17.62%, #19CBD7 90.56%);
    padding-inline: var(--margin-inline);
    padding-block: 1rem;
}

.hero{
    background: linear-gradient(94deg, rgba(128, 128, 128, 0.20) 7.86%, rgba(0, 0, 0, 0.00) 72.19%);
    padding-inline: var(--margin-inline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-repeat: no-repeat;
}

h1{
    margin: 0;
    color: #414141;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 106.5%;
}

.highlight-hero{
    position: relative;
}

.highlight-hero::after{
    content:'';
    position: absolute;
    right: 0;
    bottom: -50%;
    width: 100%;
    height: 50%;
    background-image: url(img/highlight-hero.svg);
    background-position: -300px 0;
    background-repeat: no-repeat;
    background-size: contain;
    animation: highlight-hero;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes highlight-hero {
    0%{background-position: -300px 0;}
    100%{background-position: 0 0;}
}


.hero img{
    width: 60%;
    transform: translateY(90px);
    animation: breathe;
    animation-delay: 1s;
    animation-duration: 3s;
    animation-fill-mode: both;
    animation-iteration-count:infinite;
    
}

@keyframes breathe {
    0%{
        transform: translateY(95px);
    }
    50%{
        transform: translateY(90px);
    }
    100%{
        transform: translateY(95px);
    }
}

.resumo, .politica{
    background-color: #414141;
    margin-top: 120px;
    padding: 80px var(--margin-inline);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 80px;
    color: white;
    justify-content: center;
    align-items: center;
}

.resumo > *, .politica > *{
    max-width: 1000px;
    margin: 0;
}

h2{
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 132.5%; 
}

.resumo p, .politica p{
    color: #efefef;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 132.5%;
}

.resumo a{
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 46px;
    background: var(--green-bg-1, linear-gradient(90deg, #1D858C 17.62%, #19CBD7 90.56%));
    transition: 0.1s linear;
}

.resumo a:hover{
    transform: scale(1.05);
}

.politica{
    margin-top: 0;
    background: linear-gradient(134deg, #F5F5F5 16.5%, #FFF 81.88%, #FCFCFC 81.88%);;
    color: #414141;
    gap: 30px;
}

.politica h2{
    margin-top: 50px;
}

.politica p{
    color: #414141;
}

.valores{
    font-size: 28px;
    margin-bottom: 20px;
    max-width: 800px;
}

.valores::before{
    content:'→ ';
}

.construcao{
    background: linear-gradient(88deg, #1D858C 68.33%, #19CBD7 91.44%);
    /* margin-top: 120px; */
    padding: 80px var(--margin-inline);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: white;
    justify-content: center;
    align-items: center;
    
}

.construcao a{
    color: white;
    transition: 0.1s ease-in;
}

.construcao a:hover, .construcao a:focus, .construcao a:hover svg path{
    fill: #e2f0af;
    color: #e2f0af;
}

.construcao a svg{
    transition: 0.4s ease-in;
    padding-bottom: 20px;
}

.footer{
    padding: 80px var(--margin-inline);
    text-align: left;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    color: #414141;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 132.5%; /* 23.85px */
    flex-wrap: wrap;
    
}

.footer-item{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}



@media screen and (max-width: 600px) {

    :root{
        --margin-inline: 20px;
    }

    .top{
        text-align: center;
    }

    .hero{
        justify-content: center;
        align-items: center;
        padding-block: 60px;
        flex-direction: column;
        gap: 120px;
        text-align: center;
    }

    .hero img{
        transform: unset;
    }

    .resumo{
        margin-top: 0;
    }

    .construcao{
        margin-top: 0;
    }

    .footer{
        flex-direction: column;
        align-items: center;
    }

    .footer-item{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
}