/* ============================================================
   TSAD ODONTOLOGIA HUMANIZADA — Design System Compartilhado
   Paleta extraída do Papel Timbrado oficial:
   Verde Floresta #132118 | Dourado Champagne #FCDBAA | Bronze #B78E54
   ============================================================ */

:root {
    --verde-floresta: #132118;
    --verde-floresta-clara: #1E3527;
    --verde-floresta-suave: #0F1C15;
    --dourado-champagne: #FCDBAA;
    --dourado-champagne-2: #F6D4A3;
    --bronze: #B78E54;
    --bronze-2: #BF975D;
    --branco: #FFFFFF;
    --off-white: #FAF8F4;
    --bege-suave: #F3ECE3;
    --tinta: #1A211D;
    --cinza-texto: #5B6660;
    --cinza-claro: #8B958F;
    --whatsapp: #052415;
    --whatsapp-icon: #FCDBAA;
    --sombra: 0 10px 30px rgba(19, 33, 24, 0.12);
    --sombra-forte: 0 20px 50px rgba(19, 33, 24, 0.22);
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --raio: 16px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--cinza-texto);
    background: var(--branco);
    line-height: 1.65;
    overflow-x: clip;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--verde-floresta);
    font-weight: 600;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient-gold {
    background: linear-gradient(120deg, var(--bronze) 0%, var(--dourado-champagne) 50%, var(--bronze-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 18px;
}

.section-subtitle {
    max-width: 640px;
    font-size: 1.05rem;
    color: var(--cinza-texto);
}

.text-center { text-align: center; margin-left: auto; margin-right: auto; }

section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { section { padding: 70px 0; } }

.bg-off { background: var(--off-white); }
.bg-verde {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--verde-floresta) 0%, var(--verde-floresta-suave) 100%);
    color: rgba(255,255,255,0.85);
}
.bg-verde h1, .bg-verde h2, .bg-verde h3 { color: var(--branco); }
.bg-verde .section-subtitle { color: rgba(255,255,255,0.72); }
.bg-verde::before, .bg-verde::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.bg-verde::before { width: 380px; height: 380px; background: rgba(183,142,84,0.18); top: -120px; right: -100px; }
.bg-verde::after { width: 320px; height: 320px; background: rgba(252,219,170,0.10); bottom: -140px; left: -80px; }
.bg-verde .container { position: relative; z-index: 1; }

/* Fundo com imagem fixa (efeito parallax simples) — usado na CTA final */
.bg-cta-fixed {
    position: relative;
    background-image: linear-gradient(rgba(15,28,21,0.55), rgba(11,21,16,0.65)), var(--cta-bg-image, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: rgba(255,255,255,0.85);
}
.bg-cta-fixed h1, .bg-cta-fixed h2, .bg-cta-fixed h3 { color: var(--branco); }
@media (max-width: 900px) { .bg-cta-fixed { background-attachment: scroll; } }

/* Fundo claro (branco, a cor mais clara da paleta) — usado na primeira dobra, para contrastar com o header verde */
.bg-champagne {
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF6EC 55%, #FBEAD0 100%);
    color: var(--verde-floresta);
}
.bg-champagne h1, .bg-champagne h2, .bg-champagne h3 { color: var(--verde-floresta); }
.bg-champagne .eyebrow { color: var(--bronze); }
.bg-champagne .section-subtitle, .bg-champagne p { color: var(--cinza-texto); }
/* Hero — foto grudada na base, sem sobra de espaço em branco */
.hero-photo-col { align-self: flex-end; display: flex; justify-content: center; position: relative; z-index: 1; }
.hero-photo { margin-bottom: -45px; position: relative; }
.hero-photo img { max-height: 640px; width: auto; margin: 0 auto; display: block; }
@media (max-width: 992px) {
    .hero-section { padding-bottom: 0 !important; }
    .hero-photo-col { align-self: center; }
    .hero-photo { margin-bottom: 0; }
    .hero-photo img { max-height: 420px; }
}

/* Faixa TSAD (texto passando, infinito) */
.marquee-strip {
    background: var(--verde-floresta);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}
.marquee-strip + section { padding-top: 50px; }
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    animation: marquee-scroll 130s linear infinite;
    will-change: transform;
}
.marquee-track span {
    color: var(--dourado-champagne);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.92rem;
    text-transform: uppercase;
}
.marquee-track .marquee-star { color: var(--bronze); font-size: 0.8rem; margin: 0 4px; }
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ BOTÕES ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-gold {
    background: linear-gradient(120deg, var(--bronze) 0%, var(--dourado-champagne-2) 100%);
    color: var(--verde-floresta);
    box-shadow: 0 12px 28px rgba(183, 142, 84, 0.35);
}
.btn-gold:hover { box-shadow: 0 16px 36px rgba(183, 142, 84, 0.45); }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--dourado-champagne-2);
    color: var(--branco);
}
.btn-outline:hover { background: rgba(252, 219, 170, 0.12); }

.btn-outline-dark {
    background: transparent;
    border: 1.5px solid var(--verde-floresta);
    color: var(--verde-floresta);
}
.btn-outline-dark:hover { background: rgba(19, 33, 24, 0.08); }

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #0A3B24 100%);
    color: var(--whatsapp-icon);
    box-shadow: 0 12px 28px rgba(5, 36, 21, 0.4);
    border: 1px solid rgba(252, 219, 170, 0.25);
}
.btn-whatsapp:hover { box-shadow: 0 16px 36px rgba(5, 36, 21, 0.5); }

.btn-block { width: 100%; justify-content: center; }

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0; left: 0; width: 100dvw;
    z-index: 1000;
    background: var(--verde-floresta);
    transition: padding 0.35s ease, box-shadow 0.35s ease;
    border-bottom: 1px solid rgba(252, 219, 170, 0.14);
}
.header.scrolled { padding: 4px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    transition: padding 0.35s ease;
}
.header.scrolled .header-inner { padding: 10px 0; }

.logo img { height: 46px; transition: height 0.35s ease; }
.header.scrolled .logo img { height: 36px; }

.nav-desktop { display: flex; align-items: center; gap: 8px; }
.nav-desktop > ul { display: flex; gap: 4px; }
.nav-desktop a.nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 0.94rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    border-radius: 30px;
    transition: background 0.25s ease, color 0.25s ease;
}
.nav-desktop a.nav-link:hover,
.nav-desktop li.active > a.nav-link { background: rgba(252, 219, 170, 0.12); color: var(--dourado-champagne); }

.nav-item-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    background: var(--branco);
    border-radius: 14px;
    box-shadow: var(--sombra-forte);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 11px 16px;
    font-size: 0.9rem;
    color: var(--verde-floresta);
    border-radius: 8px;
    font-weight: 500;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--bronze); padding-left: 20px; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 12px 26px; font-size: 0.88rem; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--dourado-champagne); border-radius: 2px; }

@media (max-width: 992px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    .header-cta .btn { display: none; }
}

/* Mobile nav panel */
.nav-mobile {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 88%);
    height: 100vh;
    background: var(--verde-floresta);
    z-index: 1200;
    padding: 100px 30px 40px;
    transition: right 0.4s ease;
    overflow-y: auto;
}
.nav-mobile.open { right: 0; }
.nav-mobile a { display: block; padding: 14px 0; color: rgba(255,255,255,0.9); font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-mobile .submenu { padding-left: 16px; }
.nav-mobile .submenu a { font-size: 0.92rem; color: rgba(255,255,255,0.7); padding: 10px 0; border-bottom: none; }
.nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--dourado-champagne); font-size: 1.8rem; cursor: pointer; }
.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100dvw; height: 100dvh; background: rgba(0,0,0,0.5); z-index: 1100;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ============ SCROLL REVEAL ============ */
.scroll-element { opacity: 0; transition: opacity 0.9s ease, transform 0.9s ease; }
.scroll-element.from-left { transform: translateX(-50px); }
.scroll-element.from-right { transform: translateX(50px); }
.scroll-element.fade-up { transform: translateY(40px); }
.scroll-element.zoom-in { transform: scale(0.92); }
.scroll-element.in-view { opacity: 1; transform: translate(0,0) scale(1); }

/* ============ GLASS CARD ============ */
.glass-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(183,142,84,0.18);
    border-radius: var(--raio);
    box-shadow: var(--sombra);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-forte);
    border-color: rgba(183,142,84,0.45);
}
.bg-verde .glass-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(252,219,170,0.18);
}
.bg-verde .glass-card:hover { border-color: rgba(252,219,170,0.5); }

/* Ícone dos cards — círculo com anel dourado, ícone SVG com transição suave */
.icon-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183,142,84,0.14), rgba(252,219,170,0.22));
    border: 1.5px solid rgba(183,142,84,0.4);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.4s ease;
}
.icon-circle svg { width: 26px; height: 26px; stroke: var(--bronze); transition: stroke 0.4s ease; }
.glass-card:hover .icon-circle {
    transform: scale(1.1) rotate(-6deg);
    background: linear-gradient(135deg, var(--bronze), var(--dourado-champagne-2));
}
.glass-card:hover .icon-circle svg { stroke: var(--verde-floresta); }
.bg-verde .icon-circle { background: linear-gradient(135deg, rgba(252,219,170,0.1), rgba(252,219,170,0.2)); border-color: rgba(252,219,170,0.35); }
.bg-verde .icon-circle svg { stroke: var(--dourado-champagne); }

/* ============ GRID HELPERS ============ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 992px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } .grid-3 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============ CARDS DE DOR / TÓPICO ============ */
.pain-card {
    position: relative;
    padding: 32px 26px;
    text-align: left;
    overflow: hidden;
}
.pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--bronze), var(--dourado-champagne-2));
    transition: width 0.5s cubic-bezier(.2,.8,.2,1);
}
.pain-card:hover::before { width: 100%; }
.pain-card .icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bronze), var(--dourado-champagne-2));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-radius 0.4s ease, box-shadow 0.4s ease;
}
.glass-card:hover .icon-wrap { transform: scale(1.1) rotate(-6deg); border-radius: 50%; box-shadow: 0 10px 24px rgba(183,142,84,0.35); }
.pain-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.pain-card p { font-size: 0.94rem; }

/* Divisor fino, esmaecendo nas pontas — do início ao fim da grade de cards */
.section-divider-fade {
    width: 100%;
    height: 1px;
    margin: 0 auto 40px;
    background: linear-gradient(90deg, transparent 0%, var(--verde-floresta-clara) 50%, transparent 100%);
}

/* Cards "Cuidamos de quem já passou por isso" — versão numerada, mais sóbria */
.pain-card-v2 {
    position: relative;
    padding: 38px 28px 32px;
    text-align: left;
    overflow: hidden;
}
.pain-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--bronze), var(--dourado-champagne-2));
    transition: width 0.5s cubic-bezier(.2,.8,.2,1);
}
.pain-card-v2:hover::before { width: 100%; }
.pain-card-v2-index {
    display: block;
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(120deg, var(--bronze) 0%, var(--dourado-champagne-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.pain-card-v2:hover .pain-card-v2-index { opacity: 1; transform: translateX(4px); }
.pain-card-v2 h3 { font-size: 1.18rem; margin-bottom: 10px; transition: color 0.3s ease; }
.pain-card-v2:hover h3 { color: var(--bronze); }
.pain-card-v2 p { font-size: 0.93rem; }

/* ============ DEPOIMENTOS (Google review style) ============ */
.review-card {
    padding: 30px 28px;
    text-align: left;
    position: relative;
    display: flex; flex-direction: column;
}
.review-quote-icon { color: rgba(183,142,84,0.25); font-family: Georgia, serif; font-size: 3.2rem; line-height: 1; margin-bottom: -10px; }
.review-stars { color: var(--bronze); font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p.review-text { flex-grow: 1; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(183,142,84,0.15); }
.review-author .avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-floresta), var(--verde-floresta-clara));
    display: flex; align-items: center; justify-content: center;
    color: var(--dourado-champagne); font-weight: 700; font-family: var(--font-title); font-size: 1.1rem;
    flex-shrink: 0;
}
.review-author .name { font-weight: 600; color: var(--verde-floresta); font-size: 0.92rem; }
.review-author .google-tag { font-size: 0.78rem; color: var(--cinza-claro); display: flex; align-items: center; gap: 5px; }
.review-track { display: flex; gap: 22px; overflow-x: auto; padding: 10px 4px 26px; scroll-snap-type: x mandatory; }
.review-track .review-card { min-width: 340px; max-width: 340px; scroll-snap-align: start; flex-shrink: 0; }
.review-track::-webkit-scrollbar { height: 6px; }
.review-track::-webkit-scrollbar-thumb { background: var(--dourado-champagne-2); border-radius: 10px; }

/* ============ ACCORDION FAQ ============ */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(183,142,84,0.18);
    border-radius: var(--raio);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.accordion-item:hover { border-color: rgba(183,142,84,0.4); box-shadow: var(--sombra); }
.accordion-item.active { background: rgba(255,255,255,0.9); border-color: rgba(183,142,84,0.5); box-shadow: var(--sombra); }
.accordion-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
}
.accordion-header h4 { font-size: 1.02rem; color: var(--verde-floresta); font-family: var(--font-body); font-weight: 600; }
.accordion-icon {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid var(--bronze);
    display: flex; align-items: center; justify-content: center;
    color: var(--bronze); flex-shrink: 0; margin-left: 20px;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), background 0.3s ease, color 0.3s ease;
    font-size: 1.1rem;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--bronze), var(--dourado-champagne-2));
    color: var(--verde-floresta);
}
.accordion-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 26px;
    font-size: 0.95rem;
}
.accordion-item.active .accordion-panel { padding: 0 26px 24px; }

/* ============ VÍDEO DEPOIMENTO ============ */
.video-testimonial-wrap { position: relative; display: flex; justify-content: center; }
.video-testimonial-wrap::before {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(183,142,84,0.28) 0%, rgba(183,142,84,0) 70%);
    top: -40px; right: 6%;
    z-index: 0;
}
.video-testimonial {
    position: relative;
    z-index: 1;
    border-radius: var(--raio);
    overflow: hidden;
    box-shadow: var(--sombra-forte);
    aspect-ratio: 9 / 16;
    max-width: 320px;
    margin: 0 auto;
    background: var(--verde-floresta);
}
.video-testimonial video { width: 100%; height: 100%; object-fit: cover; }
.video-testimonial .play-btn {
    position: absolute; inset: 0; margin: auto;
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(252,219,170,0.92);
    display: flex; align-items: center; justify-content: center;
    color: var(--verde-floresta); font-size: 1.6rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.video-testimonial .play-btn:hover { transform: scale(1.08); background: var(--dourado-champagne); }

/* ============ FOOTER ============ */
.footer {
    background: var(--verde-floresta);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer h5 { color: var(--dourado-champagne); font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer ul li { margin-bottom: 12px; font-size: 0.92rem; }
.footer ul li a:hover { color: var(--dourado-champagne); }
.footer-bottom { display: flex; justify-content: center; align-items: center; text-align: center; padding: 24px 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 10px; row-gap: 6px; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(252,219,170,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--dourado-champagne);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ============ WHATSAPP FLUTUANTE ============ */
.whatsapp-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 900;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #0A3B24 100%);
    color: var(--whatsapp-icon);
    border: 1px solid rgba(252, 219, 170, 0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 12px 30px rgba(5,36,21,0.45);
    animation: pulse-wpp 2.4s infinite;
}
@keyframes pulse-wpp {
    0% { box-shadow: 0 0 0 0 rgba(5,36,21,0.5); }
    70% { box-shadow: 0 0 0 16px rgba(5,36,21,0); }
    100% { box-shadow: 0 0 0 0 rgba(5,36,21,0); }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100dvw; z-index: 1500;
    background: var(--verde-floresta);
    color: rgba(255,255,255,0.85);
    padding: 22px 24px calc(22px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
    transform: translateY(120%);
    transition: transform 0.5s ease;
}
@media (max-width: 700px) {
    .cookie-banner { padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px)); }
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.88rem; max-width: 720px; }
.cookie-inner a { color: var(--dourado-champagne); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 22px; font-size: 0.84rem; }
.cookie-actions .btn-link { background: none; color: rgba(255,255,255,0.7); text-decoration: underline; padding: 11px 6px; }
@media (max-width: 700px) { .cookie-inner { flex-direction: column; align-items: flex-start; } }

/* ============ BREADCRUMB (páginas internas) ============ */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 90px;
    background: linear-gradient(160deg, var(--verde-floresta) 0%, var(--verde-floresta-suave) 100%);
    color: var(--branco);
    text-align: center;
}
.page-hero::before, .page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.page-hero::before { width: 320px; height: 320px; background: rgba(183,142,84,0.22); top: -100px; left: 8%; }
.page-hero::after { width: 280px; height: 280px; background: rgba(252,219,170,0.12); bottom: -120px; right: 10%; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--dourado-champagne); }
.page-hero h1 { color: var(--branco); font-size: clamp(2.2rem, 4vw, 3.2rem); }
.page-hero p { max-width: 620px; margin: 16px auto 0; color: rgba(255,255,255,0.75); }
.page-hero .tag-pill { background: rgba(255,255,255,0.1); color: var(--dourado-champagne); border: 1px solid rgba(252,219,170,0.3); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--dourado-champagne); }

/* ============ MENU LATERAL DE SERVIÇOS (página Serviços) ============ */
.servicos-layout { display: grid; grid-template-columns: 260px 1fr; gap: 50px; align-items: flex-start; }
.servicos-sidebar {
    position: sticky; top: 110px;
    background: var(--off-white);
    border-radius: var(--raio);
    padding: 18px;
}
.servicos-sidebar a {
    display: block; padding: 12px 14px; border-radius: 10px;
    font-size: 0.9rem; font-weight: 500; color: var(--cinza-texto);
    margin-bottom: 4px;
}
.servicos-sidebar a:hover,
.servicos-sidebar a.active { background: var(--branco); color: var(--bronze); box-shadow: var(--sombra); }
.servico-section { padding-top: 130px; margin-top: -130px; }
.servico-section:not(:last-child) { padding-bottom: 80px; border-bottom: 1px solid rgba(183,142,84,0.18); margin-bottom: 80px; }
@media (max-width: 992px) { .servicos-layout { grid-template-columns: 1fr; } .servicos-sidebar { position: static; margin-bottom: 30px; } }

/* ============ SLIDER ANTES/DEPOIS ============ */
.service-compare-card { overflow: hidden; padding: 0; text-align: left; display: flex; flex-direction: column; }
.compare-slider {
    position: relative; width: 100%; aspect-ratio: 4/3;
    overflow: hidden; cursor: ew-resize; user-select: none;
    border-radius: var(--raio) var(--raio) 0 0;
}
.compare-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
.compare-after { z-index: 1; }
.compare-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.compare-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
    background: var(--dourado-champagne-2); transform: translateX(-50%); z-index: 3;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.compare-handle span {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--branco); box-shadow: var(--sombra-forte);
    display: flex; align-items: center; justify-content: center;
    color: var(--verde-floresta); font-size: 1.1rem;
}
.compare-label {
    position: absolute; bottom: 12px; z-index: 4;
    background: rgba(19,33,24,0.72); color: #fff;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.6px;
    text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
    pointer-events: none;
}
.before-label { left: 12px; }
.after-label { right: 12px; }
.service-compare-content { padding: 24px 26px 28px; }
.service-compare-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-compare-content p { font-size: 0.9rem; margin-bottom: 16px; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============ UTILIDADES ============ */
.tag-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bege-suave); color: var(--verde-floresta);
    padding: 8px 16px; border-radius: 30px; font-size: 0.82rem; font-weight: 600;
    margin-bottom: 16px;
}
.img-frame { border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra); }
.img-frame-clean { border-radius: 0; box-shadow: none; background: transparent; overflow: visible; }
.divider-gold { height: 3px; width: 70px; background: linear-gradient(90deg, var(--bronze), var(--dourado-champagne)); border-radius: 4px; margin: 20px 0; }
