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

body {
    font-family: 'Inter', sans-serif;
    padding-top: 110px;
}

.header {
    background-color: #2B2B2B;
    display: flex;
    align-items: center;
    padding: 20px 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.menu-mobile {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.logo img {
    width: 80px;
    height: auto;
}

.menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 60px;
}

.menu a {
    position: relative;
    text-decoration: none;
    color: #f4f4f4;
    font-size: 18px;
    transition: .3s;
}


.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: #f4f4f4;
    transition: width .7s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* hero */

.hero {
    height: calc(100vh - 122px);
    position: relative;
    overflow: hidden;

}

/* imgs */

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(5px);
    transform: scale(1.08);
    transition:
        opacity .6s ease,
        transform 2.5s ease;

}

.hero-img.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);

}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #f4f4f4;
}

.hero-logo img {
    width: 480px;
    height: auto;
    margin-bottom: 50px;
    transform: translateY(-40px);
    max-width: 80vw;
}

.hero-content h1 {
    font-family: 'Cormorant', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    padding: 40px 0;
}


.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: auto;
    margin-top: 25px;
    max-width: 700px;
    white-space: normal;
}

.btn-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 58px;
    margin: 60px auto 0;
    background: #BF9765;
    border-radius: 50px;
    color: #F4F4F4;
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: .3s;

}

.btn-hero:hover {
    transform: translateY(-3px);
}

/* intro */

.intro {
    background-color: #2B2B2B;
    padding: 70px 100px;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 180px;
}

.intro-texto {
    flex: 1;
}

.intro-texto h3 {
    font-family: 'Cormorant', serif;
    font-size: 30px;
    font-weight: 400;
    color: #F2D8A7;
    line-height: 1.2;
    padding: 100px 100px;
}

.infos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infos-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.infos-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.infos-item a {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #F2D8A7;
    text-decoration: none;
    transition: color .3s ease;
}

.infos-item a:hover {
    color: #F4F4F4;
}

/* sobre */

.sobre {
    background-color: #2b2b2b;
    padding: 220px 100px;
    scroll-margin-top: 120px;
}

.sobre h2 {
    text-align: center;
    color: #f4f4f4;
    font-family: 'Cormorant', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 80px;
}

.sobre-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 120px;
}

.sobre-texto h3 {
    color: #f4f4f4;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    padding: 0px 40px 0px;
    margin-top: 10px;
}

.sobre-texto p {
    color: #F4F4F4;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    padding: 10px 40px;
    margin-bottom: 60px;
    max-width: 600px;
    white-space: normal;
}

/* carrossel sobre */

.sobre-slider {
    width: 450px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #BF9765;
    flex-shrink: 0;
}

.sobre-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
}

.sobre-img.active {
    opacity: 1;
}



/* mvv */

.mvv {
    background: #2b2b2b;
    padding: 150px 100px;
}

.mvv-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 150px;
}

.mvv-card {
    flex: 1;
    text-align: center;
}

.mvv-card img {
    width: 70px;
    margin-bottom: 25px;
    transition: .3s;
}

.mvv-card:hover img {
    transform: translateY(-8px) scale(1.05);
}

.mvv-card h3 {
    font-family: 'Cormorant', serif;
    font-size: 30px;
    font-weight: 600;
    color: #f4f4f4;
    margin-bottom: 30px;
}


.mvv-card p {
    font-family: 'Inter', serif;
    font-size: 16px;
    font-weight: 300;
    color: #f4f4f4;
    line-height: 1.5;
}

/* vantagens */

.vantagens {
    background: #2B2B2B;
    padding: 100px 60px;
    scroll-margin-top: 120px;
}

.vantagens h2 {
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 36px;
    color: #F4F4F4;
    padding: 20px;
    margin-top: 100px;

}

.subtitulo {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #F4F4F4;
    font-weight: 400;
}

.vantagens-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 40px 150px;
}

.vantagem-card {
    background: #F4F4F4;
    border: 3px solid #BF9765;
    border-radius: 30px;
    padding: 25px;
    text-align: center;
    transition: .3s;
    width: 350px;
    height: 350px;
}

.vantagem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgb(191, 151, 101, rgba(0, 0, 0, 0.25));
}

.icone {
    width: 60px;
    height: 60px;
    background: #F2D8A7;
    border-radius: 50%;
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icone img {
    width: 40px;
}

.vantagem-card h3 {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    color: #402a10;
    margin-bottom: 20px;
}

.vantagem-card p {
    font-size: 16px;
    color: #402a10;
    line-height: 1.6;
}

/* espaco */

.espacos {
    background: #F4F4F4;
    padding: 150px 100px;
    scroll-margin-top: 120px;
}

.espacos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.espacos-titulos {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.espacos-titulos h2 {
    font-family: 'Cormorant', serif;
    font-size: 36px;
    font-weight: 600;
    color: #402A10;
    margin-bottom: 20px;
}

.espacos-titulos p {
    font-size: 20px;
    color: #402A10;
    font-family: 'Inter', serif;
    line-height: 1.6;
    font-weight: 400;
}

.espaco-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    margin-bottom: 200px;
}

.espaco-card.reverse {
    flex-direction: row-reverse;
}

.espaco-slider {
    width: 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #BF9765;
    flex-shrink: 0;
}

.galeria-indicador {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    color: #F4F4F4;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s;
}

.galeria-indicador img {
    width: 15px;
    height: 15px;
    pointer-events: none;
}

.galeria-indicador span {
    pointer-events: none;
}

.espaco-slider:hover .galeria-indicador {
    background: rgba(0, 0, 0, .55);
    transform: translateY(-2px);
}

.espaco-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
}

.espaco-img.active {
    opacity: 1;
}

.espaco-texto {
    flex: 1;
    max-width: 550px;
}

.espaco-texto h3 {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    font-weight: 600;
    color: #402A10;
    margin-bottom: 20px;
}

.espaco-texto h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #402A10;
    margin-bottom: 20px;
    max-width: 400px;
    white-space: normal;
}

.espaco-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #402A10;
    text-align: justify;
    max-width: 400px;
    white-space: normal;
}


.btn-espaco {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 58px;
    margin: 20px auto;
    background: #BF9765;
    border-radius: 50px;
    color: #F4F4F4;
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: .3s;
}

.btn-espaco:hover {
    transform: translateY(-3px);
}


/* modal galeria - espaços */

.modal-galeria {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 9999;
}

.modal-galeria.active {
    opacity: 1;
    visibility: visible;
}

.imagem-modal {
    width: 80%;
    max-width: 1100px;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 20px;
}

.fechar-galeria {
    position: absolute;
    top: 40px;
    right: 60px;
    background: transparent;
    border: none;
    color: #F4F4F4;
    font-size: 16px;
    cursor: pointer;
}

.anterior,
.proximo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .15);
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: .3s;
}

.anterior:hover,
.proximo:hover {
    background: rgba(255, 255, 255, .3);
}

.anterior {
    left: 40px;
}

.proximo {
    right: 40px;
}

/* avaliaçoes */

.comentarios {
    background: #2B2B2B;
    padding: 120px 100px;
    scroll-margin-top: 120px;
    margin-bottom: 250px;
}

.comentarios-container {
    max-width: 1400px;
    margin: 0 auto;
}

.comentarios h2 {
    color: #F4F4F4;
    font-family: "Cormorant", serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 400;
}

.cards-comentarios {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.comentario-card {
    width: 440px;
    background: #F4F4F4;
    border: 4px solid #BF9765;
    border-radius: 12px;
    padding: 30px;
}

.comentario-topo {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

.comentario-topo h3 {
    font-family: Inter;
    font-size: 20px;
    margin-bottom: 6px;
}

.avaliacao {
    color: #FFC107;
    font-size: 20px;
}

.avaliacao span {
    color: #888;
    margin-left: 10px;
    font-size: 12px;
}

.comentario-card p {
    font-family: Inter;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

.mais-avaliacoes {
    display: block;
    text-align: center;
    color: #F4F4F4;
    font-family: "Cormorant", serif;
    font-size: 28px;
    text-decoration: underline;
    margin-top: 50px;
}

.avaliar {
    text-align: center;
    color: #F4F4F4;
    font-family: "Cormorant", serif;
    font-size: 28px;
    margin-top: 75px;
}

.avaliar a {
    color: #F4F4F4;
    text-decoration: underline;
}

/* empresa */

.empresas {
    background: #F4F4F4;
    padding: 150px 100px;
}

.empresas-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.titulo-empresas h2 {
    color: #402A10;
    font-family: 'Cormorant', serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 70px;
    padding: 70px;
}

.logos-empresas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    gap: 90px 80px;
}

.logos-empresas img {
    width: 120px;
    height: 90px;
    object-fit: contain;
}

.frase-empresas {
    margin: 75px auto 0;
    max-width: 800px;
    color: #402A10;
    font-family: 'Inter', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    padding: 120px 10px;
}

/* serviços */

.serviços {
    padding: 150px 120px;
    background: #2B2B2B;
}

.serviço-container {
    max-width: 1400px;
    margin: auto;
}

.titulo-serviços h2 {
    font-family: 'Cormorant', serif;
    font-size: 36px;
    color: #F4F4F4;
    text-align: center;
    margin-bottom: 60px;
}

.titulo-serviços p {
    margin-top: 15px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 90px;
    color: #F4F4F4;
    font-weight: 400;
}

.serviço {
    display: flex;
    align-items: center;
    gap: 90px;
    margin-bottom: 120px;

    display: flex;
    justify-content: center;
    align-items: center;

}

.servico-img {
    width: 350px;
    flex-shrink: 0;
}

.servico-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 30%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    ;
}

.servico-img h3 {
    background: #BF9765;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 400;
}

.serviço-info ul {
    list-style: none;
}

.serviço-info li {
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 60px;
    color: #F4F4F4;
}

.serviço-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #BF9765;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.serviço-ctt p {
    text-align: center;
    margin-top: 30px;
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 400;
    color: #F4F4F4;
    margin-top: 160px;
}

.btn-agendar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 58px;
    margin: 70px auto 0;
    background: #BF9765;
    border-radius: 50px;
    color: #F4F4F4;
    font-family: 'Cormorant', serif;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: .3s;
}

.btn-agendar:hover {
    transform: translateY(-3px);
}

/* footer*/

.footer {
    background: #F4F4F4;
    color: #F4F4F4;
    padding: 190px 80px 150px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 200px;
}

.footer-marca h2 {
    margin: 0 0 20px;
    color: #BF9765;
    font-family: "Inter", serif;
    font-size: 24px;
    font-weight: 700;
}

.footer-marca p {
    max-width: 400px;
    margin: 0;
    color: #402A10;
    font-family: "Cormorant", sans-serif;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 700;
}


.footer-contato h3,
.footer-local h3 {
    margin: 10px 0 30px;
    color: #BF9765;
    font-family: "Inter", serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-contato p {
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.footer-contato span {
    display: block;
    margin-bottom: 4px;
    color: #BF9765;
    font-weight: 600;
}

.footer-contato a {
    color: #402A10;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contato a:hover {
    color: #F2D8A7;
}

.footer-local p {
    margin: 0 0 20px;
    color: #402A10;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    width: 500px;

}

.footer-mapa {
    color: #BF9765;
    font-family: "Cormorant", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 0;
    display: block;

}

.footer-mapa:hover {
    color: #402A10;
}

.footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 58px;
    margin: 50px 0 0;
    background: #BF9765;
    border-radius: 50px;
    color: #F4F4F4;
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: .3s;
}

.footer-btn:hover {
    transform: translateY(-3px);
}


.footer-linha {
    max-width: 1400px;
    height: 4px;
    margin: 80px auto 45px;
    background: #BF9765;
    opacity: 0.5;
}


.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #7c7c7c;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.footer-bottom strong {
    color: #BF9765;
    font-weight: 600;
}

.footer-creditos {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.footer-creditos span {
    color: #7c7c7c;
    font-weight: 400;
}

.footer-creditos strong {
    color: #BF9765;
    font-weight: 600;
    font-size: 18px;
}

.footer-creditos a {
    color: #BF9765;
    text-decoration: none;
    transition: .3s;
}

.footer-creditos a:hover {
    color: #402A10;
}

/*===============
responsive 
=================*/

/* celular */

@media (max-width: 768px) {



    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0px;
        overflow-x: hidden;

    }

    body {
        padding-top: 75px;
    }

    section,
    footer {
        width: 100%;
        max-width: 100%;
    }

    /* header */

    .header {
        width: 100%;
        padding: 10px 20px;
        height: 75px;
        justify-content: space-between;
    }

    .logo img {
        width: 40px;
    }

    .menu-mobile {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 40px;
        height: 40px;

        background: transparent;
        border: none;
        color: #F4F4F4;
        font-size: 25px;
        cursor: pointer;
    }

    .menu {
        display: none;

        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #2B2B2B;
        padding: 35px 30px;
        transform: none;
    }

    .menu.ativo {
        display: block;

    }

    .menu.ativo ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .menu.ativo li {
        display: block;
        width: 100%;
    }

    .menu.ativo a {

        font-size: 16px;

    }

    .menu a::after {
        bottom: -4px;
        height: 2px;
    }

    /* hero */

    .hero {
        width: 100%;
        height: calc(100vh - 75px);
        min-height: 550px;
        position: relative;
    }

    .hero-slider {
        width: 100%;
        height: 100%;
    }

    .hero-img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        filter: blur(3px);
        transform: scale(1.05);
    }

    .hero-content {
        width: 90%;
        max-width: 400px;

        left: 50%;
        top: 50%;
    }

    .hero-logo img {
        width: 260px;
        max-width: 75vw;
        margin-bottom: 10px;
        transform: none;
    }

    .hero-content h1 {
        font-size: 28px;
        padding: 15px 0;
        line-height: 1.2;
    }

    .hero-content p {
        width: 100%;
        max-width: 330px;
        font-size: 14px;
        line-height: 1.5;

        margin: 10px auto 0;

    }

    .btn-hero {
        width: 200px;
        height: 48px;
        margin: 20px auto 0px;
        font-size: 14px;
    }



    /* intro */

    .intro {
        width: 100%;
        padding: 60px 25px;
    }

    .intro-container {
        width: 100%;
        flex-direction: column;
        gap: 40px;
    }

    .intro-texto {
        width: 100%;
        text-align: center;
    }

    .intro-texto h3 {
        padding: 0;
        max-width: 300px;
        margin: 0 auto;
        font-size: 24px;
        line-height: 1.3;
    }

    .infos {
        width: 100%;
        padding: 10px 0;
        gap: 20px;
        align-items: center;

    }

    .infos-item {
        width: fit-content;
        align-items: flex-start;
        text-align: left;
    }

    .infos-item img {
        width: 15px;
        height: 15px;
    }

    .infos-item a {
        font-size: 16px;
        display: block;
        text-align: left;
    }


    /* sobre */

    .sobre {
        width: 100%;
        padding: 80px 25px;
        scroll-margin-top: 75px;
    }

    .sobre h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .sobre-container {
        width: 100%;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .sobre-slider {
        width: 85%;
        max-width: 320px;
        height: 360px;
        display: block;
        margin: 0 auto;

    }

    .sobre-texto h3 {
        font-size: 18px;
        padding: 0;
        margin-top: 20px;
        text-align: center;
    }

    .sobre-texto p {
        font-size: 14px;
        padding: 0;
        text-align: left;
        margin: 0 auto 60px;
        line-height: 1.6;
        max-width: 300px;
        text-align: justify;
    }


    /* mvv */

    .mvv {
        width: 100%;
        padding: 80px 25px;
    }

    .mvv-container {
        width: 100%;
        flex-direction: column;
        gap: 60px;
    }

    .mvv-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .mvv-card img {
        width: 50px;
        margin-bottom: 15px;
    }

    .mvv-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .mvv-card p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 250px;
    }


    /* vantagens */

    .vantagens {
        width: 100%;
        padding: 70px 20px;
        scroll-margin-top: 75px;
    }

    .vantagens-container {
        width: 100%;
    }

    .vantagens h2 {
        font-size: 26px;
        padding: 0;
        margin: 20px auto 15px;
        line-height: 1.2;
    }

    .vantagens .subtitulo {
        font-size: 16px;
        line-height: 1.4;
        margin: 0 auto 30px;
    }

    .vantagem-card h3 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .vantagem-card p {
        font-size: 14px;
        line-height: 1.4;
    }

    .vantagens-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
        padding: 0;
    }

    .vantagem-card {

        width: 100%;
        min-width: 0;

        height: auto;
        min-height: 240px;


        padding: 15px 10px;
        border: 2px solid #BF9765;

        border-radius: 20px;
    }

    .icone {
        width: 38px;
        height: 38px;
        margin: 12px auto 15px;
    }

    .icone img {
        width: 30px;
    }

    .vantagem-card:hover {
        transform: none;
        box-shadow: none;
    }

    /* espaços */

    .espacos {
        width: 100%;
        padding: 80px 25px;
        scroll-margin-top: 75px;
    }

    .espacos-titulos {
        width: 100%;
        margin: 0 auto 60px;
    }

    .espacos-titulos h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .espacos-titulos p {
        font-size: 14px;
        line-height: 1.5;
    }

    .espaco-card,
    .espaco-card.reverse {
        width: 100%;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 90px;
    }

    .espaco-slider {
        width: 80%;
        max-width: 300px;
        height: 300px;
    }

    .espaco-texto {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .espaco-texto h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .espaco-texto h4 {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .espaco-texto p {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        font-size: 14px;
        text-align: justify;
        line-height: 1.6;
    }

    .btn-espaco {
        width: 240px;
        height: 48px;
        margin: 20px auto 0px;
        font-size: 14px;
    }

    .galeria-indicador img {
        width: 13px;
        height: 13px;
    }

    /* modal */

    .imagem-modal {
        width: 90%;
        max-height: 75vh;
    }

    .fechar-galeria {
        top: 20px;
        right: 20px;
    }

    .anterior {
        left: 10px;
    }

    .proximo {
        right: 10px;
    }

    .anterior,
    .proximo {
        width: 45px;
        height: 42px;
        font-size: 20px;
    }


    /* avaliações */

    .comentarios {
        width: 100%;
        padding: 80px 20px;
        margin-bottom: 100px;
    }

    .comentarios h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .cards-comentarios {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .comentario-card {
        width: 100%;
        max-width: 400px;
        padding: 20px;
        border: 3px solid #BF9765;
    }

    .comentario-topo {
        gap: 15px;
        margin-bottom: 15px;
    }

    .comentario-topo h3 {
        font-size: 16px;
    }

    .comentario-card p {
        font-size: 14px;
    }

    .avatar {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .avaliacao {
        font-size: 16px;
    }

    .mais-avaliacoes,
    .avaliar {
        font-size: 18px;
    }

    .avaliar {
        margin-top: 50px;
    }

    /* empresas */

    .empresas {
        width: 100%;
        padding: 80px 25px;
    }

    .titulo-empresas h2 {
        font-size: 26px;
        padding: 0;
        margin: 0 0 45px;
        line-height: 1.2;
    }

    .logos-empresas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 20px;
    }

    .logos-empresas img {
        width: 90px;
        height: 65px;
    }

    .frase-empresas {
        width: 100%;
        max-width: 450px;
        font-size: 16px;
        padding: 20px 0;
        line-height: 1.5;
    }


    /* serviços */

    .serviços {
        width: 100%;
        padding: 80px 25px;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .serviço-container {
        width: 100%;
    }

    .titulo-serviços h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .titulo-serviços p {
        font-size: 16px;
        margin-bottom: 50px;
        line-height: 1.5;
    }

    .serviço {
        width: 100%;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 80px;
    }

    .servico-img {
        width: 100%;
        max-width: 250px;
        padding: 0 0 30px;
    }

    .servico-img img {
        width: 100%;
        height: 230px;
    }

    .servico-img h3 {
        font-size: 18px;
        padding: 15px;
    }

    .serviço-info {
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
    }

    .serviço-info li {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding-left: 35px;
    }

    .serviço-info li::before {
        font-size: 16px;

    }

    .serviço-ctt p {
        font-size: 18px;
        margin-top: 70px;
        line-height: 1.5;
    }

    .btn-agendar {
        width: 200px;
        height: 48px;
        font-size: 14px;
        margin-top: 35px;
    }


    /* footer */

    .footer {
        width: 100%;
        padding: 80px 25px 50px;
    }

    .footer-container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-marca h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .footer-marca p {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.5;
    }

    .footer-btn {
        width: 100%;
        max-width: 200px;
        height: 48px;
        margin-top: 35px;
        font-size: 14px;
    }

    .footer-contato h3,
    .footer-local h3 {
        font-size: 18px;
        margin: 0 0 20px;
    }

    .footer-contato p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-local p {
        width: 100%;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .footer-mapa {
        font-size: 18px;
    }

    .footer-linha {
        height: 2px;
        margin: 50px auto 30px;
    }

    .footer-bottom {
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-creditos {
        display: flex;
        gap: 5px;
        font-size: 14px;
    }

    .footer-creditos strong {
        font-size: 14px;
    }
}

/*===============
responsive 
=================*/

/* notebook */

@media (min-width: 769px) and (max-width: 1366px) {


    body {
        padding-top: 74px;
    }


    /* header */

    .header {
        padding: 18px 50px;
        margin: 0;
    }

    .menu ul {
        gap: 30px;
    }

    .menu a {
        font-size: 16px;
    }

    .logo img {
        width: 70px;
    }

    /* hero */

    .hero {
        height: calc(100vh - 74px);
        margin-top: 0;
    }

    .hero-logo img {
        width: 400px;
        max-width: 70vw;
        margin-top: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        max-width: 600px;
    }

    /* intro */

    .intro {
        padding: 60px 50px;
    }

    .intro-container {
        gap: 80px;
    }

    .intro-texto h3 {
        padding: 60px 30px;
        font-size: 24px;
    }

    .infos-item a {
        font-size: 18px;
    }

    .infos-item img {
        width: 14px;
        height: 14px;
    }


    /* sobre */

    .sobre {
        padding: 150px 50px;
    }

    .sobre-slider {
        width: 400px;
        height: 450px;
    }

    .sobre-texto p {
        max-width: 500px;
    }

    /* mvv */

    .mvv {
        padding: 120px 50px;
    }

    .mvv-container {
        gap: 80px;
    }

    /* vantagens */

    .vantagens {
        padding: 80px 40px;
    }

    .vantagens-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 40px 20px;
    }

    .vantagem-card {
        width: 100%;
        height: 330px;
        padding: 20px;
    }

    .vantagem-card h3 {
        font-size: 24px;
    }

    .vantagem-card p {
        font-size: 16px;
    }


    /* espaços */

    .espacos {
        padding: 120px 50px;
    }

    .espaco-card {
        gap: 60px;
        margin-bottom: 150px;
    }

    .espaco-slider {
        width: 280px;
        height: 370px;
    }

    .espaco-texto {
        max-width: 500px;
    }

    .espaco-texto h3 {
        font-size: 24px;
    }

    .espaco-texto h4 {
        font-size: 16px;
    }

    .espaco-texto p {
        font-size: 16px;
        max-width: 450px;
    }


    /* avaliações */

    .comentarios {
        padding: 100px 50px;
        margin-bottom: 180px;
    }

    .cards-comentarios {
        gap: 25px;
    }

    .comentario-card {
        width: 31%;
        padding: 25px;
    }

    .comentario-topo h3 {
        font-size: 17px;
    }

    .comentario-card p {
        font-size: 14px;
    }


    /* empresas */

    .empresas {
        padding: 120px 50px;
    }

    .logos-empresas {
        gap: 60px 40px;
    }

    .logos-empresas img {
        width: 110px;
        height: 80px;
    }

    .titulo-empresas h2 {
        padding: 30px;
    }

    /* serviços */

    .serviços {
        padding: 120px 60px;
        gap: 60px;
        margin-bottom: 100px;

        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }



    .servico-img {
        width: 300px;
    }

    .servico-img img {
        height: 270px;
    }

    .serviço-info li {
        font-size: 15px;
        margin-bottom: 20px;
        padding-left: 45px;
    }


    /* footer */

    .footer {
        padding: 150px 50px 100px;
    }

    .footer-container {
        gap: 80px;
    }

    .footer-local p {
        width: 100%;
        max-width: 400px;
    }


}