/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f7f4;
    color: #202020;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button {
    font-family: inherit;
}


/* =========================================================
   CORES
========================================================= */

:root {
    --azul: #0d1b2a;
    --azul-escuro: #071018;

    --dourado: #c8a25d;
    --dourado-claro: #d7b978;

    --branco: #ffffff;
    --preto: #111111;
    --cinza: #777777;

    --fundo: #f8f7f4;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 88px;

    background: rgba(255, 255, 255, 0.97);

    z-index: 1000;

    border-bottom: 1px solid rgba(200, 162, 93, 0.15);

    backdrop-filter: blur(10px);
}

.flex-header {
    height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;
}

.logo img {
    width: 180px;

    height: auto;
}


/* =========================================================
   MENU
========================================================= */

.nav-menu ul {
    display: flex;

    align-items: center;

    gap: 35px;

    list-style: none;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #555;

    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dourado);
}


/* =========================================================
   BOTÃO DO HEADER
========================================================= */

.btn-nav {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 25px;

    border-radius: 30px;

    background: var(--azul);

    color: #ffffff !important;

    font-weight: 600 !important;

    transition: 0.3s ease;
}

.btn-nav:hover {
    background: #172b3f;

    transform: translateY(-2px);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: var(--azul);

    transition: 0.3s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding-top: 88px;

    background-image: url("paginaprimeira.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================================
   CAMADA ESCURA SOBRE A IMAGEM
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(3, 9, 10, 0.70),
            rgba(3, 9, 10, 0.78)
        );

    z-index: 1;
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {
    position: relative;

    z-index: 2;

    width: min(1100px, 90%);

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}


/* =========================================================
   TEXTO DO HERO
========================================================= */

.hero-texto {
    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   PEQUENO TEXTO DOURADO
========================================================= */

.hero-tag {
    display: block;

    margin-bottom: 22px;

    color: var(--dourado);

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   TÍTULO PRINCIPAL
========================================================= */

.hero-texto h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(48px, 5vw, 76px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -1px;

    color: #ffffff;

    max-width: 1000px;

    margin: 0 auto 25px;
}


/* =========================================================
   PARTE DOURADA DO TÍTULO
========================================================= */

.hero-texto h2 span {
    display: block;

    margin-top: 10px;

    color: var(--dourado);

    font-family: 'Cormorant Garamond', serif;

    font-style: italic;

    font-weight: 600;
}


/* =========================================================
   TEXTO DESCRITIVO
========================================================= */

.hero-texto h3 {
    color: #ffffff;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    max-width: 750px;

    margin: 0 auto 35px;

    text-align: center;
}


/* =========================================================
   BOTÕES DO HERO
========================================================= */

.hero-botoes {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 30px;
}


/* =========================================================
   BOTÃO PRINCIPAL
========================================================= */

.btn-primary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    border-radius: 30px;

    background: var(--azul);

    color: #ffffff;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition: 0.3s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background: #172c41;

    transform: translateY(-3px);
}


/* =========================================================
   BOTÃO CTA
========================================================= */

.btn-fale-agora {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 32px;

    background-color: #ffffff;

    color: #111820;

    border: 1px solid #ffffff;

    border-radius: 50px;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    text-decoration: none;

    cursor: pointer;

    transition: all 0.3s ease;
}

.btn-fale-agora:hover {
    background-color: #d4af6a;

    border-color: #d4af6a;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(212, 175, 106, 0.25);
}


/* =========================================================
   BOTÃO SECUNDÁRIO
========================================================= */

.btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, 0.75);

    color: #ffffff;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #ffffff;

    color: var(--azul);
}


/* =========================================================
   DESTAQUES DO HERO
========================================================= */

.hero-destaques {
    width: 100%;

    max-width: 900px;

    margin: 55px auto 0;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    align-items: center;
}


/* =========================================================
   CADA DESTAQUE
========================================================= */

.hero-destaque {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-height: 45px;

    padding: 0 25px;

    color: rgba(255, 255, 255, 0.78);

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   DIVISÓRIAS
========================================================= */

.hero-destaque + .hero-destaque {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}


/* =========================================================
   ÍCONES DOURADOS
========================================================= */

.hero-destaque .icone {
    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--dourado);

    font-size: 20px;

    font-weight: 400;

    flex-shrink: 0;
}


/* =========================================================
   HERO IMAGEM
========================================================= */

.hero-imagem {
    display: none;
}


/* =========================================================
   SOBRE
========================================================= */

.sobre {
    padding: 120px 0;

    background: #f8f7f4;
}

.sobre-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.sobre-imagem img {
    width: 100%;

    max-height: 650px;

    object-fit: cover;

    border-radius: 4px;
}

.sobre-conteudo {
    max-width: 600px;
}


/* =========================================================
   TÍTULOS DAS SEÇÕES
========================================================= */

.section-mini-title {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--dourado);

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-mini-title.center {
    display: block;

    text-align: center;
}

.sobre-conteudo h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 500;

    line-height: 1;

    color: var(--azul);

    margin-bottom: 30px;
}


/* =========================================================
   TÍTULO DOURADO DO SOBRE
========================================================= */

.sobre-conteudo h1.titulo-dourado {
    color: #0d1b2a !important;
}


.sobre-conteudo p {
    color: #666;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 20px;
}


/* =========================================================
   BOTÃO SOBRE
========================================================= */

.btn-sobre {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 15px;

    padding: 15px 28px;

    border: 1px solid var(--azul);

    border-radius: 30px;

    color: var(--azul);

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    transition: 0.3s ease;
}

.btn-sobre:hover {
    background: var(--azul);

    color: #ffffff;
}


/* =========================================================
   ATUAÇÃO
========================================================= */

.atuacao {
    padding: 120px 0;

    background: #ffffff;
}

.section-title {
    text-align: center;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 500;

    color: var(--azul);

    margin-bottom: 60px;
}

.grid-atuacao {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.card-atuacao {
    padding: 35px;

    background: #f8f7f4;

    border: 1px solid rgba(13, 27, 42, 0.08);

    transition: 0.3s ease;
}

.card-atuacao:hover {
    transform: translateY(-6px);

    border-color: rgba(200, 162, 93, 0.5);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.card-atuacao h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;

    font-weight: 600;

    color: var(--azul);

    margin-bottom: 15px;
}

.card-atuacao p {
    color: #666;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 100px 0;

    background: var(--azul);
}

.cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.cta .section-mini-title {
    color: var(--dourado);
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 48px;

    font-weight: 500;

    color: #ffffff;

    margin-bottom: 10px;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   AVALIAÇÕES
========================================================= */

.avaliacoes {
    padding: 120px 0;

    background: #f8f7f4;
}

.avaliacoes-topo {
    display: flex;

    justify-content: center;

    margin-bottom: 40px;
}

.nota-geral {
    text-align: center;
}

.nota-geral h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 60px;

    color: var(--dourado);

    font-weight: 600;
}

.nota-geral p {
    color: #777;

    font-size: 13px;
}


/* =========================================================
   CARD DE AVALIAÇÃO
========================================================= */

.avaliacao-slider-box {
    max-width: 800px;

    margin: 0 auto;
}

.avaliacao-slider-card {
    padding: 40px;

    background: #ffffff;

    border: 1px solid rgba(13, 27, 42, 0.08);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

    transition: opacity 0.3s ease;
}

.avaliacao-slider-card.fade-out {
    opacity: 0;
}

.avaliacao-slider-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}

.avaliacao-autor {
    display: flex;

    align-items: center;

    gap: 15px;
}

.avaliacao-autor img {
    width: 55px;

    height: 55px;

    border-radius: 50%;

    object-fit: cover;
}

.avaliacao-autor-info h4 {
    font-size: 15px;

    color: var(--azul);

    margin-bottom: 5px;
}

.avaliacao-autor-info span {
    color: #888;

    font-size: 12px;
}

.avaliacao-google-icon {
    font-weight: 700;

    font-size: 24px;

    color: #4285f4;
}

.avaliacao-estrelas {
    color: var(--dourado);

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.avaliacao-texto {
    color: #666;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #071018;

    color: #ffffff;

    padding-top: 80px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;
}

.footer .logo img {
    width: 200px;
}

.footer-info h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 32px;

    font-weight: 500;

    color: var(--dourado);

    margin-bottom: 20px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 8px;
}

.footer-copy {
    padding: 25px 5%;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 12px;
}


/* =========================================================
   ANIMAÇÕES
========================================================= */

.reveal-item {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-item.visible {
    opacity: 1;

    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1000px) {

    .nav-menu ul {
        gap: 20px;
    }

    .hero-texto h2 {
        font-size: 58px;
    }

    .sobre-grid {
        gap: 40px;
    }

    .grid-atuacao {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-destaques {
        max-width: 850px;
    }

    .hero-destaque {
        padding: 0 15px;

        font-size: 12px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

    .header,
    .flex-header {
        height: 75px;
    }

    .logo img {
        width: 155px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        background: #ffffff;

        padding: 25px;

        display: none;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;

        gap: 20px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .btn-nav {
        width: 100%;
    }


    /* =====================================================
       HERO MOBILE
    ===================================================== */

    .hero {
        min-height: 100vh;

        padding-top: 75px;

        padding-bottom: 40px;

        background-position: center;
    }

    .hero-grid {
        width: 92%;
    }

    .hero-tag {
        font-size: 10px;

        letter-spacing: 2px;

        line-height: 1.6;

        margin-bottom: 18px;
    }

    .hero-texto h2 {
        font-size: 48px;

        line-height: 0.95;
    }

    .hero-texto h3 {
        font-size: 14px;

        line-height: 1.7;

        max-width: 90%;
    }

    .hero-botoes {
        flex-direction: column;

        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;

        max-width: 300px;
    }


    /* =====================================================
       DESTAQUES MOBILE
    ===================================================== */

    .hero-destaques {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 40px;

        padding-top: 20px;

        max-width: 320px;
    }

    .hero-destaque {
        justify-content: flex-start;

        padding: 8px 0;

        font-size: 12px;

        white-space: normal;

        text-align: left;
    }

    .hero-destaque + .hero-destaque {
        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, 0.12);

        padding-top: 15px;
    }


    /* =====================================================
       SOBRE
    ===================================================== */

    .sobre {
        padding: 80px 0;
    }

    .sobre-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .sobre-conteudo h1 {
        font-size: 44px;
    }


    /* =====================================================
       ATUAÇÃO
    ===================================================== */

    .atuacao {
        padding: 80px 0;
    }

    .grid-atuacao {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .cta {
        padding: 80px 0;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta h2 {
        font-size: 42px;
    }


    /* =====================================================
       AVALIAÇÕES
    ===================================================== */

    .avaliacoes {
        padding: 80px 0;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }

    .logo img {
        width: 140px;
    }

    .hero-texto h2 {
        font-size: 40px;
    }

    .hero-texto h3 {
        font-size: 13px;
    }

    .hero-tag {
        font-size: 9px;
    }

    .section-title {
        font-size: 42px;
    }

    .sobre-conteudo h1 {
        font-size: 40px;
    }

    .card-atuacao {
        padding: 28px;
    }

    .cta h2 {
        font-size: 38px;
    }

    .avaliacao-slider-card {
        padding: 25px;
    }

    .hero-destaques {
        max-width: 280px;
    }

}


/* =========================================================
   CORREÇÃO DO MENU MOBILE
========================================================= */

@media (max-width: 768px) {

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}