:root {
    --color-blue: #1A8DA4;
    --color-blue-hover: #0C5C6B;
    --color-gray-dark: #342E37;
    --color-gray-light: #D5DFE5;
    --color-gray: #99979B;
    --color-whithe: #FFFFFF;
}

body,
h1,
h2,
p,
ul,
li,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Header  */

header {
    background-color: var(--color-whithe);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 40px;
    margin: 0 0 0 100px;
}

nav {
    flex: 1;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 50px;
}

nav ul li a {
    color: var(--color-gray);
    text-decoration: none;
}

nav ul li a:hover {
    color: var(--color-gray-dark);
    text-decoration: none;
}

nav ul li a.current {
    color: var(--color-blue);
}

nav ul li:last-child {
    margin-right: 0;
}

.contact-button button {
    height: 30px;
    width: 200px;
    font-size: medium;
    background-color: transparent;
    color: var(--color-blue);
    padding: auto;
    border: solid 1px;
    border-color: var(--color-blue);
    border-radius: 20px;
    cursor: pointer;
    margin: 0 100px 0 0;
}

.contact-button button:hover {
    color: var(--color-whithe);
    background-color: var(--color-blue-hover);
    border: none;
}

.whatsapp-logo {
    display: none;
    margin: 0 60px 0 0;
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.line {
    width: 80%;
    height: 2px;
    border-radius: 10px;
    background-color: var(--color-blue);
    position: absolute;
    transition: background-color 0.3s ease;
}

.line:nth-child(1) {
    top: 0;
}

.line:nth-child(2) {
    top: 50%;
}

.line:nth-child(3) {
    top: 100%;
}

.menu-open .line {
    background-color: var(--color-blue-hover);
}


@media screen and (max-width: 1200px) {

    header{
        justify-content: center;
    }
    nav {
        position: fixed;
    }

    .menu-toggle {
        display: block;
        width: 45px;
        height: 30px;
        position: relative;
        cursor: pointer;
        margin: 0 20%;
    }

    nav ul {
        display: none;
        width: 100vh;
        height: 100vh;
        position: fixed;
        top: 60px;
        left: 0;
        background-color: var(--color-blue-hover);
        padding: 50px;
        box-sizing: border-box;
        text-align: start;
    }

    .menu-open nav ul {
        display: flex;
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 20px;
    }

    nav ul li a {
        color: var(--color-whithe);
        text-decoration: none;
        font-size: 18px;
    }


    .logo img {
        height: 35px;
        margin: 0;
        padding: 0;
    }

    .contact-button button {
        display: none;
    }

    .whatsapp-logo {
        display: block;
        margin: 0;
    }

    .whatsapp-logo img {
        width: 35px;
        height: auto;
        margin: 0;
        padding: 0;
    }
}

/* Home (cover) */

#home {
    position: relative;
    height: 100vh;
}

.background-image {
    padding-top: 60px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-content {
    position: absolute;
    top: 55%;
    left: 150px;
    transform: translateY(-50%);
    width: 50%;
    text-align: left;
    color: var(--color-whithe);
}

.cover-text {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cover-text-desc {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-cover {
    height: 35px;
    width: 390px;
    background-color: var(--color-blue);
    color: var(--color-whithe);
    border: none;
    border-radius: 20px;
    padding: auto;
    font-size: medium;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-cover:hover {
    background-color: var(--color-blue-hover);
}

.cta-cover-update {
    position: relative;
    height: 50px;
    left: -100%;
    width: auto;
    padding: 0 50px;
    border: solid 1px;
    border-radius: 50px;
    background-color: transparent;
    color: var(--color-whithe);
    padding: auto;
    margin: 50px 0 0 0;
    font-size: medium;
    font-weight: 800;
    cursor: pointer;
    transition: left 1.5s ease-in-out, background-color 0.3s ease;
}

.cta-cover-update.active {
    left: 0;
}

.cta-cover-update:hover {
    background-color: var(--color-whithe);
    border-color: var(--color-whithe);
    color: var(--color-gray-dark);
}


@media screen and (max-width: 1200px) {

    .home-content {
        top: 25%;
        left: auto;
        transform: none;
        width: 100%;
        text-align: center;
    }

    .cover-text {
        margin: auto 2rem 0.5rem 2rem;
        font-size: 32px;
    }

    .cover-text-desc {
        font-size: 14px;
    }

    .cta-cover {
        width: 80%;
        margin: 0 auto;
        font-size: 14px;
    }

    .cta-cover-update {
        margin: 50px 20px 0 20px;
        height: auto;
        padding: 10px 20px;
    }
}

/* banner */

.banner {
    position: relative;
    height: 100px;
    background-color: var(--color-whithe);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.banner-content h2 {
    color: var(--color-blue);
    font-weight: 400;
}

@media screen and (max-width: 768px) {

    .banner-content h2 {
        font-size: 14px;
    }
}


/* Seção - Quem somos */

#about {
    margin: 0;
    padding: 75px 0;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-content>div {
    flex: 1 1 50%;
    max-width: 50%;
}

video {
    width: calc(320px*0.9);
    height: calc(560px*0.9);
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--color-gray-light);
    /* margin: 0 0 0 200px; */
    margin: 0 0 0 40%;
}

.about-text .section-name {
    color: var(--color-gray);
    font-size: medium;
    margin-bottom: 30px;
}

.about-text {
    margin: 0 100px 0 0px;
}

.about-text .about-text {
    color: var(--color-gray-dark);
    font-size: 42px;
    margin-bottom: 20px;
    margin-left: 0;
}

.about-text .highlight-text {
    color: var(--color-blue);
}

.about-text .dotted-line {
    border: none;
    border-top: 3px dashed var(--color-blue);
    margin-bottom: 20px;
    width: 550px;
    margin-left: 0;
}

.about-text .about-text-desc {
    color: color;
    font-size: medium;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-text .cta-about {
    height: 35px;
    width: 550px;
    background-color: var(--color-blue);
    color: var(--color-whithe);
    border: none;
    border-radius: 20px;
    padding: auto;
    font-size: medium;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.about-text .cta-about:hover {
    background-color: var(--color-blue-hover);
}

@media screen and (max-width: 1200px) {
    #about {
        padding: 0;
    }

    .about-content>div {
        max-width: 75%;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    video {
        width: 250px;
        height: auto;
        border-radius: 15px;
        border: 3px solid var(--color-gray-light);
        margin: 0;
    }

    .about-text {
        padding: 0;
        margin: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .about-text .section-name {
        text-align: center;
        font-size: medium;
        margin: 30px 0;
    }

    .about-text .dotted-line {
        text-align: center;
        border: none;
        border-top: 3px dashed var(--color-blue);
        margin-bottom: 20px;
        width: auto;
        padding: 0;
    }

    .about-text .about-text {
        margin: 0;
        padding: 0;
        color: var(--color-gray-dark);
        margin-bottom: 20px;
        font-size: 27px;
    }

    .about-text .about-text-desc {
        font-size: 14px;
    }

    .about-text .cta-about {
        width: 35vh;
        font-size: 14px;
    }

}

/* Seção - Serviços */

#services {
    padding: 75px 100px;
    background-color: var(--color-gray-light);
}

.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-name {
    color: var(--color-gray);
    font-size: medium;
    margin-bottom: 30px;
}

.services-text {
    color: var(--color-gray-dark);
    font-size: 42px;
    margin-bottom: 20px;
}

.services-text .highlight-text {
    color: var(--color-blue);
}

.services-content .dotted-line {
    border: none;
    border-top: 3px dashed var(--color-blue);
    margin-bottom: 50px;
    width: 650px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1200px;
    height: 100%;
    margin: 0 30px;
}

.service-card {
    font-size: small;
    color: var(--color-gray-dark);
    width: calc(50% - 50px);
    height: 85px;
    margin-bottom: 30px;
    background-color: var(--color-whithe);
    border-radius: 10px;
    box-shadow: 5px 5px 10px var(--color-gray);
    padding: 20px;
    text-align: center;
    overflow: hidden;
    transition: .4s;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    height: 300px;
}

.service-card img{
    height: 30px;
    width: auto;
    margin-top: 10px;
}

.card-header {
    margin-bottom: 20px;
}

.card-description {
    font-size: 14px;
    margin: 20px 20px;
}

.cta-service {
    height: 35px;
    width: 250px;
    background-color: var(--color-blue);
    color: var(--color-whithe);
    border: none;
    border-radius: 20px;
    padding: auto;
    font-size: medium;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
}

.cta-service:hover {
    background-color: var(--color-blue-hover);
}

@media screen and (max-width: 860px) {

    #services {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .service-cards {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        height: 100%;
        margin: 0 30px;
    }

    .service-card {
        width: auto;
        padding: 1rem;
    }

    .service-card h1 {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 1200px) {

    #services {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .services-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-content .section-name {
        text-align: center;
        font-size: medium;
        margin: 30px 0;
    }

    .services-content .services-text {
        padding: 0;
        margin: 0;
        text-align: center;
        margin-bottom: 20px;
        font-size: 27px;
    }

    .services-content .dotted-line {
        text-align: center;
        align-items: center;
        border: none;
        border-top: 3px dashed var(--color-blue);
        margin-bottom: 12px;
        width: 300px;
        padding: 0;
        margin-bottom: 30px;
    }

    .card-description {
        font-size: 11px;
    }

}

/* Seção - Metodologia */

#methodology {
    padding: 75px 0 0 0;
}

.methodology-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.methodology-text {
    text-align: center;
    color: var(--color-gray-dark);
    font-size: 42px;
    margin-bottom: 30px;
}

.methodology-text .section-name {
    color: var(--color-gray);
    font-size: medium;
    margin-bottom: 30px;
}


.methodology-text .methodology-text {
    color: var(--color-gray-dark);
    font-size: 42px;
    margin-bottom: 20px;
}

.methodology-text .highlight-text {
    color: var(--color-blue);
}

.methodology-text .dotted-line {
    border: none;
    border-top: 3px dashed var(--color-blue);
    margin-bottom: 20px;
    width: 850px;
}

.methodology-text .methodology-text-desc {
    color: color;
    font-size: medium;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 350px;
}

.methodology-text .cta-methodology {
    height: 35px;
    width: 550px;
    background-color: var(--color-blue);
    color: var(--color-whithe);
    border: none;
    border-radius: 20px;
    padding: auto;
    font-size: medium;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.methodology-text .cta-methodology:hover {
    background-color: var(--color-blue-hover);
}

/* Seção - Cards Metodologia */

.methodology-cards-content {
    background-color: var(--color-);
    color: var(--color-whithe);
    text-align: center;
    margin: 30px 0 0 0;
}

.methodology-cards {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 100px;
}

.methodology-card {
    background-color: var(--color-blue);
    border-radius: 15px;
    box-shadow: 5px 5px 10px var(--color-gray);
    width: 30%;
    height: 325px;
    margin-bottom: 35px;
    padding: 20px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.methodology-card:hover {
    background-color: var(--color-blue-hover);
}

.methodology-card h2 {
    font-size: medium;
    margin-bottom: 10px;
    padding: 10px;
    text-align: left;
    margin-left: 30px;
}

.methodology-card .dotted-line {
    border: none;
    border-top: 3px dashed var(--color-whithe);
    width: 80%;

}

.methodology-card .card-description {
    font-size: 16px;
    line-height: 1.5;
    margin: 20px 40px;
    text-align: left;
}

@media screen and (max-width: 1200px) {

    #methodology {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .methodology-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-name {
        text-align: center;
        font-size: medium;
        margin: 30px 0;
    }

    .methodology-content .methodology-text {
        margin: 0 10px;
        font-size: 27px;
    }

    .methodology-text .methodology-text-desc {
        margin: 0 50px;
        font-size: 14px;
    }

    .methodology-content .dotted-line {
        text-align: center;
        align-items: center;
        border: none;
        border-top: 3px dashed var(--color-blue);
        margin-bottom: 12px;
        width: 300px;
        padding: 0;
    }

    .methodology-text .cta-methodology {
        width: 80%;
        font-size: 14px;
        margin-top: 20px;
    }

    /* Cards */

    .methodology-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 35px;
    }

    .methodology-card {
        width: 100%;
        height: auto;
        margin-bottom: 35px;
        padding: 20px;
        box-sizing: border-box;
    }

    .methodology-card h2 {
        font-size: 14px;
    }

    .methodology-card .card-description {
        font-size: 14px;
    }

}

/* Seção Contato */

#contact {
    padding: 75px 0;
    margin: 0 150px;
}

.contact-content {
    display: flex;
    align-items: center;
}

.contact-content>div {
    flex: 1 1 50%;
    max-width: 50%;
}

.contact-text {
    margin: 25px 0;
}

.contact-title {
    color: var(--color-gray);
    font-size: medium;
    margin-bottom: 30px;
}

.contact-text .contact-text {
    margin: 0 0 20px 0;
    color: var(--color-gray-dark);
    font-size: 42px;
}

.contact-text .highlight-text {
    color: var(--color-blue);
}

.contact-text .dotted-line {
    border: none;
    border-top: 3px dashed var(--color-blue);
    margin-bottom: 20px;
    width: 475px;
    margin-left: 0;
}

.contact-text .contact-text-desc {
    color: color;
    font-size: medium;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-right: 75px;
}

.contact-form {
    margin: 25px 0 0 75px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Montserrat', sans-serif;
    width: 450px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--color-gray-light);
    border-radius: 5px;
}

.contact-form textarea {
    height: 90px;
}

.submit-button {
    width: 475px;
    background-color: var(--color-blue);
    color: var(--color-whithe);
    border: none;
    border-radius: 30px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--color-blue-hover);
}

.hidden {
    display: none;
    text-align: center;
    margin: 5px 0 0 0;
    font-weight: 500;
    color: var(--color-gray-dark);
}

@media screen and (max-width: 1200px) {
    #contact {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .contact-content>div {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .contact-text {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .contact-text .contact-text {
        font-size: 27px;
    }

    .contact-text .contact-text-desc {
        margin: 0 50px;
        font-size: 14px;
    }

    .contact-content .dotted-line {
        margin: 0 30px 20px 30px;
        width: 300px;
    }

    .contact-form form {
        margin: 15px 0 0 0;
    }

    .contact-form input,
    .contact-form textarea {
        width: 300px;
        margin: 0 0 15px 0;
    }

    .submit-button {
        width: 250px;
        margin-bottom: 15px;
    }
}


/* Footer */

footer {
    background-color: var(--color-gray-light);
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    text-align: center;
    font-size: small;
}

.footer-column img {
    width: 281px;
    height: 77px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    border-radius: 5em;
}

.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 10px;
    background-color: var(--color-whithe);
    transition: 0.5s;
}

.social-button:hover {
    background-color: var(--color-whithe);
}

.social-buttons svg {
    transition: 0.3s;
    height: 15px;
}

.facebook {
    background-color: #3b5998;
}

.facebook svg {
    fill: #f2f2f2;
}

.facebook:hover svg {
    fill: #3b5998;
}

.instagram {
    background-color: #c13584;
}

.instagram svg {
    fill: #f2f2f2;
}

.instagram:hover svg {
    fill: #c13584;
}

.footer-column a {
    text-decoration: none;
    color: var(--color-gray);
}

@media screen and (max-width: 1200px) {

    footer {
        width: 100%;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin: 10px;
    }

}


/* Page message */

#thank-you {
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 50px 0;
}

.thank-you-message {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-gray-dark);
}

.back-to-top-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-blue);
    color: var(--color-whithe);
    text-decoration: none;
    border-radius: 30px;
    width: 200px;
    transition: background-color 0.3s ease;
}

.back-to-top-button:hover {
    background-color: var(--color-blue-hover);
    /* Cor de fundo do botão ao passar o mouse */
}

/* Page Privacy Policy */

#privacy-policy{
    padding: 150px;
    color: var(--color-gray-dark);
}

@media screen and (max-width: 1200px) {
    #privacy-policy{
    padding: 100px 50px;
    }
}