/* ============================================================
           FONTE MYRIAD PRO — carregada das fontes da cliente
        ============================================================ */

        html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    @media (max-width: 768px) {

  .hero {
    padding: 2rem 1rem;
  }

  .container {
    flex-direction: column;
  }

  .titulo {
    font-size: 2rem;
  }

}
        @font-face {
            font-family: 'MyriadPro';
            src: url('fonts/MyriadPro-Regular_0.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
        }
        @font-face {
            font-family: 'MyriadPro';
            src: url('fonts/MyriadPro-Light.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
        }
        @font-face {
            font-family: 'MyriadPro';
            src: url('fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
            font-weight: 600;
            font-style: normal;
        }
        @font-face {
            font-family: 'MyriadPro';
            src: url('fonts/MYRIADPRO-BOLD.OTF') format('opentype');
            font-weight: 700;
            font-style: normal;
        }
        @font-face {
            font-family: 'MyriadPro';
            src: url('fonts/Myriad_Pro_Black.ttf') format('truetype');
            font-weight: 900;
            font-style: normal;
        }
        @font-face {
            font-family: 'MyriadPro';
            src: url('fonts/MYRIADPRO-BOLDIT.OTF') format('opentype');
            font-weight: 700;
            font-style: italic;
        }
        @font-face {
            font-family: 'MyriadPro';
            src: url('fonts/MyriadPro-It.otf') format('opentype');
            font-weight: 400;
            font-style: italic;
        }

        /* ============================================================
           RESET & BASE
        ============================================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Cores extraídas do logo da cliente */
            --navy:        #131A2E;   /* fundo do logo */
            --navy-mid:    #1B2540;   /* variação intermediária */
            --navy-light:  #243050;   /* cards/superfícies */
            --gold:        #C8A45D;   /* dourado do escudo */
            --gold-light:  #DFC07A;   /* hover / highlight */
            --gold-dark:   #A07830;   /* sombra dourado */
            --white:       #FFFFFF;
            --off-white:   #F0EDE6;   /* textos secundários */
            --text-muted:  #8FA3B8;   /* textos suaves */
            --border:      rgba(200,164,93,0.18);

            --shadow-gold: 0 8px 32px -8px rgba(200,164,93,0.25);
            --shadow-card: 0 20px 40px -12px rgba(0,0,0,0.4);
            --shadow-sm:   0 4px 16px rgba(0,0,0,0.2);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'MyriadPro', 'Segoe UI', sans-serif;
            background-color: var(--navy);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
        }

        a { text-decoration: none; }

        /* ============================================================
           NAVBAR
        ============================================================ */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 200;
            height: 88px;
            display: flex;
            align-items: center;
            background: rgba(19, 26, 46, 0.97);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .nav-container {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 250px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            margin-left: auto;
        }

        .nav-links a {
            font-family: 'MyriadPro', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--off-white);
            letter-spacing: 0.04em;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.25s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gold);
            margin-left: auto;
        }

        /* ============================================================
           BUTTONS
        ============================================================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: var(--navy);
            font-family: 'MyriadPro', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.04em;
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: var(--shadow-gold);
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 16px 32px -8px rgba(200,164,93,0.45);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-family: 'MyriadPro', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.04em;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-2px);
        }

        /* ============================================================
           HERO — VÍDEO COM OVERLAY APRIMORADO
        ============================================================ */
        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Vídeo de fundo */
        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            /* Filtro para realçar sem lavar o vídeo */
            filter: brightness(0.55) saturate(0.85);
            transition: filter 0.6s ease;
        }

        /* Overlay em gradiente — torna o vídeo mais presente, legível e elegante */
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(
                    135deg,
                    rgba(19, 26, 46, 0.78) 0%,
                    rgba(19, 26, 46, 0.45) 55%,
                    rgba(200, 164, 93, 0.06) 100%
                );
        }

        /* Linha dourada decorativa no topo */
        .hero-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            z-index: 2;
        }

        .hero-content-wrap {
            position: relative;
            z-index: 3;
            width: 100%;
            padding: 5rem 0 4rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200,164,93,0.15);
            border: 1px solid rgba(200,164,93,0.35);
            padding: 7px 18px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1.8rem;
        }

        .hero-content h1 {
            font-family: 'MyriadPro', sans-serif;
            font-weight: 900;
            font-size: 3.6rem;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 1.2rem;
            max-width: 700px;
        }

        .hero-content h1 {
            white-space: nowrap;
        }

        .hero-content h1 span {
            color: var(--gold);
            white-space: nowrap;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--off-white);
            margin-bottom: 2rem;
            max-width: 560px;
            font-weight: 300;
            line-height: 1.7;
        }

        /* Chips de destaque */
        .highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 1.8rem 0;
        }

        .highlight-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(200,164,93,0.25);
            padding: 7px 18px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--off-white);
            backdrop-filter: blur(4px);
        }

        .highlight-item i {
            color: var(--gold);
            font-size: 0.85rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        /* Decoração de brilho lateral */
        .hero-glow {
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(200,164,93,0.12) 0%, transparent 70%);
            z-index: 2;
            pointer-events: none;
        }

        /* ============================================================
           SEÇÃO GENÉRICA
        ============================================================ */
        .section {
            padding: 5.5rem 0;
        }

        .section-title {
            text-align: center;
            font-family: 'MyriadPro', sans-serif;
            font-weight: 900;
            font-size: 2.3rem;
            color: var(--white);
            margin-bottom: 0.8rem;
            letter-spacing: -0.01em;
        }

        .section-title span {
            color: var(--gold);
        }

        .section-sub {
            text-align: center;
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto 3.5rem;
            font-size: 1.05rem;
            font-weight: 300;
            line-height: 1.7;
        }

        /* Divisor dourado */
        .gold-divider {
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold));
            border-radius: 2px;
            margin: 1rem auto 0;
        }

        /* ============================================================
           CARDS DE SERVIÇOS — com espaço para imagem do ícone
           ============================================================ */
        .cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    align-items: stretch;
}

@media (max-width: 960px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

        .service-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 100%;
            background: var(--navy-mid);
            border: 1px solid var(--border);
            padding: 2.5rem 2rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* Brilho sutil no hover */
        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(200,164,93,0.05) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: var(--shadow-gold), var(--shadow-card);
        }

        /* Ícone: aceita tanto <img> quanto <i class="fas ..."> */
        .service-icon {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200,164,93,0.2);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
}

        .service-card:hover .service-icon {
            background: rgba(200,164,93,0.2);
            border-color: var(--gold);
        }


        /* Ícone via Font Awesome (fallback) */
        .service-icon i {
            font-size: 2rem;
            color: var(--gold);
        }

        .service-card h3 {
            font-family: 'MyriadPro', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 0.8rem;
            letter-spacing: 0.01em;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.65;
            font-weight: 300;
        }

        /* ============================================================
           SEÇÃO RECONHECIMENTOS
        ============================================================ */
        .recognition-section {
            background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .recog-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .recog-card {
            background: var(--navy);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            flex: 1;
            min-width: 250px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .recog-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .recog-card:hover::after {
            opacity: 1;
        }

        .recog-card:hover {
            transform: translateY(-6px);
            border-color: rgba(200,164,93,0.4);
            box-shadow: var(--shadow-card);
        }

        .recog-card i {
            font-size: 2.4rem;
            color: var(--gold);
            margin-bottom: 1.2rem;
        }

        .recog-card h4 {
            font-family: 'MyriadPro', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .recog-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.6;
        }

        .recog-card small {
            display: inline-block;
            margin-top: 0.8rem;
            color: var(--gold);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        /* ============================================================
           DEPOIMENTOS
        ============================================================ */
        .reviews {
            padding: 4.5rem 0;
            background: var(--navy-mid);
        }

        .reviews-grid {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .review-card {
            background: var(--navy);
            border: 1px solid var(--border);
            padding: 2rem 1.8rem;
            border-radius: 20px;
            flex: 1;
            min-width: 260px;
            max-width: 340px;
            transition: all 0.25s;
        }

        .review-card:hover {
            transform: translateY(-4px);
            border-color: rgba(200,164,93,0.4);
            box-shadow: var(--shadow-card);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
        }

        .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            object-fit: cover;
        }

        .review-header strong {
            font-size: 0.95rem;
            color: var(--white);
            font-weight: 600;
        }

        .review-header span {
            display: block;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .google-icon {
            margin-left: auto;
            width: 22px;
            opacity: 0.7;
        }

        .review-card p {
            font-size: 0.9rem;
            color: var(--off-white);
            margin: 0.8rem 0;
            line-height: 1.65;
            font-weight: 300;
            font-style: italic;
        }

        .stars {
            color: var(--gold);
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        /* ============================================================
           CONTATO
        ============================================================ */
        #contato .section-sub {
            margin-bottom: 3rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: var(--navy-mid);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 3rem;
        }

        .contact-info h3 {
            font-family: 'MyriadPro', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.8rem;
        }

        .contact-info h3 i {
            color: var(--gold);
            margin-right: 10px;
        }

        .contact-info > p {
            color: var(--text-muted);
            font-weight: 300;
            font-size: 0.95rem;
        }

        .contact-details {
            margin: 2rem 0;
        }

        .contact-details p {
            margin: 1rem 0;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            color: var(--off-white);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .contact-details i {
            color: var(--gold);
            font-size: 1.1rem;
            margin-top: 3px;
            min-width: 20px;
        }

        .privacy-box {
            background: rgba(200,164,93,0.08);
            border: 1px solid rgba(200,164,93,0.2);
            padding: 1rem 1.4rem;
            border-radius: 16px;
            font-size: 0.88rem;
            color: var(--off-white);
        }

        .privacy-box i {
            color: var(--gold);
            margin-right: 8px;
        }

        /* Caixa de horários */
        .horario-box {
            background: var(--navy);
            border: 1px solid var(--border);
            padding: 1.8rem 2rem;
            border-radius: 24px;
        }

        .horario-box .horario-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--white);
            margin-bottom: 1.2rem;
        }

        .horario-box .horario-title i {
            color: var(--gold);
        }

        .horario {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .horario p {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: var(--off-white);
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .horario p span {
            color: var(--text-muted);
            font-weight: 300;
        }

        .horario p strong {
            font-weight: 600;
            color: var(--gold);
        }

        .horario p strong.closed {
            color: var(--text-muted);
            font-weight: 400;
        }

        .horario-note {
            margin-top: 1rem;
            font-size: 0.82rem;
            color: var(--gold);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

/* ============================================================
   BOTÕES SOCIAIS — BRANCO & DOURADO MINIMALISTA
============================================================ */
.buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'MyriadPro', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1.5px solid #C9A84C;
    flex: 1;
    min-width: 170px;
    background: #ffffff;
    color: #9A7128;
}

.social-btn i {
    font-size: 1.3rem;
    color: #C9A84C;
    transition: color 0.25s ease;
}

.social-btn:hover {
    background: #C9A84C;
    color: #ffffff;
    border-color: #C9A84C;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(180, 140, 50, 0.25);
}

.social-btn:hover i {
    color: #ffffff;
}

.btn-instagram,
.btn-maps,
.btn-whatsapp {
    background: #ffffff;
    color: #9A7128;
    box-shadow: 0 2px 10px rgba(180, 140, 50, 0.12);
}

.btn-instagram:hover,
.btn-maps:hover,
.btn-whatsapp:hover {
    background: #C9A84C;
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(180, 140, 50, 0.28);
}

.social-btn:active {
    transform: scale(0.97);
}

        /* ============================================================
           WHATSAPP FLUTUANTE
        ============================================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 24px rgba(37,211,102,0.35);
            transition: all 0.25s;
            z-index: 999;
        }

        .whatsapp-float:hover {
            transform: scale(1.07);
            background: #128C7E;
        }

        /* ============================================================
           FOOTER
        ============================================================ */
        footer {
            background: #0B1220;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            text-align: center;
            padding: 2.5rem;
            font-size: 0.85rem;
            line-height: 1.7;
        }

        footer strong {
            color: var(--gold);
        }

        footer p + p {
            margin-top: 0.5rem;
        }

        /* ============================================================
           RESPONSIVO
        ============================================================ */
        @media (max-width: 860px) {
            .nav-links { display: none; }
            .mobile-menu { display: block; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 88px;
                left: 0;
                width: 100%;
                background: var(--navy);
                border-bottom: 1px solid var(--border);
                padding: 1.5rem 2rem;
                gap: 1.2rem;
            }
            .hero-content h1 { font-size: 2.4rem; }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem;
            }
            .contact-details p {
                flex-wrap: wrap;
            }
            .horario p {
                flex-direction: column;
                align-items: flex-start;
            }
            .section-title { font-size: 1.9rem; }
        }

        @media (max-width: 640px) {
            .container { padding: 0 18px; }
            .section { padding: 3.5rem 0; }
            .hero-content h1 { font-size: 2rem; }
            .buttons-wrapper { flex-direction: column; gap: 0.75rem; width: 100%; }
            .social-btn { width: 100%; justify-content: center; }
            .contact-grid { padding: 1.5rem; gap: 1.5rem; }
            .privacy-box { font-size: 0.86rem; }
        }

        /* ============================================================
           ANIMAÇÕES DE ENTRADA
        ============================================================ */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-badge     { animation: fadeUp 0.6s ease 0.1s both; }
        .hero-content h1 { animation: fadeUp 0.6s ease 0.25s both; }
        .hero-content p  { animation: fadeUp 0.6s ease 0.4s both; }
        .highlights      { animation: fadeUp 0.6s ease 0.5s both; }
        .hero-actions    { animation: fadeUp 0.6s ease 0.6s both; }