:root {
    /* === PALETA OFICIAL TRISEÉ ESTÉTICA AVANÇADA === */
    --bg-main: #F8F4F1;       /* Creme claro */
    --bg-alt: #F0E6DC;        /* Bege quente */
    --bg-white: #ffffff;
    --primary: #4A3826;       /* Marrom bronze - cor principal / títulos */
    --secondary: #6B5842;     /* Marrom médio - textos secundários */
    --muted: #8A7561;         /* Marrom claro - labels, legendas */
    --accent: #AD8A4E;        /* Dourado - accent, links, ícones */
    --accent-light: #C9AD74;  /* Dourado claro */
    --cta-bg: #4A3826;        /* Igual primary */
    --cta-text: #ffffff;
    --dark-footer: #2E2015;   /* Marrom quase preto */
    --border: #E4D8C8;        /* Bege claro para bordas */
    --wave: #EDE1D2;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    color: var(--primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* === TIPOGRAFIA OFICIAL - sistema de 2 famílias (restrição = luxo) ===
   Títulos e labels: Newsreader (serifa editorial, elegante e discreta)
   Interface/corpo:  Hanken Grotesk (nav, botões, texto corrido - clareza)
*/

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Newsreader', serif;
    color: var(--primary);
    text-wrap: balance;
}

.section-label, .btn-cta, .nav-links a, .servico-tag,
.info-tag, .stat-label, .breadcrumb, .tl-year {
    font-family: 'Hanken Grotesk', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img, video { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 1024px) { .section-padding { padding: 60px 0; } }
@media (max-width: 768px) { .section-padding { padding: 40px 0; } }

/* Utility Classes */
.bg-white { background-color: var(--bg-white); }
.bg-main { background-color: var(--bg-main); }
.bg-alt { background-color: var(--bg-alt); }
.bg-cta { background-color: var(--cta-bg); }

.section-label {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.deco-line {
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    margin: 24px 0 32px 0;
}
.deco-line.center { margin-left: auto; margin-right: auto; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

body, a, button { cursor: auto; }

/* 1. NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    height: 84px; z-index: 1000;
    display: flex; align-items: center;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(74,56,38,0.10);
}
.nav-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 12px; z-index: 1001; justify-self: start; }
.nav-links { justify-self: center; }
.nav-right { justify-self: end; }
.nav-brand img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a {
    font-size: 12px; font-weight: 500; color: var(--secondary);
    text-transform: uppercase; letter-spacing: 0.06em;
    position: relative; padding-bottom: 4px; white-space: nowrap;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0%; height: 1px; background-color: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }

.nav-dropdown { position: relative; font-size: 12px; line-height: 19.2px; padding-bottom: 4px; }
.nav-dropdown-panel {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px;
    box-shadow: 0 16px 40px rgba(74,56,38,0.14);
    min-width: 240px; padding: 10px; display: flex; flex-direction: column; gap: 2px;
    opacity: 0; pointer-events: none; transition: all 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-panel { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-panel a {
    padding: 10px 14px; border-radius: 6px; font-size: 12px;
    text-transform: none; letter-spacing: 0.02em; color: var(--secondary);
}
.nav-dropdown-panel a::after { content: none; }
.nav-dropdown-panel a:hover { background: var(--bg-main); color: var(--primary); }

.btn-cta {
    background: var(--cta-bg); color: var(--cta-text);
    border: 1.5px solid var(--cta-bg);
    padding: 12px 26px; border-radius: 4px;
    font-weight: 500; font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.06em; transition: all 0.25s ease;
    display: inline-block;
}
.btn-cta:hover { background: transparent; color: var(--cta-bg); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(74,56,38,0.2); }

.menu-toggle {
    display: none; background: none; border: none;
    width: 24px; height: 24px; position: relative; z-index: 1001;
}
.menu-toggle span {
    display: block; width: 100%; height: 2px;
    background-color: var(--primary); position: absolute; transition: 0.3s;
}
.menu-toggle span:nth-child(1) { top: 4px; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

@media (max-width: 992px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .menu-toggle { display: block; }
    .navbar { background-color: rgba(255, 255, 255, 0.97); }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 84px; left: 0; width: 100%;
        max-height: calc(100vh - 84px); overflow-y: auto;
        background-color: var(--bg-white); padding: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05); align-items: center; gap: 18px;
    }
    .nav-dropdown-panel {
        position: static; transform: none; opacity: 1; pointer-events: auto;
        box-shadow: none; border: none; background: var(--bg-main);
        display: none; width: 100%; margin-top: 8px;
    }
    .nav-dropdown.open .nav-dropdown-panel { display: flex; }
    .nav-dropdown-panel a { text-align: center; }
}

/* 2. FOOTER */
.footer { background-color: var(--dark-footer); color: rgba(255,255,255,0.5); font-size: 12px; }
.footer-compact {
    display: flex; align-items: center; justify-content: space-between;
    padding: 32px 0; gap: 24px; flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 40px; filter: brightness(0) invert(1); display: block; opacity: 0.92; }
.footer-compact-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-compact-links a { font-size: 11.5px; color: rgba(255,255,255,0.5); transition: color 0.2s; white-space: nowrap; }
.footer-compact-links a:hover { color: white; }
.footer-compact-info { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; font-size: 11.5px; color: rgba(255,255,255,0.4); }
.footer-compact-info a { color: rgba(255,255,255,0.65); }
.footer-compact-info a:hover { color: white; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25); display: flex;
    align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--dark-footer); }
.footer-social svg { width: 15px; height: 15px; }

.footer-bottom {
    padding: 14px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
    font-size: 11px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-legal { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-nexora { color: var(--accent) !important; }

@media (max-width: 768px) {
    .footer-compact { flex-direction: column; align-items: flex-start; gap: 18px; }
    .footer-compact-info { align-items: flex-start; }
    .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}

/* 3. WHATSAPP FLOAT */
@keyframes wa-breathe {
    0%, 100% { transform: scale(1);    box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%       { transform: scale(1.07); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
}

.float-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    width: 56px; height: 56px; background-color: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    animation: wa-breathe 2s ease-in-out infinite;
}
.float-wa svg { width: 24px; height: 24px; fill: white; }
.float-wa:hover { animation: none; transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* 4. COOKIE BANNER */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background-color: var(--cta-bg); color: white;
    padding: 24px; z-index: 9998;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
    transform: translateY(100%); transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-weight: 300; font-size: 13px; flex: 1; }
.cookie-text a { color: var(--accent-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 16px; }
.btn-cookie-accept { background: white; color: var(--cta-bg); border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 500; }
.btn-cookie-ess { background: transparent; color: white; border: 1px solid white; padding: 10px 20px; border-radius: 4px; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 500; }
@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px; }
    .cookie-actions { width: 100%; justify-content: stretch; }
    .btn-cookie-accept, .btn-cookie-ess { flex: 1; text-align: center; }
}

/* WAVES */
.wave-container { width: 100%; overflow: hidden; line-height: 0; }
.wave-container svg { display: block; width: calc(100% + 1.3px); height: 80px; }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--accent); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.1em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }

/* INNER HERO */
.inner-hero {
    padding: 168px 0 80px;
    background-color: var(--bg-main);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.inner-hero h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 16px; }
.inner-hero p { font-size: 16px; color: var(--secondary); font-weight: 400; max-width: 640px; margin: 0 auto; }

/* BOTÕES OUTLINE - Sistema de dois modos */
.btn-outline-light {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.45);
    padding: 14px 36px; border-radius: 6px;
    font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: all 0.25s ease;
}
.btn-outline-light:hover {
    background: white; color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 14px 28px; border-radius: 6px;
    font-family: 'Hanken Grotesk', sans-serif; font-weight: 500; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.06em;
    transition: all 0.25s ease;
}
.btn-outline-dark:hover {
    background: var(--primary); color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74,56,38,0.22);
}

.btn-white { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: white; padding: 14px 32px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.5); font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.25s ease; }
.btn-white:hover { background: white; color: var(--primary); border-color: white; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* CTA SECTION (comum a todas as páginas internas) */
.cta-section { background-color: var(--cta-bg); color: white; text-align: center; padding: 80px 0; }
.cta-section h2 { color: white; font-size: 36px; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.72); font-weight: 300; margin-bottom: 36px; font-size: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Focus Visible */
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ─── Mobile utility helpers ─── */
@media (max-width: 768px) {
    .mob-stack { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
    .mob-hide  { display: none !important; }
    .mob-full  { width: 100% !important; min-width: 0 !important; }
    .mob-col   { flex-direction: column !important; }
    .mob-order-first { order: -1 !important; }
}
@media (max-width: 992px) {
    .tab-stack { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
}

@media (max-width: 768px) {
    p, .section-label, .btn-cta, .btn-outline-dark, .btn-outline-light { text-wrap: balance; }
    .reveal-right { transform: translateY(20px); }
    .reveal-left  { transform: translateY(20px); }
    .inner-hero { padding: 120px 0 56px; }
    .inner-hero h1 { font-size: clamp(26px, 8vw, 40px); line-height: 1.2; }
    .inner-hero p  { font-size: 15px; }
    .cta-section { padding: 60px 0 !important; }
    .cta-section h2 { font-size: 28px !important; line-height: 1.2 !important; }
}

section, .hero, .hero-container { max-width: 100%; }
.hero { overflow-x: hidden; }

/* ══════════════ PÁGINAS DE SERVIÇOS (listagem) ══════════════ */
/* Banner: fundo colorido + foto contida (não a foto como fundo) */
.banner-split { padding: 64px 0; background: var(--bg-main); }
.banner-split-inner { display: flex; align-items: center; gap: 48px; }
.banner-split-img { width: 42%; max-width: 420px; height: 280px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 50px rgba(74,56,38,0.16); flex-shrink: 0; }
.banner-split-text { color: var(--secondary); font-size: 15.5px; font-weight: 300; line-height: 1.85; }
@media (max-width: 800px) {
    .banner-split-inner { flex-direction: column; gap: 28px; }
    .banner-split-img { width: 100%; max-width: 100%; height: 220px; }
}

.proc-section { padding: 88px 0; }
.proc-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.proc-intro h2 { font-size: 34px; margin-bottom: 16px; }
.proc-intro p { color: var(--secondary); font-weight: 300; font-size: 15.5px; }

.proc-categorias-nav { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.proc-categorias-nav a {
    padding: 10px 20px; border-radius: 30px; border: 1.5px solid var(--border);
    font-family: 'Hanken Grotesk', sans-serif; font-size: 12.5px; font-weight: 500; color: var(--secondary);
}
.proc-categorias-nav a.active, .proc-categorias-nav a:hover { background: var(--primary); border-color: var(--primary); color: white; }


/* ══════════════ HERO - fundo colorido, foto como elemento emoldurado (altura fixa) ══════════════ */
.card-hero {
    height: 680px; padding-top: 84px; box-sizing: border-box;
    background: linear-gradient(160deg, var(--bg-main) 0%, var(--bg-alt) 100%);
    display: flex; align-items: center; overflow: hidden;
}
.card-hero-inner { display: flex; align-items: center; gap: 64px; width: 100%; }
.card-hero-text { width: 54%; max-width: 560px; }
.card-hero-text h1 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.2; margin-bottom: 16px; }
.card-hero-text .split-lede { color: var(--secondary); font-size: 15px; font-weight: 300; line-height: 1.78; margin-bottom: 28px; max-width: 480px; }
.card-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.card-hero-visual { width: 40%; max-width: 400px; flex-shrink: 0; }
.card-hero-frame {
    background: var(--bg-white); padding: 14px; border-radius: 18px;
    box-shadow: 0 30px 70px rgba(74,56,38,0.22);
}
.card-hero-frame img { width: 100%; height: 460px; object-fit: cover; object-position: 20% center; border-radius: 10px; display: block; }
@media (max-width: 900px) {
    .card-hero { height: auto; padding: 118px 0 48px; }
    .card-hero-inner { flex-direction: column; gap: 36px; }
    .card-hero-text, .card-hero-visual { width: 100%; max-width: 100%; }
    .card-hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
    .card-hero-frame img { height: 380px; }
}

/* ══════════════ FAIXA-LETREIRO (marquee) - substitui a tira de estatísticas ══════════════ */
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-strip { background: var(--primary); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee-scroll 32s linear infinite; }
.marquee-track span.mq-item {
    font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent-light); white-space: nowrap; padding: 0 28px;
}
.marquee-track img.mq-sep { height: 26px; width: auto; display: block; flex-shrink: 0; opacity: 0.9; }

/* ══════════════ GRID DE SERVIÇOS (home) - cards sóbrios, categoria + contagem ══════════════ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
    display: block; color: inherit;
    background: var(--bg-white); border: 1px solid var(--border); border-left: 4px solid var(--accent);
    border-radius: 12px; padding: 32px 30px; transition: all 0.3s ease;
}
.service-card:hover { border-left-color: var(--primary); box-shadow: 0 16px 40px rgba(74,56,38,0.12); transform: translateY(-3px); }
.service-card-count { display: block; font-family: 'Hanken Grotesk', sans-serif; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--secondary); font-weight: 300; line-height: 1.65; margin-bottom: 14px; }
.service-card-link { font-family: 'Hanken Grotesk', sans-serif; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); }
.service-card:hover .service-card-link { color: var(--accent); }
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════ LISTA EDITORIAL (linhas, não caixas) - serviços ══════════════ */
.edlist { border-top: 1px solid var(--border); }
.edlist-row {
    display: flex; align-items: center; gap: 28px; padding: 30px 4px;
    border-bottom: 1px solid var(--border); transition: background 0.25s ease;
}
a.edlist-row { color: inherit; }
.edlist-row:hover { background: var(--bg-main); }
.edlist-num { font-family: 'Newsreader', serif; font-size: 22px; color: var(--accent); font-weight: 600; width: 44px; flex-shrink: 0; }
.edlist-name { font-size: 21px; font-weight: 600; width: 240px; flex-shrink: 0; }
.edlist-desc { font-size: 14px; color: var(--secondary); font-weight: 300; line-height: 1.65; flex: 1; }
.edlist-count { font-family: 'Hanken Grotesk', sans-serif; font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; width: 110px; flex-shrink: 0; text-align: right; }
.edlist-arrow { color: var(--accent); font-size: 18px; flex-shrink: 0; transform: translateX(0); transition: transform 0.25s ease; width: 22px; text-align: right; }
.edlist-row:hover .edlist-arrow { transform: translateX(6px); color: var(--primary); }
@media (max-width: 900px) {
    .edlist-row { flex-wrap: wrap; gap: 6px 20px; padding: 24px 4px; }
    .edlist-num { width: auto; order: 1; }
    .edlist-name { width: auto; order: 2; font-size: 18px; flex: 1; }
    .edlist-arrow { order: 3; }
    .edlist-desc { order: 4; width: 100%; flex: 0 0 100%; margin-left: 0; }
    .edlist-count { order: 5; width: auto; text-align: left; margin-top: 4px; }
}

/* ══════════════ HISTÓRIA (home) - foto + texto lado a lado ══════════════ */
.story-teaser-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.story-teaser-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px 80px 20px 80px; box-shadow: 0 24px 60px rgba(74,56,38,0.16); display: block; }
.story-quote { font-family: 'Newsreader', serif; font-style: italic; font-weight: 500; font-size: clamp(21px, 2.4vw, 27px); line-height: 1.5; color: var(--primary); margin: 14px 0 18px; }
.story-teaser-text p:not(.story-quote) { color: var(--secondary); font-weight: 300; font-size: 15px; line-height: 1.8; margin-bottom: 30px; }
@media (max-width: 900px) {
    .story-teaser-grid { grid-template-columns: 1fr; gap: 32px; }
    .story-teaser-img img { height: 300px; }
}

/* ══════════════ FAIXA DUPLA DE FOTOS (diptico) ══════════════ */
.duo-band { padding: 72px 0; }
.duo-band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.duo-band-grid img {
    width: 100%; height: 520px; object-fit: contain; background: var(--bg-white);
    display: block; border-radius: 16px; box-shadow: 0 20px 50px rgba(74,56,38,0.16);
    padding: 14px; box-sizing: border-box;
}
@media (max-width: 700px) { .duo-band-grid { grid-template-columns: 1fr; } .duo-band-grid img { height: 440px; } }

/* ══════════════ DÚVIDAS - lista Q&A plana (sem cards, sem fundo escuro) ══════════════ */
.qa-section { padding: 96px 0; }
.qa-intro { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.qa-intro h2 { font-size: 34px; margin-bottom: 14px; }
.qa-intro p { color: var(--secondary); font-weight: 300; font-size: 15.5px; }
.qa-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--border); }
.qa-row { display: grid; grid-template-columns: 320px 1fr; gap: 36px; padding: 34px 4px; border-bottom: 1px solid var(--border); }
.qa-q { display: flex; gap: 14px; }
.qa-num { font-family: 'Newsreader', serif; font-size: 15px; color: var(--accent); flex-shrink: 0; padding-top: 3px; }
.qa-q h3 { font-size: 18px; line-height: 1.4; }
.qa-a p { font-size: 14.5px; color: var(--secondary); font-weight: 300; line-height: 1.75; margin-bottom: 10px; }
.qa-a .qa-note { font-size: 13px; font-weight: 500; color: var(--accent); }
@media (max-width: 768px) {
    .qa-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ══════════════ CITAÇÃO ÚNICA ROTATIVA - avaliações ══════════════ */
.quote-slider-section { padding: 88px 0 100px; }
.quote-slider { position: relative; max-width: 720px; margin: 40px auto 0; min-height: 180px; text-align: center; }
.quote-slide {
    position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease;
    display: flex; flex-direction: column; align-items: center; pointer-events: none;
}
.quote-slide.active { opacity: 1; position: relative; pointer-events: auto; }
.quote-slide .qs-stars { color: var(--accent); font-size: 15px; letter-spacing: 3px; margin-bottom: 18px; }
.quote-slide p { font-family: 'Newsreader', serif; font-style: italic; font-size: clamp(19px, 2.4vw, 25px); color: var(--primary); line-height: 1.6; margin-bottom: 16px; max-width: 620px; }
.quote-slide .qs-source { font-family: 'Hanken Grotesk', sans-serif; font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.quote-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.quote-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; transition: 0.25s; }
.quote-dots button.active { background: var(--accent); width: 22px; border-radius: 4px; }

/* ══════════════ CARDS DE BORDA LATERAL (accent) ══════════════ */
.accent-grid { display: grid; gap: 20px; }
.accent-card {
    background: var(--bg-white); border: 1px solid var(--border); border-left: 4px solid var(--accent);
    border-radius: 12px; padding: 28px 26px; display: flex; gap: 18px; align-items: flex-start;
    transition: all 0.3s ease;
}
.accent-card:hover { border-left-color: var(--primary); box-shadow: 0 14px 36px rgba(74,56,38,0.10); transform: translateY(-3px); }
.accent-icon {
    width: 44px; height: 44px; background: var(--bg-main); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0;
}
.accent-icon svg { width: 20px; height: 20px; }
.accent-tag { display: block; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 5px; }
.accent-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.accent-card p { font-size: 13.5px; color: var(--secondary); font-weight: 300; line-height: 1.65; margin: 0; }

/* ══════════════ PÁGINAS LEGAIS ══════════════ */
.legal-content { padding: 80px 0 100px; max-width: 800px; margin: 0 auto; }
.legal-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 48px; box-shadow: 0 10px 40px rgba(74,56,38,0.05); }
.legal-card h2 { font-size: 22px; color: var(--primary); margin-top: 32px; margin-bottom: 16px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card ul { font-weight: 300; font-size: 15px; color: var(--secondary); margin-bottom: 16px; line-height: 1.8; }
.legal-card ul { padding-left: 20px; }
.legal-card li { margin-bottom: 8px; }
.legal-card a { color: var(--accent); text-decoration: underline; }
.update-date { font-size: 13px; color: var(--muted); margin-bottom: 32px; font-style: italic; }
@media (max-width: 768px) { .legal-card { padding: 32px; } }

.lgpd-form-container { background: var(--bg-main); border-radius: 8px; padding: 32px; margin-top: 32px; border: 1px solid var(--border); }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; font-weight: 500; color: var(--primary); margin-bottom: 8px; }
.form-control { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 6px; font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; background: white; transition: 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(173,138,78,0.12); }
.btn-submit { display: inline-block; background: var(--cta-bg); color: white; border: none; padding: 14px 24px; border-radius: 6px; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; transition: 0.3s; cursor: pointer; font-family: 'Hanken Grotesk', sans-serif; }
.btn-submit:hover { background: var(--primary); opacity: 0.9; transform: translateY(-2px); }
@media (max-width: 768px) { .lgpd-form-container { padding: 24px; } }

/* ══════════════ GRID FOTO/VÍDEO + TEXTO (história, procedimentos em detalhe) ══════════════ */
.historia-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.historia-img-wrap img { border-radius: 20px 90px 20px 90px; width: 100%; height: 560px; object-fit: cover; box-shadow: 0 24px 60px rgba(74,56,38,0.18); }
.historia-text p { color: var(--secondary); font-size: 15.5px; font-weight: 300; line-height: 1.85; margin-bottom: 20px; }
.historia-text .assinatura { font-family: 'Newsreader', serif; font-style: italic; color: var(--primary); font-size: 18px; margin-top: 8px; }
@media (max-width: 992px) {
    .historia-grid { grid-template-columns: 1fr; gap: 40px; }
    .historia-img-wrap img { height: 380px; }
}

/* ══════════════ EQUIPE (fotos reais das sócias) ══════════════ */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 900px; margin: 0 auto; }
.team-card { text-align: center; }
.team-photo-wrap { border-radius: 20px 90px 20px 90px; overflow: hidden; box-shadow: 0 24px 60px rgba(74,56,38,0.18); margin-bottom: 22px; }
.team-photo-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.team-card h3 { font-size: 24px; margin-bottom: 4px; }
.team-role { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 14px; }
.team-quote { font-family: 'Newsreader', serif; font-style: italic; color: var(--secondary); font-size: 15.5px; line-height: 1.7; max-width: 320px; margin: 0 auto; }
.team-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 560px; margin: 0 auto; }
.team-teaser .team-photo-wrap img { height: 280px; }
.team-teaser h3 { font-size: 18px; }
@media (max-width: 700px) {
    .team-grid, .team-teaser { grid-template-columns: 1fr; max-width: 340px; }
    .team-photo-wrap img { height: 360px; }
}

/* ══════════════ TIRA DE VÍDEOS (procedimentos verticais, estilo reels) ══════════════ */
.video-strip-section { padding: 88px 0; }
.video-track {
    display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 24px;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.video-track::-webkit-scrollbar { height: 6px; }
.video-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.video-card {
    position: relative; flex: 0 0 auto; width: 300px; aspect-ratio: 9 / 16;
    border-radius: 18px; overflow: hidden; scroll-snap-align: start;
    box-shadow: 0 18px 46px rgba(74,56,38,0.18); background: var(--primary);
}
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-card-label {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 18px 16px;
    background: linear-gradient(to top, rgba(20,14,8,0.85), rgba(20,14,8,0));
    color: white; font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 15px;
    letter-spacing: 0.01em; pointer-events: none;
}
.video-strip-featured .video-card { width: 340px; }
@media (max-width: 900px) { .video-strip-featured .video-card { width: 280px; } }

/* Grid de prévias (home) - vídeo + resumo + botão pra página do procedimento */
.video-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 40px; }
.video-preview-card { display: flex; gap: 18px; align-items: center; }
.video-preview-card .video-card { width: 130px; flex: none; margin-bottom: 0; }
.video-preview-card .video-play-btn { width: 36px; height: 36px; }
.video-preview-card .video-play-btn svg { width: 15px; height: 15px; }
.video-preview-card .video-card-label { display: none; }
.video-preview-body h3 { font-size: 16px; margin-bottom: 6px; }
.video-preview-body p { font-size: 13px; color: var(--secondary); font-weight: 300; line-height: 1.6; margin-bottom: 10px; }
.video-preview-link { font-family: 'Hanken Grotesk', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); }
.video-preview-link:hover { color: var(--accent); }
@media (max-width: 700px) {
    .video-preview-grid { grid-template-columns: 1fr; gap: 24px; }
    .video-preview-card .video-card { width: 100px; }
}
.video-card::before {
    content: ''; position: absolute; inset: 0; background: rgba(20,14,8,0.18);
    transition: background 0.25s ease; pointer-events: none;
}
.video-card.is-playing::before { background: transparent; }
.video-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 54px; height: 54px; border-radius: 50%;
    background: rgba(20,14,8,0.6); border: 1.5px solid rgba(255,255,255,0.5); color: white; display: flex;
    align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}
.video-card:hover .video-play-btn { background: rgba(20,14,8,0.8); transform: translate(-50%, -50%) scale(1.08); }
.video-play-btn svg { width: 20px; height: 20px; }
.video-play-btn .icon-pause { display: none; }
.video-card.is-playing .video-play-btn { width: 42px; height: 42px; background: rgba(20,14,8,0.45); opacity: 0; }
.video-card.is-playing .video-play-btn .icon-play { display: none; }
.video-card.is-playing .video-play-btn .icon-pause { display: block; }
.video-card.is-playing:hover .video-play-btn, .video-card.is-playing .video-play-btn:focus-visible { opacity: 1; }
@media (max-width: 700px) { .video-card { width: 230px; } }
@media (hover: none) { .video-card.is-playing .video-play-btn { opacity: 1; } }

/* ══════════════ RESULTADOS REAIS (antes/depois) ══════════════ */
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.result-card { border-radius: 14px; overflow: hidden; box-shadow: 0 14px 36px rgba(74,56,38,0.14); position: relative; }
.result-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.result-card-tag {
    position: absolute; left: 10px; top: 10px; background: rgba(255,255,255,0.92); color: var(--primary);
    font-family: 'Hanken Grotesk', sans-serif; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 5px 10px; border-radius: 20px;
}
@media (max-width: 900px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ══════════════ CARD ACCENT COM FOTO (variação do accent-card) ══════════════ */
.accent-card-photo { padding: 0; overflow: hidden; border-left: none; flex-direction: column; align-items: stretch; }
.accent-card-photo img { width: 100%; height: 170px; object-fit: cover; display: block; }
.accent-card-photo .accent-card-body { padding: 22px 24px 26px; border-left: 4px solid var(--accent); }

/* ══════════════ CREDENCIAIS / PROVA SOCIAL (substitui depoimentos fabricados) ══════════════ */
.credentials-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 920px; margin: 40px auto 0; }
.credential-item { text-align: center; padding: 8px 16px; }
.credential-item .credential-icon { width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 50%; background: var(--bg-white); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.credential-item .credential-icon svg { width: 22px; height: 22px; }
.credential-item h3 { font-size: 16px; margin-bottom: 6px; }
.credential-item p { font-size: 13.5px; color: var(--secondary); font-weight: 300; line-height: 1.6; }
.credentials-cta { text-align: center; margin-top: 40px; }
@media (max-width: 768px) { .credentials-strip { grid-template-columns: 1fr; gap: 28px; } }
