* {
    box-sizing: border-box;
    margin: 0;
    outline: 0;
    padding: 0
}

:root{
    --dark-green: #014e2a;
    --medium-green: #1ca053;
    --soft-white: #eff0f5;
}

@keyframes slideInLeft{
    from {
        transform: translateX(-300px);
      }
    
      to {
        transform: translateX(0);
      }
}

@keyframes slideInRight {
    from {
      transform: translateX(300px);
    }
  
    to {
      transform: translateX(0);
    }
}

@keyframes slideInTop {
    from {
      transform: translateY(300px);
    }
  
    to {
      transform: translateY(0);
    }
}

.bottom{
    position: relative;
    opacity: 0;
}

.bottom.active{
    opacity: 1;
    animation: slideInTop 0.8s ease-in;
}

.left{
    position: relative;
    opacity: 0;
}

.left.active{
    opacity: 1;
    animation: slideInLeft 0.8s ease-in;
}

.right{
    position: relative;
    opacity: 0;
}

.right.active{
    opacity: 1;
    animation: slideInRight 0.8s ease-in;
}

body,
button {
    pointer-events: all;
    color: #444;
    font-family: 'Montserrat', sans-serif;
}

#wrapper{
    padding-top: 20px;
    text-align: center;
}

a,
button {
    cursor: pointer
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: inside
}

li {
    list-style: none
}

img {
    border: none
}

section {
    min-height: 100vh
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 62rem;
    padding: 0 1rem;
    width: 100%;
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 500;
}

p {
    font-weight: 200;
    font-family: Manrope, sans-serif;
}

.navbar {
    background-color: var(--dark-green);
    height: 5rem;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 12.5px 0 rgba(0, 0, 0, 0.5);
}

.navbar .container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: space-between;
}

.navbar .navbar-brand {
    align-items: center;
    display: flex;
    font-size: 1.125rem;
    font-weight: 500;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    display: block;
    height: 2rem;
    margin: 0;
}

.navbar .navlinks {
    display: none;
    color: var(--soft-white);
    font-size: 0.75rem;
    font-weight: 400;
    flex-basis: 100%;
    height: 100%;
    text-align: center;
    text-transform: uppercase;
}

.navbar .navlinks li {
    display: flex;
    justify-content: center;
}

.navbar .navlinks li a {
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.navbar .navlinks .lastli {
    display: flex;
    align-items: center;
}

.navbar .navlinks .lastli a {
    background: var(--medium-green);
    color: #000;
    height: 45%;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.navbar .navlinks .lastli a:hover {
    background: var(--soft-white);
    opacity: .7;
}
.navbar .navlinks .dropdown {
    position: relative;
}

.navbar .navlinks .dropdown-menu {
    max-height: 65vh;
    overflow-y: scroll!important;
}

.navbar .navlinks .dropdown-menu li{
    border-bottom: #4444440f 1.5px solid;
}

.menu {
    background-color: transparent;
    border: none
}

.linha {
    background-color: var(--medium-green);
    height: .15rem;
    width: 1.875rem;
    margin: 5px;
}

.navlinks .dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    min-width: 250px;
    background-color: #f9f9f9;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    border-radius: 4px;
}

#down {
    display: inline-block;
    padding-left: 8px;
    padding-bottom: 10px;
}
 
.dropdown-menu li {
    margin: 0;
    font-size: 0.75rem;
}

.dropdown-menu li a {
    width: 100%;
    color: black;
    padding: 15px!important;
    margin-bottom: 0!important;
    margin-top: 0!important;
    display: block;
    text-decoration: none;
    margin: 0 auto;
}

.dropdown-menu a:hover {
    background-color: var(--medium-green) !important;
}

main {
    display: flex;
    flex-direction: column;
    margin-top: 3.5rem;
}

.container-picture {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.container-picture picture {
    width: 100%; 
    height: auto;
    padding: 0;
}

.container-picture picture img {
    display: block;
    margin: 0 auto;
    max-width: 100%; 
    height: auto;
}



.home {
    display: flex;
    padding: 0 175px 0 175px;
    align-items: center;
    justify-content: space-around;
    background: var(--soft-white);
    color: var(--dark-green);
}

.home .container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;
    text-align: left;
    min-height: 500px;
    height: max-content;
    width: 85%;
    margin: 0 auto;
}

.home .container h1 {
    font-size: 3em;
    font-family: Manrope, sans-serif;
    padding-bottom: 20px;
    width: 80%;
}

.home .container h2 {
    font-size: 22px;
    text-transform: uppercase;
    padding-bottom: 20px;
    font-weight: 600;
}

.home .container p {
    font-size: 17.5px;
    width: 100%;
    text-align: justify;
    font-weight: 400;
}

.home .botao-cta-2, #faq .botao-cta-2 {
    border: none;
    background: var(--dark-green);
    color: whitesmoke;
    -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto;
    min-width: 5.25rem;
    min-height: 4rem;
    padding: 0.85rem;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: 0.71s;
}

.home .botao-cta-2, #faq .botao-cta-2 svg {
    color: #212121;
    height: 1.875rem;
    transition: transform 0.2s linear;
    width: 1.875rem;
    margin-right: 10px;
}

.home .botao-cta-2, #faq .botao-cta-2:hover {
    background: var(--soft-white);
    border: none;
    color: var(--medium-green);
    transition: 0.72s;
}

.article-text {
    padding-top: 4rem;
    background: var(--medium-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    width: 100%;
}

.article-text h1 {
    font-size: 37.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: whitesmoke;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.article-text h2 {
    text-align: left;
    font-size: 25.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: whitesmoke;
    width: 80%;
    margin-top: 20px;
}

.article-text p {
    font-size: 17.5px;
    font-weight: 400;
    color: whitesmoke;
    width: 80%;
    margin-top: auto;
    text-align: justify;
    margin-top: 20px;
}

.article-text .botao-cta-2 {
    border: none;
    background: #f5f5f5;
    color: var(--dark-green);
    -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto;
    min-width: 5.25rem;
    min-height: 4rem;
    padding: 0.85rem;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: 0.71s;
}

.article-text .botao-cta-2:hover {
    background: beige;
    border: none;
    transition: 0.72s;
}

.referencias {
    display: flex;
    padding: 40px 175px 0 175px;
    align-items: center;
    justify-content: space-around;
    background: #f5f5f5;
    color: var(--dark-green);
    min-height: fit-content;
}

.referencias .container {
    display: flex;
    margin-bottom: auto;
    flex-direction: column;
    justify-content: space-evenly;
    padding-top: 50px;
    text-align: left;
    min-height: 500px;
    height: max-content;
    width: 90%;
}

.referencias .container h1 {
    font-size: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.referencias .container p {
    font-size: 13.5px;
    width: 100%;
    text-align: justify;
    margin-bottom: 20px;
}

.referencias .botao-cta-2 {
    border: none;
    background: var(--dark-green);
    color: var(--medium-green);
    -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto;
    min-width: 5.25rem;
    min-height: 4rem;
    padding: 0.85rem;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: 0.71s;
}

.referencias .botao-cta-2 svg {
    color: #212121;
    height: 1.875rem;
    transition: transform 0.2s linear;
    width: 1.875rem;
    margin-right: 10px;
}

.referencias .botao-cta-2:hover {
    background: var(--soft-white);
    border: none;
    transition: 0.72s;
}

.treatment {
    background: var(--medium-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.treatment .container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    margin-top: 20px;
    text-align: center;
}

.treatment .container h1 {
    font-size: 40.5px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--dark-green);
    width: 80%;
}

.treatment .container h2 {
    font-size: 24.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dark-green);
    width: 80%;
}

.treatment .container h3 {
    font-size: 22.5px;
    font-weight: 600;
    color: var(--dark-green);
    width: 100%;
}

.treatment .container p {
    padding: 20px 0 20px 0;
    font-size: 20.5px;
    font-weight: 400;
    color: var(--dark-green);
    width: 100%;
}

.treatment .botao-cta-2 {
    border: none;
    background: var(--dark-green);
    color: #f5f5f5;
    -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto;
    min-width: 5.25rem;
    min-height: 4rem;
    padding: 0.85rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: 0.71s;
}

.treatment .botao-cta-2:hover {
    background: var(--soft-white);
    border: none;
    transition: 0.72s;
}

.end {
    padding-top: 4rem;
    background: var(--medium-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.end .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0px 0px 0px;
    text-align: center;
}

.end .container h1{
    font-size: 37.5px;
    margin-bottom: 10px;
    color: #fff
}

.end .container iframe{
    padding: 30px;
    width: 100%;
    max-height: 700px;
}

.end .container p{
    font-size: 18px;
    color: #fff;
    width: 80%;
}

.end .container-round {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    background: var(--dark-green);
    min-height: 50vh;
    width: 75%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.end .container-round .container{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 0px 0px;
    text-align: center;
    height: 80%;
}

.end .container-round .container-picture picture img{
    display: none;
    height: 22.5rem;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.end .container-round .container-picture {
    display: none;
    align-items: center;
    margin-left: 70px;
    justify-content: center;
    padding: 30px;
    text-align: center;
    height: 50vh;
}

.end .container-round h1 {
    margin: 0 auto;
    font-size: 30.5px;
    color: #fff;
    width: 80%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.end .container-round p{
    font-size: 15px;
    width: 100%;
}

.end .botao-cta-2 {
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #212121;
    -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, .5);
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, .5);
    display: flex;
    width: 79.5%;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
    min-width: 5.25rem;
    min-height: 3rem;
    padding: .85rem;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: .71s
}

.end .botao-cta-2:hover {
    background: whitesmoke;
    border: none;
    transition: .72s
}

.contact {
    padding-top: 60px;
    display: flex;
    min-height: 40vh;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    color: var(--medium-green);
}

.contact .container-picture {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.contact .container-picture h1 {
    font-size: 35px;
    font-weight: 800;
    color: var(--soft-white);
    opacity: 0.85;
}

.contact .container-picture picture {
    padding: 20px;
}

.contact .container-picture img {
    width: 35rem;
}

#faq {
    background-color: #f9f9f9;
    color: var(--dark-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
    padding: 10%;
}

#faq p{
    padding: 15px;
}

#faq h1{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
}

#faq h2{
    font-weight: 700;
}

.footer {
    background: var(--dark-green);
}

.footer .container {
    padding: 2rem;
    width: 100%;
}

.footer .footer-redes-sociais {
    display: flex;
    list-style: none;
    justify-content: center;
}

.footer .footer-redes-sociais li a {
    align-items: center;
    background-color: var(--soft-white);
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
    display: flex;
    height: 5rem;
    justify-content: center;
    margin: 1rem;
    width: 5rem;
    transition: background-color 0.2s linear;
}

.footer .footer-redes-sociais li a svg {
    color: var(--dark-green);
    height: 1.875rem;
    transition: transform 0.2s linear;
    width: 1.875rem;
}

.footer .footer-redes-sociais li a:hover {
    background-color: var(--medium-green);
}

.footer .footer-redes-sociais li a:hover svg {
    transform: scale(1.275);
}

.footer .container .divider {
    display: block;
    border: 0.01rem solid var(--medium-green);
    width: 100%;
    opacity: 0.25;
    margin-top: 50px;
    margin-bottom: 30px;
}

.footer .container p {
    font-size: 17.5px;
    font-weight: 100;
    text-align: center;
    color: var(--medium-green);
}

.footer .footer-copyright {
    color: var(--soft-white);
    opacity: 0.35;
    font-weight: 300;
    margin-top: 1rem;
    text-align: center;
    font-size: 10px;
}

@media (min-width: 768px) {
    .footer .footer-redes-sociais li a {
        height: 5.5rem;
        width: 5.5rem;
    }

    .footer .footer-redes-sociais li a svg {
        height: 2rem;
        width: 2rem;
    }
}

@media (max-width: 1266px) {
    .home {
        min-height: fit-content;
        flex-direction: column;
    }

    .home .container {
        margin-top: 50px;
        width: 100%;
        text-align: center;
    }

    .home .container p {
        text-align: center;
        width: 80%;
        margin: 0 auto;
    }

    .referencias {
        min-height: fit-content;
        flex-direction: column;
    }

    .referencias .container {
        margin-top: 50px;
        width: 100%;
        text-align: center;
    }

    .referencias .container p {
        text-align: center;
        width: 80%;
        margin: 0 auto;
    }
    .end .container-round{
        padding: 30px;
        padding-bottom: 0px;
        flex-direction: column;
        height: fit-content;
    }
    .end .container-round .container-picture {
        margin-left: 0px;
        margin-right: 7px;
    }
    .end .container-picture {
        padding-top: 60px;
        height: 95vh;
    }
    .end h2{
        margin-top: 20px;
    }
}

@media (max-width: 870px) {
    .navbar .navlinks li a {
        padding-bottom: 0.5rem;
    }

    .navbar.active {
        height: auto;
        padding-top: 24px;
    }

    .navbar.active .navlinks {
        display: block;
    }

    .navbar.active .menu .linha:nth-child(1) {
        position: absolute;
        margin: 0 auto;
        transform: rotate(45deg);
        transition: 0.25s ease-in;
    }

    .navbar.active .menu .linha:nth-child(2) {
        display: none;
    }

    .navbar.active .menu .linha:nth-child(3) {
        margin: 0 auto;
        transform: rotate(-45deg);
        transition: 0.25s ease-in;
    }

    .navbar .navlinks .lastli a {
        margin-top: 0px;
        margin-bottom: 2rem;
    }

    .home {
        padding: 0;
    }

    .home .container h1 {
        font-size: 40px;
        width: 80%;
        margin: 0 auto;
    }

    .home .container h2 {
        font-size: 20px;
        margin: 0 auto;
        width: 80%;
    }

    .home .container p {
        font-size: 17.5px;
        width: 90%;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .home .botao-cta-1 {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        min-width: 6.25rem;
        min-height: 3.5rem;
        padding: 0.85rem;
    }

    .article-text h1, #faq h1 {
        font-size: 25.5px;
    }

    #faq h2 {
        font-size: 19px;
    }

    #faq p{
        font-size: 14px;
    }

    .article-text h2, #faq h1 {
        font-size: 22px;
    }

    .article-text .botao-cta-2 {
        width: 92.5%;
        font-size: 15px;
        min-width: 6.25rem;
        min-height: 3.5rem;
        margin: 10px 0 20px 0;
    }

    .article-text .botao-cta-2 {
        width: 100%;
        margin-top: 40px;
    }

    .referencias {
        padding: 0;
    }

    .referencias .container h1 {
        font-size: 40px;
        width: 80%;
        padding-bottom: 20px;
        margin: 0 auto;
    }

    .referencias .container h2 {
        font-size: 18px;
        margin: 0 auto;
        width: 90%;
    }

    .referencias .container p {
        font-size: 17.5px;
        width: 90%;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .referencias .botao-cta-1 {
        width: 90%;
        font-size: 15px;
        margin: 0 auto;
        min-width: 6.25rem;
        min-height: 3.5rem;
        padding: 0.85rem;
    }

    .treatment .container h1 {
        width: 100%;
        font-size: 37.5px;
    }

    .treatment .container h2 {
        width: 100%;
        padding-bottom: 20px;
        font-size: 23.5px;
    }

    .treatment .container h3 {
        width: 100%;
        font-size: 22px;
    }

    .treatment .container p {
        font-size: 19px;
    }

    .treatment .botao-cta-2 {
        width: 92.5%;
        font-size: 15px;
        min-width: 6.25rem;
        min-height: 3.5rem;
        margin: 10px 0 20px 0;
    }

    .treatment .botao-cta-2 {
        width: 90%;
    }

    .local .container .container-outside {
        flex-direction: column;
    }

    .local .container .container-inside {
        padding-top: 30px;
        width: 90%;
        min-height: 300px;
    }

    .local h1{
        font-size: 22px;
    }

    .local .container iframe {
        width: 90%;
    }
    .end .container-round{
        padding: 30px;
        padding-bottom: 0px;
        flex-direction: column;
        height: fit-content;
    }
    .end .container-round .container-picture {
        margin-left: 0px;
        margin-right: 7px;
    }
    .end .container-picture {
        padding-top: 60px;
        height: 95vh;
    }
    .end h2{
        margin-top: 20px;
    }
}

@media (min-width: 870px) {
    .navbar .navlinks {
        display: flex !important;
        flex-basis: auto;
    }

    .menu {
        display: none !important;
    }

    .navbar .navlinks li a {
        align-items: center;
        display: flex;
        height: 100%;
        margin: 0;
        padding: 0 0.75rem;
        transition: background-color 0.2s linear, color 0.2s linear;
    }

    .navbar .navlinks li a:hover {
        background-color: var(--medium-green);
    }
    .end .container-round .container-picture {
        padding-bottom: 0px;
    }
    .end .container-round {
        width: 90%;
        padding-bottom: 29.5px;
        max-height: fit-content;
    }
    .end .container-round .container{
        margin-top: 20px;
    }
    .end .container{
        padding: 0px;
    }
    .end .container-round .container-picture picture img {
        padding-bottom: 0px;
    }
    .end .container-round h1 {
        width: 90%;
        font-size: 27.5px;
        padding-top: 0px;
    }
    .end .container-round p {
        width: 100%;
        font-size: 18px;
        padding-top: 0px;
    }
    .end .container-round .container .botao-cta-2{
        width: 95%;
    }
}