/* ==========================================================================
   DESIGN SYSTEM — Dra. Cíntia Cavassim Raffo
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Paleta principal — Rosa médico elegante */
    --primary:        #8B5E6B;
    --primary-dark:   #6B4352;
    --primary-light:  #F7EEF1;
    --primary-glow:   rgba(139, 94, 107, 0.10);
    --primary-border: rgba(139, 94, 107, 0.15);

    /* Dourado refinado */
    --gold:           #C4986A;
    --gold-dark:      #A07848;
    --gold-light:     #FBF5EE;
    --gold-border:    rgba(196, 152, 106, 0.20);

    /* Backgrounds quentes */
    --bg-base:        #FAF8F5;
    --bg-warm:        #F6F1EC;
    --bg-dark:        #1C1118;
    --white:          #FFFFFF;

    /* Tipografia */
    --text-title:     #180E14;
    --text-body:      #4A3843;
    --text-muted:     #8C7880;
    --text-subtle:    #B8ACAF;
    --text-on-dark:   rgba(255,255,255,0.92);

    /* Sombras */
    --shadow-xs:  0 1px 4px rgba(24, 14, 20, 0.06);
    --shadow-sm:  0 2px 12px rgba(24, 14, 20, 0.07);
    --shadow-md:  0 6px 28px rgba(24, 14, 20, 0.09);
    --shadow-lg:  0 16px 56px rgba(24, 14, 20, 0.11);
    --shadow-xl:  0 28px 80px rgba(24, 14, 20, 0.14);

    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Layout */
    --container-width: 1200px;
    --header-height:   88px;
    --section-gap:     112px;

    /* Bordas */
    --radius-sm:   6px;
    --radius-md:   14px;
    --radius-lg:   22px;
    --radius-xl:   36px;
    --radius-pill: 100px;

    /* Transições */
    --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast:      all 0.25s var(--ease-expo);
    --t-med:       all 0.45s var(--ease-expo);
    --t-slow:      all 0.75s var(--ease-expo);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-base);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t-fast); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}
.section-pad { padding: var(--section-gap) 0; }

@media (max-width: 768px) {
    :root { --section-gap: 72px; }
    .container { padding: 0 20px; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
    will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* Eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gold);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* Headings */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.8vw, 50px);
    font-weight: 600;
    color: var(--text-title);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.section-lead {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 580px;
}
.section-header-centered { text-align: center; margin-bottom: 64px; }
.section-header-centered .section-lead { margin: 0 auto; }

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    transition: var(--t-fast);
    border: 1.5px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.1px;
}
.btn svg { flex-shrink: 0; transition: transform 0.25s var(--ease-spring); }
.btn:hover svg { transform: translateX(2px); }

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 94, 107, 0.25);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139, 94, 107, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary-border);
}
.btn-outline:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(139, 94, 107, 0.12);
    transition: height 0.35s var(--ease-expo), box-shadow 0.35s ease;
}
.main-header.scrolled {
    height: 72px;
    box-shadow: 0 1px 24px rgba(24, 14, 20, 0.08);
}

.header-inner {
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo / Brand */
.brand {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    line-height: 1;
    gap: 4px;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.2px;
}
.brand-specialty {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

/* Links de navegação desktop */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--t-fast);
    letter-spacing: 0.1px;
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}
.nav-link.active {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Botão hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    z-index: 1010;
    transition: var(--t-fast);
}
.menu-toggle:hover { background: rgba(139, 94, 107, 0.15); }
.menu-toggle .bar {
    height: 2px;
    border-radius: 2px;
    background: var(--primary-dark);
    transition: var(--t-fast);
    display: block;
}
.menu-toggle .bar:nth-child(1) { width: 100%; }
.menu-toggle .bar:nth-child(2) { width: 75%; }
.menu-toggle .bar:nth-child(3) { width: 88%; }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Painel mobile */
@media (max-width: 1024px) {
    .main-header,
    .main-header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg-base);
        z-index: 1008;
    }

    .header-inner { padding: 0 20px; }
    .menu-toggle { display: flex; }

    .nav-panel {
        position: fixed;
        top: 0; right: -100%; bottom: 0;
        width: min(300px, 85vw);
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s var(--ease-expo);
        z-index: 1005;
        overflow-y: auto;
    }
    .nav-panel.open { right: 0; }

    /* Cabeçalho do painel */
    .nav-panel::before {
        content: '';
        display: block;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--gold));
        flex-shrink: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 24px 0 8px;
        flex: 1;
    }
    .nav-link {
        font-size: 16px;
        font-weight: 600;
        padding: 16px 28px;
        border-radius: 0;
        border-bottom: 1px solid rgba(139, 94, 107, 0.06);
        color: var(--text-title);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-link::after {
        content: '→';
        font-size: 14px;
        color: var(--text-subtle);
        transition: var(--t-fast);
    }
    .nav-link:hover::after,
    .nav-link.active::after { color: var(--primary); transform: translateX(3px); }
    .nav-link:hover, .nav-link.active { background: var(--primary-light); color: var(--primary-dark); }

    .nav-cta-wrapper {
        padding: 24px 28px 32px;
        border-top: 1px solid var(--primary-border);
        margin-top: auto;
    }
    .btn-header { width: 100%; justify-content: center; }
}

/* Overlay */
.menu-overlay {
    position: fixed; inset: 0; z-index: 1004;
    background: rgba(24, 14, 20, 0.55);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.menu-overlay.visible { opacity: 1; pointer-events: all; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--bg-base);
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-blob {
    position: absolute;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    filter: blur(72px);
    opacity: 0.45;
    animation: morph 20s ease-in-out infinite alternate;
}
.hero-blob-1 { width: 560px; height: 560px; background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%); top: -80px; right: -100px; }
.hero-blob-2 { width: 380px; height: 380px; background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%); bottom: 0; left: -60px; animation-delay: -7s; }
.hero-blob-3 { width: 280px; height: 280px; background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%); top: 45%; left: 50%; animation-delay: -14s; opacity: 0.3; }

@keyframes morph {
    0%   { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: rotate(0deg) scale(1); }
    50%  { border-radius: 40% 60% 50% 70% / 60% 30% 70% 40%; transform: rotate(4deg) scale(1.04); }
    100% { border-radius: 70% 30% 40% 60% / 40% 70% 30% 60%; transform: rotate(-3deg) scale(0.98); }
}

.hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 72px 0 96px;
}
.hero-content { max-width: 560px; }

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 6px 14px 6px 8px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
    border: 1px solid var(--primary-border);
}
.hero-pill-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--primary);
    animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 600;
    color: var(--text-title);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero-title em { font-style: italic; color: var(--primary); }

.hero-desc {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 38px;
    max-width: 460px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(139, 94, 107, 0.10);
    flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.trust-label {
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-subtle);
    margin-top: 5px;
}
.trust-divider { width: 1px; height: 32px; background: var(--primary-border); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-frame { position: relative; width: 100%; max-width: 440px; }

.hero-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: 48% 52% 42% 58% / 58% 56% 44% 42%;
    position: relative; z-index: 2;
    box-shadow: var(--shadow-xl);
    transition: transform 0.8s var(--ease-expo);
}
.hero-photo:hover { transform: scale(1.02); }

.hero-photo-ring {
    position: absolute; inset: -18px;
    border-radius: 48% 52% 42% 58% / 58% 56% 44% 42%;
    border: 1.5px solid var(--gold);
    opacity: 0.22; z-index: 1;
    animation: ring-pulse 5s ease-in-out infinite alternate;
}
@keyframes ring-pulse {
    from { opacity: 0.12; transform: scale(1); }
    to   { opacity: 0.30; transform: scale(1.015); }
}

.float-card {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: var(--radius-md);
    padding: 13px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 11px;
    z-index: 4;
    animation: float 5s ease-in-out infinite alternate;
}
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-10px); } }

.float-card-1 { bottom: 80px; left: -24px; animation-delay: 0s; }
.float-card-2 { top: 56px; right: -24px; animation-delay: -2.5s; }

.float-icon {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); flex-shrink: 0;
}
.float-icon-gold { background: var(--gold-light); color: var(--gold); }
.float-text strong { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-title); }
.float-text span   { font-size: 11px; color: var(--text-muted); }
.rating-stars { display: flex; gap: 2px; margin-bottom: 3px; }
.rating-stars svg { color: #F5BE50; }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; padding: 50px 0 60px; }
    .hero-content { max-width: 100%; }
    .hero-desc { margin: 0 auto 38px; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-photo-frame { max-width: 320px; margin: 0 auto; }
    .float-card-1 { left: 0; }
    .float-card-2 { right: 0; }
}
@media (max-width: 480px) {
    .float-card { display: none; }
    .hero-photo { border-radius: var(--radius-xl); aspect-ratio: 1; }
    .hero-photo-ring { border-radius: var(--radius-xl); }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    background: var(--white);
    border-top: 1px solid rgba(196, 152, 106, 0.10);
    border-bottom: 1px solid rgba(196, 152, 106, 0.10);
    padding: 40px 0;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 48px;
    text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-subtle);
}
.stat-divider { width: 1px; height: 48px; background: var(--primary-border); }

@media (max-width: 600px) {
    .stat-divider { display: none; }
    .stat-item { padding: 12px 24px; }
}

/* ==========================================================================
   PILARES / FILOSOFIA
   ========================================================================== */
.pilares-section { background: var(--bg-base); }
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    gap: 20px;
}
.pilar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    border: 1px solid rgba(196, 152, 106, 0.10);
    box-shadow: var(--shadow-xs);
    transition: var(--t-med);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.pilar-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-expo);
}
.pilar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pilar-card:hover::before { transform: scaleX(1); }

.pilar-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -2px;
    user-select: none;
}
.pilar-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); margin-bottom: 18px;
    transition: var(--t-fast);
}
.pilar-card:hover .pilar-icon { background: var(--primary); color: var(--white); }
.pilar-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-title); margin-bottom: 10px; line-height: 1.3; }
.pilar-desc { font-size: 14px; color: var(--text-muted); line-height: 1.68; }

/* ==========================================================================
   SOBRE
   ========================================================================== */
.sobre-section { background: var(--bg-warm); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.sobre-photo-frame { position: relative; max-width: 420px; margin: 0 auto; }
.sobre-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg) var(--radius-xl) var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 2;
}
.sobre-photo-accent {
    position: absolute; bottom: -18px; right: -18px;
    width: 80%; height: 80%;
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(196, 152, 106, 0.28);
    z-index: 1;
}
.sobre-photo-dot {
    position: absolute; top: -18px; left: -18px;
    width: 90px; height: 90px; border-radius: 50%;
    background: var(--gold-light);
    border: 1px dashed var(--gold);
    opacity: 0.55; z-index: 1;
}
.sobre-credential-chip {
    position: absolute; bottom: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 12px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 4; white-space: nowrap; text-align: center;
}
.credential-name { display: block; font-weight: 700; font-size: 14px; line-height: 1.2; }
.credential-crm  { display: block; font-size: 11.5px; opacity: 0.8; margin-top: 3px; }

.sobre-intro {
    font-size: 18px; font-weight: 500; font-style: italic;
    color: var(--primary); line-height: 1.58; margin-bottom: 18px;
    border-left: 3px solid var(--gold);
    padding-left: 18px;
}
.sobre-text { font-size: 15px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.78; }

/* Tags de especialidades */
.instagram-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 32px; }
.insta-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 13px;
    background: var(--gold-light);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    font-size: 12.5px; font-weight: 600; color: var(--gold-dark);
    transition: var(--t-fast);
}
.insta-tag:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* Timeline de formação */
.timeline {
    display: flex;
    flex-direction: column;
    margin: 0 0 36px;
    position: relative;
    padding-left: 36px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(196, 152, 106, 0.2));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding: 10px 0 10px 4px;
}
.timeline-item + .timeline-item { border-top: 1px solid rgba(139, 94, 107, 0.07); }

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 13px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    z-index: 1;
    flex-shrink: 0;
}
.timeline-item:last-child .timeline-dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 94, 107, 0.15);
}
.timeline-content { flex: 1; }
.timeline-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    background: var(--gold-light);
    border-radius: var(--radius-pill);
    padding: 2px 8px;
    margin-bottom: 4px;
}
.timeline-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .sobre-grid { grid-template-columns: 1fr; gap: 64px; }
    .sobre-photo-frame { max-width: 320px; }
}

/* ==========================================================================
   ESPECIALIDADES
   ========================================================================== */
.especialidades-section { background: var(--bg-base); }
.esp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.esp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    border: 1px solid rgba(196, 152, 106, 0.10);
    box-shadow: var(--shadow-xs);
    transition: var(--t-med);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.esp-card::after {
    content: '';
    position: absolute; inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease-expo);
}
.esp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-border); }
.esp-card:hover::after { transform: scaleX(1); }

.esp-icon-wrap {
    width: 52px; height: 52px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-light), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); margin-bottom: 20px;
    transition: var(--t-fast);
}
.esp-card:hover .esp-icon-wrap { background: var(--primary); color: var(--white); transform: rotate(-4deg) scale(1.08); }

.esp-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--text-title); margin-bottom: 9px; line-height: 1.28; }
.esp-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.68; flex: 1; margin-bottom: 18px; }
.esp-tag {
    align-self: flex-start;
    font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gold);
    background: var(--gold-light);
    border: 1px solid var(--gold-border);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

@media (max-width: 540px) { .esp-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   GALERIA
   ========================================================================== */
.galeria-section { background: var(--bg-warm); }
.photo-grid { columns: 3 240px; column-gap: 14px; }
.photo-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative; cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--t-med);
}
.photo-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.photo-item img { width: 100%; display: block; transition: transform 0.6s var(--ease-expo); }
.photo-item:hover img { transform: scale(1.05); }
.photo-caption {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(107, 67, 82, 0.85) 0%, rgba(107, 67, 82, 0.05) 60%, transparent 100%);
    display: flex; align-items: flex-end;
    padding: 18px 16px;
    opacity: 0; transition: opacity 0.4s ease;
}
.photo-item:hover .photo-caption { opacity: 1; }
.photo-caption span { font-size: 13.5px; font-weight: 600; color: var(--white); font-family: var(--font-display); font-style: italic; }

@media (max-width: 768px) { .photo-grid { columns: 2 140px; } }
@media (max-width: 440px) { .photo-grid { columns: 1; } }

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.depoimentos-section { background: var(--bg-base); }
.depo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.depo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    border: 1px solid rgba(196, 152, 106, 0.10);
    box-shadow: var(--shadow-xs);
    transition: var(--t-med);
    position: relative;
}
.depo-card::before {
    content: '\201C';
    position: absolute; top: 16px; right: 22px;
    font-family: var(--font-display);
    font-size: 72px; font-weight: 700;
    color: var(--primary-light);
    line-height: 1; user-select: none;
}
.depo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.depo-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.depo-stars svg { color: #F5BE50; }
.depo-text { font-size: 14.5px; color: var(--text-body); line-height: 1.72; margin-bottom: 22px; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--bg-warm); }
.depo-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--primary);
    flex-shrink: 0;
}
.depo-author-info strong { display: block; font-size: 13.5px; color: var(--text-title); font-weight: 700; }
.depo-author-info span  { font-size: 12px; color: var(--text-subtle); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--bg-warm); }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 56px;
    align-items: start;
}
.faq-col { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 152, 106, 0.12);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--primary-border); box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-title);
    line-height: 1.45;
    transition: color 0.2s ease;
}
.faq-question span:first-child { flex: 1; }
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    margin-top: 1px;
    transition: transform 0.35s var(--ease-expo), background 0.25s ease;
}
.faq-item.open .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-expo);
}
.faq-answer p {
    padding: 0 20px 18px;
    padding-top: 14px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
    border-top: 1px solid var(--bg-warm);
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-cta {
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.faq-cta p { font-size: 15.5px; color: var(--text-muted); font-weight: 500; }

@media (max-width: 840px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   INSTAGRAM STRIP
   ========================================================================== */
.instagram-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #A87080 100%);
    padding: 80px 0; position: relative; overflow: hidden;
}
.instagram-strip::before {
    content: ''; position: absolute;
    width: 420px; height: 420px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
    top: -120px; right: -120px;
}
.instagram-strip::after {
    content: ''; position: absolute;
    width: 260px; height: 260px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    bottom: -70px; left: -70px;
}
.instagram-strip-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.ig-strip-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ig-handle { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 6px; }
.ig-followers { font-size: 12.5px; color: rgba(255,255,255,0.6); padding: 4px 12px; background: rgba(255,255,255,0.10); border-radius: var(--radius-pill); }
.ig-strip-text h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 40px); font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.ig-strip-text p { color: rgba(255,255,255,0.72); font-size: 15.5px; max-width: 420px; }

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contato-section { background: var(--bg-base); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contato-lead { font-size: 16px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.72; }
.contato-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contato-item { display: flex; gap: 16px; align-items: flex-start; }
.contato-item-icon {
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.contato-item-label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.8px;
    color: var(--text-subtle); margin-bottom: 5px;
}
.contato-item > div { display: flex; flex-direction: column; }
.contato-item-value {
    font-size: 15px; font-weight: 600;
    color: var(--text-title); line-height: 1.45;
    display: block;
}
a.contato-item-value:hover { color: var(--primary); }

.mapa-card {
    display: block; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(196, 152, 106, 0.15);
    box-shadow: var(--shadow-sm);
    transition: var(--t-med);
}
.mapa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mapa-visual { position: relative; overflow: hidden; height: 220px; background: var(--bg-warm); }
.mapa-visual svg { height: 100%; object-fit: cover; }
.mapa-badge {
    position: absolute; bottom: 14px; right: 14px;
    background: var(--primary); color: var(--white);
    padding: 8px 14px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    box-shadow: var(--shadow-sm);
}
.mapa-footer { padding: 18px 20px; background: var(--white); }
.mapa-footer strong { display: block; font-size: 14.5px; color: var(--text-title); margin-bottom: 4px; }
.mapa-footer p { font-size: 13px; color: var(--text-muted); }

@media (max-width: 900px) { .contato-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--bg-dark); color: var(--text-on-dark); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-name { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.50); line-height: 1.65; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
    width: 38px; height: 38px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--t-fast);
}
.footer-social-btn:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--t-fast); }
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-link-plain { font-size: 13.5px; color: rgba(255,255,255,0.45); }

.footer-bottom { padding: 24px 0; display: flex; flex-direction: column; gap: 6px; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-disclaimer { font-size: 11.5px; color: rgba(255,255,255,0.22); }

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   CTA FLUTUANTE WHATSAPP
   ========================================================================== */
.wpp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    display: flex; align-items: center; gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
    font-size: 13.5px; font-weight: 700;
    transition: var(--t-fast);
    opacity: 0; transform: translateY(20px);
    animation: wpp-enter 0.6s 1.2s var(--ease-expo) forwards;
}
@keyframes wpp-enter { to { opacity: 1; transform: translateY(0); } }
.wpp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45); }
.wpp-float-label { white-space: nowrap; }

@media (max-width: 480px) {
    .wpp-float { padding: 13px 16px; }
    .wpp-float-label { display: none; }
}

/* ==========================================================================
   PERFORMANCE MOBILE — desativa efeitos pesados em telas pequenas
   ========================================================================== */
@media (max-width: 768px) {
    /* Remove animações de blob (CPU-heavy) */
    .hero-blob { animation: none; filter: blur(48px); }

    /* Remove animações de float nos cards da hero */
    .float-card { animation: none; }

    /* Remove ring-pulse */
    .hero-photo-ring { animation: none; }

    /* Remove pulse-dot */
    .hero-pill-dot { animation: none; }

    /* Desativa tilt 3D e hover de transform nos cards — evita jank */
    .esp-card:hover,
    .pilar-card:hover { transform: none; }

    /* Reveal mais simples (sem transform, só opacity) */
    .reveal {
        transform: none;
        transition: opacity 0.5s ease;
    }
    .reveal.in-view { opacity: 1; }

    /* Reduce section gap */
    :root { --section-gap: 64px; }

    /* Hero mais compacto */
    .hero-inner { padding: 40px 0 56px; gap: 36px; }

    /* Stats: wrap em 2 colunas */
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
    .stat-divider { display: none; }
    .stat-item { padding: 14px 16px; }

    /* Sobre: sem gap excessivo */
    .sobre-grid { gap: 48px; }

    /* Galeria: 2 colunas fixas */
    .photo-grid { columns: 2; column-gap: 10px; }
    .photo-item { margin-bottom: 10px; }
    .photo-item:hover { transform: none; }

    /* FAQ: coluna única */
    .faq-grid { grid-template-columns: 1fr; }

    /* Depoimentos: coluna única */
    .depo-grid { grid-template-columns: 1fr; }

    /* Footer: coluna única */
    .footer-top { grid-template-columns: 1fr; gap: 32px; }

    /* WhatsApp flutuante: só ícone */
    .wpp-float { bottom: 20px; right: 16px; padding: 12px 14px; }
    .wpp-float-label { display: none; }
}

@media (max-width: 480px) {
    /* Hero foto: quadrada */
    .hero-photo { border-radius: 20px; aspect-ratio: 1; }
    .hero-photo-ring { display: none; }

    /* Esconde cards flutuantes */
    .float-card { display: none; }

    /* Galeria: coluna única */
    .photo-grid { columns: 1; }

    /* Reduce card padding */
    .esp-card, .pilar-card, .depo-card { padding: 24px 20px; }
    .faq-question { padding: 15px 16px; }
    .faq-answer p { padding: 0 16px 16px; padding-top: 12px; }

    /* Timeline: menos padding */
    .timeline { padding-left: 28px; }
    .timeline-dot { left: -25px; }

    /* Instagram strip: padding menor */
    .instagram-strip { padding: 56px 0; }
    .instagram-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* Respeita preferência de movimento reduzido do usuário */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
