/* ============================================
   ODONTOSSISTÊMICA - DESIGN SYSTEM PREMIUM
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Brand */
    --navy: #0c2d48;
    --navy-deep: #081f31;
    --navy-soft: #1b4866;

    /* Accent (medical teal) */
    --teal: #4a9aaa;
    --teal-dark: #38818f;
    --teal-deep: #2a6470;
    --mint: #b8d8de;
    --mint-light: #e0f0f3;

    /* Premium accent */
    --gold: #c9a978;
    --gold-soft: #e3cca4;

    /* Neutrals */
    --dark: #2b3435;
    --gray: #6b7374;
    --gray-light: #95a0a1;
    --line: #e8eef0;

    /* Backgrounds */
    --white: #ffffff;
    --bg: #f7fafa;
    --bg-alt: #f0f7f8;
    --bg-cream: #faf7f1;
    --bg-cool: #ecf3f6;
    --bg-cool-soft: #f3f8fa;
    --navy-strong: #0a2540;

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(12, 45, 72, 0.06);
    --shadow-md: 0 8px 32px rgba(12, 45, 72, 0.1);
    --shadow-lg: 0 20px 60px rgba(12, 45, 72, 0.12);
    --shadow-xl: 0 30px 80px rgba(12, 45, 72, 0.18);
    --shadow-glow: 0 8px 32px rgba(74, 154, 170, 0.28);
    --shadow-gold: 0 8px 32px rgba(201, 169, 120, 0.25);

    /* Radius */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Motion */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --transition: 0.4s cubic-bezier(.4, 0, .2, 1);
    --transition-slow: 0.6s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    background: var(--bg-cool);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar { background: var(--navy-deep); padding: 8px 0; position: relative; z-index: 1100; font-size: .82rem; }
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-info {
    display: flex;
    gap: 24px;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}
.topbar-info span,
.topbar-info a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    transition: color .3s;
}
.topbar-info a:hover { color: var(--mint); }
.topbar-info i { color: var(--teal); font-size: .85rem; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
    color: rgba(255, 255, 255, 0.55);
    transition: color .3s;
    font-size: .9rem;
}
.topbar-social a:hover { color: var(--mint); }

/* ============================================
   NAVBAR
   ============================================ */
.header { position: sticky; top: 0; left: 0; width: 100%; z-index: 1000; padding: 14px 0; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all var(--transition); border-bottom: 1px solid rgba(12,45,72,0.06); }
.header.scrolled { background: rgba(255, 255, 255, 0.98); padding: 8px 0; box-shadow: var(--shadow-sm); border-bottom-color: transparent; }
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 40px; width: auto; transition: transform var(--transition); }


.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a { color: var(--dark); font-size: .92rem; font-weight: 500; position: relative; transition: color .3s; }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--teal);
    transition: width .35s var(--ease);
    border-radius: 1px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--teal); }



.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--teal);
    color: #fff !important;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: all var(--transition);
    flex-shrink: 0;
}
.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.nav-cta::after { display: none !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--dark); font-size: 1.4rem; padding: 8px; }
.header.scrolled .menu-toggle { color: var(--dark); }

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(8, 31, 49, 0.6);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}
.mobile-overlay.active { display: block; opacity: 1; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(.94); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .15s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .25s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .35s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: .45s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: .55s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(7) { transition-delay: .65s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(8) { transition-delay: .75s; opacity: 1; transform: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-deep);
}
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(12, 45, 72, 0.72) 0%, rgba(8, 31, 49, 0.85) 50%, rgba(42, 100, 112, 0.72) 100%),
        radial-gradient(ellipse at 70% 30%, rgba(74, 154, 170, 0.18) 0%, transparent 60%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1100px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(184, 216, 222, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1s .3s forwards;
}
.hero-badge i { color: var(--teal); }
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 1s .5s forwards;
}
.hero h1 em {
    font-style: italic;
    color: var(--mint);
    font-weight: 400;
}
.hero p {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: rgba(255, 255, 255, 0.96);
    max-width: 640px;
    margin: 0 auto 42px;
    line-height: 1.85;
    opacity: 0;
    animation: fadeUp 1s .7s forwards;
}
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s .9s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: .98rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--teal);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(74, 154, 170, 0.4);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
    border-color: var(--mint);
    color: var(--mint);
    transform: translateY(-3px);
}
.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: #b8985f;
    transform: translateY(-3px);
}

.scroll-ind {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
}
.scroll-ind span {
    font-size: .7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--mint), transparent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: .3; transform: scaleY(.6); }
    50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 130px 0; position: relative; }
.section-dark {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a52 100%);
    color: #fff;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(74, 154, 170, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.section-dark::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184, 216, 222, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.section-cream { background: var(--bg-cream); }

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.section-header.left {
    text-align: left;
    margin-left: 0;
}
.section-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}
.section-dark .section-label { color: var(--mint); }
.section-header h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    color: var(--navy);
    margin-bottom: 18px;
}
.section-dark .section-header h2 { color: #fff; }
.section-header h2 em {
    font-style: italic;
    color: var(--teal);
}
.section-dark .section-header h2 em { color: var(--mint); }
.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}
.section-dark .section-header p { color: rgba(255, 255, 255, 0.65); }

/* Pill badge (replaces old hero-badge inside sections) */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(74, 154, 170, 0.1);
    border: 1px solid rgba(74, 154, 170, 0.25);
    border-radius: 50px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
.section-dark .pill {
    background: rgba(184, 216, 222, 0.1);
    border-color: rgba(184, 216, 222, 0.25);
    color: var(--mint);
}
.pill i { font-size: .82rem; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 80px;
}
.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.about-img:hover img { transform: scale(1.05); }
.about-img::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: calc(var(--radius-lg) - 8px);
    pointer-events: none;
    z-index: 2;
}
.about-badge-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 22px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 3;
}
.about-badge-card .number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.6rem;
    color: var(--teal);
    line-height: 1;
}
.about-badge-card .label2 {
    font-size: .78rem;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--navy);
    margin-bottom: 20px;
}
.about-text p {
    font-size: 1.04rem;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 20px;
}
.values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.values-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: .82rem;
    color: var(--navy);
    font-weight: 600;
    transition: all var(--transition);
}
.values-list span:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    transform: translateY(-2px);
}
.values-list i {
    color: var(--teal);
    transition: color var(--transition);
}
.values-list span:hover i { color: #fff; }

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-item {
    text-align: center;
    padding: 36px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--mint));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--navy);
    line-height: 1;
}
.stat-number .counter { color: var(--teal); }
.stat-divider {
    width: 36px;
    height: 2px;
    background: var(--mint);
    margin: 14px auto;
}
.stat-label {
    font-size: .82rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================
   SPECIALTIES
   ============================================ */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.specialty-card {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    color: #fff;
}
.specialty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 154, 170, 0.0) 0%, rgba(74, 154, 170, 0.12) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}
.specialty-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--mint));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.specialty-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 216, 222, 0.4);
    background: rgba(255, 255, 255, 0.08);
}
.specialty-card:hover::before,
.specialty-card:hover::after { opacity: 1; transform: scaleX(1); }
.specialty-card img {
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
    padding: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 3px solid rgba(184,216,222,0.35);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25), inset 0 0 0 4px rgba(255,255,255,0.05);
    filter: none;
    opacity: 1;
    transition: all var(--transition);
    display: block;
}
.specialty-card:hover img {
    transform: scale(1.06);
    border-color: var(--mint);
    box-shadow: 0 14px 36px rgba(74,154,170,0.35), inset 0 0 0 4px rgba(255,255,255,0.08);
}
.specialty-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.specialty-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: .92rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.specialties-extra {
    text-align: center;
    margin-top: 56px;
}
.specialties-extra p {
    color: rgba(255, 255, 255, 0.6);
    font-size: .98rem;
    line-height: 1.9;
}
.specialties-extra a {
    color: var(--mint);
    font-weight: 600;
    transition: color .3s;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}
.specialties-extra a:hover {
    color: #fff;
    border-bottom-color: var(--mint);
}

/* ============================================
   DIFFERENTIALS (why choose)
   ============================================ */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.diff-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.diff-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--mint));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.diff-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.diff-card:hover::after { transform: scaleX(1); }
.diff-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mint-light), var(--mint));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--teal-deep);
    font-size: 1.4rem;
    transition: all var(--transition);
}
.diff-card:hover .diff-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}
.diff-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.diff-card p {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.75;
}

/* ============================================
   TEAM
   ============================================ */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.doc-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.doc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 216, 222, 0.3);
    background: rgba(255, 255, 255, 0.06);
}
.doc-img {
    position: relative;
    overflow: hidden;
    height: 360px;
}
.doc-img::after { content: none; }
.doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .9s var(--ease);
}
.doc-card:hover .doc-img img { transform: scale(1.07); }
.doc-body {
    padding: 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.doc-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mint);
    background: rgba(184, 216, 222, 0.1);
    border: 1px solid rgba(184, 216, 222, 0.25);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 14px;
    align-self: flex-start;
}
.doc-body h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 6px;
}
.doc-body > p {
    font-size: .92rem;
    color: var(--mint);
    margin-bottom: 18px;
    font-weight: 500;
}
.doc-cv {
    margin-bottom: 24px;
    padding-left: 0;
    flex: 1;
}
.doc-cv li {
    color: rgba(255, 255, 255, 0.6);
    font-size: .85rem;
    line-height: 1.7;
    padding: 6px 0 6px 22px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.doc-cv li:last-child { border-bottom: none; }
.doc-cv li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 12px; height: 1px;
    background: var(--teal);
}
.doc-links {
    display: flex;
    gap: 12px;
    margin-top: auto;
}
.doc-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    transition: all var(--transition);
}
.doc-link:not(.doc-wa) {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}
.doc-link:not(.doc-wa):hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
}
.doc-link.doc-wa {
    background: #25D366;
    color: #fff;
}
.doc-link.doc-wa:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(12, 45, 72, 0.92) 0%, rgba(42, 100, 112, 0.85) 100%),
        url('/img/hero3.jpg') center/cover no-repeat;
    background-attachment: fixed;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 18px;
}
.cta-section h2 em {
    color: var(--mint);
    font-style: italic;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CONTACT / LOCATIONS
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--mint));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card h3 {
    font-size: 1.55rem;
    color: var(--navy);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-card h3 i {
    color: var(--teal);
    font-size: 1.2rem;
}
.contact-card > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: .98rem;
}
.contact-phone {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-phone a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 50px;
    color: var(--navy);
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--transition);
    width: fit-content;
}
.contact-phone a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateX(6px);
}
.contact-phone a i {
    color: var(--teal);
    transition: color var(--transition);
}
.contact-phone a:hover i { color: #fff; }
.contact-phone a.wa-link i { color: #25D366; }
.contact-phone a.wa-link:hover { background: #25D366; border-color: #25D366; }

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
    transition: all var(--transition);
}
.social-links a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74, 154, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.footer-top { padding: 90px 0 50px; position: relative; z-index: 1; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.7fr; gap: 48px; }
.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 22px;
}
.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: .92rem;
    line-height: 2.1;
    transition: color .3s;
}
.footer-col a:hover { color: var(--mint); }
.footer-col p i {
    color: var(--teal);
    margin-right: 8px;
    width: 14px;
}
.footer-logo { height: 60px; width: auto; margin: 0 0 18px 0; padding: 0; display: block; }
.footer-col:first-child p {
    line-height: 1.8;
    max-width: 280px;
}
.footer-col .social-links {
    justify-content: flex-start;
    margin-top: 18px;
}
.footer-col .social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: .95rem;
}
.footer-col .social-links a:hover {
    background: rgba(74, 154, 170, 0.15);
    border-color: var(--teal);
    color: var(--mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
    position: relative;
    z-index: 1;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: .82rem;
    margin: 0;
}
.ne-footer-logo {
    width: 220px;
    height: auto;
    opacity: .7;
    transition: opacity .3s;
}
.ne-footer-logo:hover { opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    .doc-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
    .doc-card { flex-direction: row; }
    .doc-img { width: 280px; flex-shrink: 0; height: auto; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .topbar-info { gap: 14px; font-size: .76rem; }
    .topbar-info span:first-child { display: none; }
    .topbar-social { gap: 10px; }

    .header { padding: 12px 0; }
    .header-inner { gap: 12px; }
    .nav-cta { display: none; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 320px; max-width: 85vw;
        height: 100vh;
        background: rgba(12, 45, 72, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 36px 40px;
        gap: 0;
        transition: right .4s var(--ease);
        z-index: 1001;
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        color: #fff !important;
        font-size: 1.05rem;
        font-weight: 500;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }
    .nav-links a:not(.nav-cta)::after { display: none; }
    .menu-toggle { display: block; z-index: 1002; }
    .header.scrolled .menu-toggle { color: var(--dark); }
    .nav-links.active ~ .menu-toggle { color: #fff; }

    .topbar { display: none; }
    .hero { height: calc(100vh - 75px); min-height: 480px; padding: 0; }
    .hero h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

    .section { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img img { height: 400px; }
    .values-list { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .specialties-grid { grid-template-columns: 1fr; }
    .doc-card { flex-direction: column; }
    .doc-img { width: 100%; height: 320px; }
    .diff-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .footer-col,
    .footer-col p,
    .footer-col a,
    .footer-col h4 { text-align: center !important; }
    .footer-col p { display: flex; align-items: center; justify-content: center; gap: 6px; line-height: 1.7; }
    .footer-col p i { margin: 0; width: auto; }
    .footer-col .social-links { justify-content: center; }
    .footer-col:first-child p { max-width: 100%; margin: 0 auto; }
    .footer-logo { margin: 0 auto 18px; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 14px; }
}

@media (max-width: 480px) {
    .topbar { padding: 6px 0; }
    .topbar-info { gap: 10px; font-size: .72rem; }
    .topbar-info span:nth-child(2) { display: none; }
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 44px; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-item { padding: 24px 14px; }
    .stat-number { font-size: 2.2rem; }
    .values-list { grid-template-columns: 1fr; }
    .about-img img { height: 320px; }
    .about-badge-card { left: 16px; bottom: 16px; padding: 16px 22px; }
    .about-badge-card .number { font-size: 2rem; }
    .doc-img { height: 280px; }
    .doc-body { padding: 26px 22px; }
    .contact-card { padding: 32px 24px; }
    .cta-section { padding: 70px 0; }
    .cta-bg { background-attachment: scroll; }
    .footer-top { padding: 60px 0 36px; }
}

@media(max-width:768px){.ne-footer-logo{width:180px}}
@media(max-width:480px){.ne-footer-logo{width:150px}}

/* === Footer text 100% white === */
.footer, .footer .footer-col, .footer .footer-col h4, .footer .footer-col p, .footer .footer-col a, .footer .footer-bottom p, .footer .footer-bottom a, .footer .footer-col .social-links a{color:#fff!important;opacity:1!important}
.footer .footer-col h4{color:#fff!important}
.footer .footer-col p i, .footer .footer-col .fas, .footer .footer-col .fab{color:var(--mint)!important}
.footer .footer-col a:hover{color:var(--mint)!important}
.footer .footer-bottom a img{opacity:1!important}

/* === Social icons - vertical center perfeito === */
.footer .social-links a, .social-links a{display:inline-flex!important;align-items:center!important;justify-content:center!important;line-height:0!important;padding:0!important}
.footer .social-links a i, .social-links a i{display:flex!important;align-items:center!important;justify-content:center!important;line-height:1!important;height:1em;width:1em;margin:0!important}

/* === Contato footer: icone e texto na mesma linha === */
.footer .footer-col:last-child p{display:flex;align-items:center;gap:8px;line-height:1.5;margin:0 0 12px 0;font-size:.88rem;white-space:nowrap}
.footer .footer-col:last-child p i{flex-shrink:0;width:auto;margin:0;font-size:.95rem}

/* === Hero centering + lift up === */
.hero-content{text-align:center!important;margin-left:auto!important;margin-right:auto!important;width:100%;margin-top:-180px}
.hero-content .hero-badge,.hero-content h1,.hero-content p,.hero-content .hero-btns{margin-left:auto!important;margin-right:auto!important;text-align:center!important}
.hero-content .hero-btns{justify-content:center!important}
.scroll-ind{left:50%!important;right:auto!important;transform:translateX(-50%)!important;text-align:center}
@media(max-width:768px){.hero{display:flex!important;align-items:center!important;justify-content:center!important}.hero-content{margin-top:-60px!important;margin-bottom:0!important}.scroll-ind{display:none!important}.hide-mobile{display:none!important}}

/* ============================================
   INTERNAL PAGES (atm, estetica, ortodontia...)
   ============================================ */
.page-hero {
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(74,154,170,0.10) 0%, transparent 60%),
        linear-gradient(180deg, #dde9ee 0%, #ecf3f6 100%);
    padding: 56px 0 44px;
    position: relative;
    overflow: hidden;
    color: var(--navy-strong);
    border-bottom: 1px solid rgba(12,45,72,0.08);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: .78rem;
    color: rgba(12,45,72,0.55);
    flex-wrap: wrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.breadcrumb a {
    color: var(--teal-deep);
    transition: color .25s;
    font-weight: 500;
}
.breadcrumb a:hover { color: var(--navy-strong); }
.breadcrumb span { color: rgba(12,45,72,0.30); font-weight: 300; }
.breadcrumb > span:last-child { color: var(--navy-strong); font-weight: 600; letter-spacing: 0.05em; }
.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.012em;
    color: var(--navy-strong);
    margin: 0 0 14px 0;
    max-width: 720px;
}
.page-hero h1 em {
    font-style: italic;
    color: var(--teal-deep);
    font-weight: 400;
}
.page-hero p {
    font-size: 1rem;
    color: rgba(12,45,72,0.72);
    max-width: 620px;
    line-height: 1.65;
    margin: 0;
}

.content-section {
    padding: 90px 0;
    background: var(--white);
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}
.content-main {
    min-width: 0;
}
.content-img {
    margin: 0 0 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.content-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.content-img.has-photo {
    padding: 0;
    aspect-ratio: 16/9;
    background: var(--bg-alt);
    position: relative;
    box-shadow: var(--shadow-lg);
}
.content-img.has-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(8,31,49,0.45) 100%);
    pointer-events: none;
}
.content-img.has-photo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s var(--ease);
}
.content-img.has-photo:hover img { transform: scale(1.04); }
.content-main h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    color: var(--navy);
    margin: 40px 0 18px;
    line-height: 1.25;
}
.content-main h2:first-of-type { margin-top: 0; }
.content-main h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin: 28px 0 14px;
}
.content-main p {
    color: var(--gray);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 18px;
}
.content-main ul:not(.doc-cv) {
    margin: 0 0 22px 0;
    padding-left: 0;
    list-style: none;
}
.content-main ul:not(.doc-cv) li {
    color: var(--gray);
    font-size: 1.02rem;
    line-height: 1.85;
    padding: 8px 0 8px 28px;
    position: relative;
}
.content-main ul:not(.doc-cv) li::before {
    content: '';
    position: absolute;
    left: 0; top: 18px;
    width: 14px; height: 1px;
    background: var(--teal);
}

/* Treatments grid */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 28px 0 36px;
}
.treatment-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.treatment-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--mint));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.treatment-card:hover::after { transform: scaleX(1); }
.treatment-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.treatment-card .card-body {
    padding: 22px 24px 26px;
    flex: 1;
}
.treatment-card h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.18rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.3;
}
.treatment-card p {
    color: var(--gray);
    font-size: .92rem;
    line-height: 1.7;
    margin: 0;
}

/* Aside / Sidebar */
.content-grid aside {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-size: .94rem;
    font-weight: 500;
    transition: all var(--transition);
}
.sidebar-nav a i {
    color: var(--teal);
    width: 18px;
    text-align: center;
    font-size: .95rem;
    transition: color var(--transition);
}
.sidebar-nav a:hover {
    background: var(--bg-alt);
    color: var(--teal);
    transform: translateX(4px);
}
.sidebar-nav a.active {
    background: var(--teal);
    color: #fff;
}
.sidebar-nav a.active i { color: #fff; }

.sidebar-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius);
    padding: 32px 28px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sidebar-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(74,154,170,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.sidebar-cta > * { position: relative; z-index: 1; }
.sidebar-cta h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
    padding-bottom: 0;
    font-weight: 400;
}
.sidebar-cta p {
    color: rgba(255,255,255,0.75);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 22px;
}
.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: .92rem;
}
.sidebar-cta .btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    margin-top: 10px !important;
}

/* CTA section in inner pages */
section.content-section + section.cta-section {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(12, 45, 72, 0.92) 0%, rgba(42, 100, 112, 0.85) 100%),
        url('/img/hero3.jpg') center/cover no-repeat;
    background-attachment: fixed;
}
@media (max-width: 768px) {
    section.content-section + section.cta-section { background-attachment: scroll; }
}

@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; gap: 40px; }
    .content-grid aside { position: static; }
    .treatments-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .page-hero { padding: 40px 0 32px; }
    .content-section { padding: 60px 0; }
    .treatments-grid { grid-template-columns: 1fr; gap: 18px; }
    .content-img { padding: 24px; }
    .content-img img { max-width: 100%; }
}


/* ============================================
   EQUIPE PAGE - REDESIGN PREMIUM 2026
   ============================================ */

/* Hero da página equipe - variant mais elaborada */
.page-hero.team-hero {
    padding: 70px 0 90px;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(74,154,170,0.16) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,169,120,0.10) 0%, transparent 60%),
        linear-gradient(180deg, #dde9ee 0%, #ecf3f6 100%);
}
.team-hero::after { display: none; }
.team-hero .container { max-width: 1100px; }
.team-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(74,154,170,0.12);
    border: 1px solid rgba(12,45,72,0.12);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 22px;
}
.team-hero-eyebrow i { color: var(--gold); }
.team-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    max-width: 900px;
    color: var(--navy-strong);
}
.team-hero h1 em {
    font-style: italic;
    color: var(--teal-deep);
}
.team-hero-lead {
    font-size: 1.15rem;
    color: rgba(12,45,72,0.75);
    max-width: 640px;
    line-height: 1.7;
}

/* Stats bar */
.team-stats {
    background: var(--white);
    margin: -50px auto 0;
    max-width: 1080px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 42px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(184,216,222,0.4);
}
.team-stat {
    text-align: center;
    padding: 0 10px;
    position: relative;
}
.team-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.team-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--navy);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.team-stat-num span { font-size: 1.6rem; vertical-align: super; color: var(--gold); -webkit-text-fill-color: var(--gold); }
.team-stat-label {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    font-weight: 600;
}

/* Section principal */
.team-section {
    padding: 100px 0 80px;
    background: var(--white);
    position: relative;
}
.team-intro {
    max-width: 720px;
    margin: 0 auto 80px;
    text-align: center;
}
.team-intro .section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 14px;
}
.team-intro h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
}
.team-intro h2 em { font-style: italic; color: var(--teal-dark); }
.team-intro p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Cards de equipe - layout zigzag */
.team-cards {
    display: flex;
    flex-direction: column;
    gap: 110px;
    max-width: 1180px;
    margin: 0 auto;
}
.team-card {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.team-card:nth-child(even) {
    grid-template-columns: 1.4fr 0.85fr;
}
.team-card:nth-child(even) .team-card-photo { order: 2; }
.team-card:nth-child(even) .team-card-info { order: 1; }

/* Foto com frame artístico */
.team-card-photo {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 320px;
    width: 100%;
    justify-self: center;
}
.team-card-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translate(14px, 14px);
    border: 2px solid var(--teal);
    border-radius: var(--radius-lg);
    z-index: 0;
    transition: transform .5s var(--ease);
}
.team-card-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translate(-12px, -12px);
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.55;
    transition: transform .5s var(--ease);
}
.team-card:hover .team-card-photo::before { transform: translate(20px, 20px); }
.team-card:hover .team-card-photo::after { transform: translate(-18px, -18px); }
.team-card-photo .photo-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--bg-alt);
}
.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .8s var(--ease);
}
.team-card:hover .team-card-photo img { transform: scale(1.05); }

/* Numero decorativo */
.team-card-num {
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: 'DM Serif Display', serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--mint-light);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    -webkit-text-stroke: 1px var(--mint);
    color: transparent;
}
.team-card:nth-child(even) .team-card-num {
    left: auto;
    right: -10px;
}

/* Info */
.team-card-info {
    padding: 12px 0;
}
.team-card-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--mint-light), #fff);
    border: 1px solid var(--mint);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 16px;
}
.team-card-role.gold {
    background: linear-gradient(135deg, #faf3e6, #fff);
    border-color: var(--gold-soft);
    color: #8b6f3a;
}
.team-card-role i { font-size: .85rem; }

.team-card-name {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.team-card-credentials {
    font-size: .92rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.team-card-credentials::before,
.team-card-credentials::after {
    content: '';
    flex: 0 0 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.team-card-credentials::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }

.team-card-quote {
    position: relative;
    padding: 22px 26px 22px 30px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--mint-light) 100%);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--teal);
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--dark);
    font-style: italic;
}
.team-card-quote::before {
    content: '\201C';
    position: absolute;
    top: -22px;
    left: 12px;
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    color: var(--teal);
    opacity: 0.25;
    line-height: 1;
}

/* Pills de áreas de atuação */
.team-card-areas {
    margin-bottom: 28px;
}
.team-card-areas h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.team-card-areas h4::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--teal);
}
.team-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.team-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: .85rem;
    color: var(--dark);
    font-weight: 500;
    transition: all .3s var(--ease);
    cursor: default;
}
.team-pill:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.team-pill i {
    color: var(--teal);
    font-size: .75rem;
    transition: color .3s;
}
.team-pill:hover i { color: var(--gold-soft); }

/* Actions */
.team-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.team-card-actions .btn { padding: 13px 24px; font-size: .92rem; }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border: 1.5px solid var(--line);
    color: var(--navy);
    background: transparent;
    border-radius: 100px;
    font-weight: 600;
    font-size: .92rem;
    transition: all .3s var(--ease);
}
.btn-ghost:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

/* Section Filosofia */
.team-philosophy {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.team-philosophy::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--mint-light) 0%, transparent 70%);
    pointer-events: none;
}
.team-philosophy::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,169,120,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.team-philosophy .container { position: relative; z-index: 1; }
.philosophy-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.philosophy-head .section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 14px;
}
.philosophy-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.philosophy-head h2 em { font-style: italic; color: var(--teal-dark); }
.philosophy-head p { color: var(--gray); line-height: 1.8; }

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.philosophy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    border: 1px solid var(--line);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.philosophy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}
.philosophy-card:hover::before { transform: scaleX(1); }
.philosophy-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--bg-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 1.3rem;
    margin-bottom: 22px;
    transition: all .4s var(--ease);
}
.philosophy-card:hover .philosophy-icon {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-deep) 100%);
    color: var(--gold-soft);
    transform: rotate(-6deg) scale(1.05);
}
.philosophy-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}
.philosophy-card p {
    color: var(--gray);
    font-size: .96rem;
    line-height: 1.7;
}

/* CTA equipe */
.team-cta {
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(74,154,170,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,169,120,0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.team-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
}
.team-cta .container { position: relative; z-index: 1; max-width: 760px; }
.team-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}
.team-cta h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.team-cta p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    margin-bottom: 32px;
}
.team-cta .hero-btns { justify-content: center; }

/* Responsive */
@media (max-width: 980px) {
    .team-hero { padding: 90px 0 70px; }
    .team-stats { grid-template-columns: repeat(2, 1fr); padding: 32px 28px; gap: 28px 20px; margin-top: -40px; }
    .team-stat:nth-child(2)::after { display: none; }
    .team-card,
    .team-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .team-card:nth-child(even) .team-card-photo { order: 1; }
    .team-card:nth-child(even) .team-card-info { order: 2; }
    .team-card-photo { max-width: 280px; }
    .team-cards { gap: 80px; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 640px) {
    .team-hero { padding: 70px 0 60px; }
    .team-hero h1 { font-size: 2rem; }
    .team-stats { grid-template-columns: 1fr 1fr; padding: 24px 18px; gap: 18px 12px; }
    .team-stat-num { font-size: 2.2rem; }
    .team-stat:nth-child(odd):not(:last-child)::after { display: none; }
    .team-section { padding: 70px 0 60px; }
    .team-cards { gap: 60px; }
    .team-card-num { font-size: 5rem; top: -18px; }
    .team-card-photo { max-width: 100%; }
    .team-card-photo::before { transform: translate(12px, 12px); }
    .team-card-photo::after { transform: translate(-10px, -10px); }
    .team-card-quote { padding: 18px 18px 18px 22px; font-size: .95rem; }
    .team-card-quote::before { font-size: 4rem; top: -16px; }
    .team-philosophy { padding: 70px 0; }
    .philosophy-card { padding: 30px 24px; }
    .team-cta { padding: 70px 0; }
    .team-cta .hero-btns { flex-direction: column; }
    .team-cta .hero-btns .btn { width: 100%; justify-content: center; }
}


/* ============================================
   CONTATO PAGE - REDESIGN PREMIUM 2026
   ============================================ */

/* Hero contato - variant igual equipe */
.page-hero.contact-hero {
    padding: 70px 0 90px;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(74,154,170,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,169,120,0.10) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a52 100%);
}
.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
}
.contact-hero .container { max-width: 1100px; }
.contact-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    max-width: 900px;
}
.contact-hero h1 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft) 0%, var(--gold) 60%, var(--mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.contact-hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    line-height: 1.7;
}
.contact-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(74,154,170,0.18);
    border: 1px solid rgba(184,216,222,0.28);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-light);
    margin-bottom: 22px;
}
.contact-hero-eyebrow i { color: var(--gold); }

/* Quick contact bar (overlap no hero) */
.contact-quick {
    background: var(--white);
    margin: -50px auto 0;
    max-width: 1080px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 32px 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(184,216,222,0.4);
}
.quick-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 8px;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform .3s var(--ease);
}
.quick-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.quick-item:hover { transform: translateY(-3px); }
.quick-icon {
    flex-shrink: 0;
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mint-light), var(--bg-alt));
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark);
    font-size: 1.15rem;
    transition: all .35s var(--ease);
}
.quick-item:hover .quick-icon {
    background: linear-gradient(135deg, var(--navy), var(--teal-deep));
    color: var(--gold-soft);
}
.quick-text { min-width: 0; }
.quick-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    font-weight: 700;
    margin-bottom: 2px;
}
.quick-value {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Section unidades */
.contact-units-section {
    padding: 100px 0 80px;
    background: var(--white);
}
.contact-section-head {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}
.contact-section-head .section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 14px;
}
.contact-section-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
}
.contact-section-head h2 em { font-style: italic; color: var(--teal-dark); }
.contact-section-head p { color: var(--gray); font-size: 1.05rem; line-height: 1.8; }

.units-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 1180px;
    margin: 0 auto;
}
.unit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    position: relative;
}
.unit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}
.unit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
    z-index: 2;
}
.unit-card:hover::before { transform: scaleX(1); }

.unit-map {
    height: 240px;
    width: 100%;
    background: var(--bg-alt);
    position: relative;
}
.unit-map iframe {
    width: 100%; height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.95) contrast(1.02);
}
.unit-body { padding: 32px 30px 30px; }
.unit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--mint-light), #fff);
    border: 1px solid var(--mint);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 14px;
}
.unit-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.7rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 14px;
}
.unit-address {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--gray);
    line-height: 1.6;
    font-size: .95rem;
}
.unit-address i {
    flex-shrink: 0;
    color: var(--teal-dark);
    font-size: 1rem;
    margin-top: 4px;
}
.unit-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px dashed var(--line);
}
.unit-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: 12px;
    color: var(--dark);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: all .3s var(--ease);
}
.unit-contact i {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark);
    transition: all .3s var(--ease);
}
.unit-contact.wa i { color: #25d366; }
.unit-contact:hover {
    background: var(--navy);
    color: #fff;
    transform: translateX(4px);
}
.unit-contact:hover i { background: var(--teal-deep); color: #fff; }
.unit-contact.wa:hover { background: #128c7e; }
.unit-contact.wa:hover i { background: #25d366; color: #fff; }

/* Form section */
.contact-form-section {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-alt) 100%);
    position: relative;
    overflow: hidden;
}
.contact-form-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--mint-light) 0%, transparent 70%);
    pointer-events: none;
}
.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,169,120,0.16) 0%, transparent 70%);
    pointer-events: none;
}

.form-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.form-side {
    padding: 36px 32px;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.form-side::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(74,154,170,0.35) 0%, transparent 70%);
}
.form-side::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(201,169,120,0.22) 0%, transparent 70%);
}
.form-side > * { position: relative; z-index: 1; }
.form-side .section-eyebrow {
    display: inline-block;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-soft);
    font-weight: 700;
    margin-bottom: 14px;
}
.form-side h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #fff;
}
.form-side h3 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.form-side > p {
    color: rgba(255,255,255,0.78);
    font-size: .98rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.form-side-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}
.form-side-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255,255,255,0.92);
    font-size: .92rem;
    line-height: 1.55;
}
.form-side-item i {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(74,154,170,0.22);
    border: 1px solid rgba(184,216,222,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-soft);
    font-size: .92rem;
}
.form-side-item strong { display: block; color: #fff; margin-bottom: 2px; font-weight: 600; }

.form-side-socials {
    display: flex;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.form-side-socials a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85);
    transition: all .3s var(--ease);
}
.form-side-socials a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Form */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px 40px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}
.form-card-head { margin-bottom: 28px; }
.form-card-head h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 8px;
}
.form-card-head h3 em { font-style: italic; color: var(--teal-dark); }
.form-card-head p { color: var(--gray); font-size: .96rem; line-height: 1.65; }

.modern-form { display: grid; gap: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.field label i { color: var(--teal-dark); font-size: .82rem; }
.field label .required { color: var(--gold); font-weight: 700; }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-size: .98rem;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    transition: all .3s var(--ease);
    appearance: none;
    -webkit-appearance: none;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: var(--mint);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(74,154,170,0.12);
    background: var(--white);
}
.field input::placeholder,
.field textarea::placeholder {
    color: var(--gray-light);
}
.field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%234a9aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}
.form-submit {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.form-note {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}
.form-note i { color: var(--teal); margin-right: 4px; }
.modern-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-deep) 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all .35s var(--ease);
    font-family: inherit;
    box-shadow: var(--shadow-glow);
}
.modern-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--navy) 100%);
}
.modern-form .btn-submit i { transition: transform .35s var(--ease); }
.modern-form .btn-submit:hover i { transform: translateX(4px); }

/* CTA contato */
.contact-cta {
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(74,154,170,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,169,120,0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 90px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
}
.contact-cta .container { position: relative; z-index: 1; max-width: 760px; }
.contact-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.contact-cta h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.contact-cta p {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 980px) {
    .contact-hero { padding: 90px 0 70px; }
    .contact-quick {
        grid-template-columns: 1fr 1fr;
        padding: 28px 24px;
        gap: 24px 18px;
        margin-top: -40px;
    }
    .quick-item:nth-child(2)::after { display: none; }
    .units-grid { grid-template-columns: 1fr; gap: 26px; }
    .form-wrap { grid-template-columns: 1fr; gap: 30px; }
    .form-side { padding: 32px 26px; }
}
@media (max-width: 640px) {
    .contact-hero { padding: 70px 0 60px; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-quick {
        grid-template-columns: 1fr;
        padding: 22px 20px;
        gap: 16px;
    }
    .quick-item::after { display: none !important; }
    .contact-units-section { padding: 70px 0 50px; }
    .unit-body { padding: 26px 22px 24px; }
    .unit-name { font-size: 1.45rem; }
    .form-row { grid-template-columns: 1fr; gap: 18px; }
    .form-card { padding: 32px 22px; }
    .form-side { padding: 28px 22px; }
    .contact-form-section { padding: 60px 0 80px; }
    .contact-cta { padding: 70px 0; }
    .form-submit { flex-direction: column; align-items: stretch; }
    .modern-form .btn-submit { justify-content: center; width: 100%; }
}


/* ============================================
   ESPECIALIDADES PAGE - REDESIGN PREMIUM 2026
   ============================================ */

.page-hero.specialties-hero {
    padding: 70px 0 90px;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(74,154,170,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,169,120,0.10) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a52 100%);
}
.specialties-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
}
.specialties-hero .container { max-width: 1100px; }
.specialties-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(74,154,170,0.18);
    border: 1px solid rgba(184,216,222,0.28);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-light);
    margin-bottom: 22px;
}
.specialties-hero-eyebrow i { color: var(--gold); }
.specialties-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    max-width: 900px;
}
.specialties-hero h1 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft) 0%, var(--gold) 60%, var(--mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.specialties-hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    line-height: 1.7;
}

/* Stats overlap */
.specialties-stats {
    background: var(--white);
    margin: -50px auto 0;
    max-width: 1080px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 32px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(184,216,222,0.4);
}
.spec-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}
.spec-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 8%;
    height: 84%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.spec-stat-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mint-light), var(--bg-alt));
    color: var(--teal-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.spec-stat-text { min-width: 0; }
.spec-stat-text strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}
.spec-stat-text span {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    font-weight: 600;
}

/* Section principal */
.specialties-section {
    padding: 100px 0 80px;
    background: var(--white);
    position: relative;
}
.specialties-intro {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}
.specialties-intro .section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 14px;
}
.specialties-intro h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
}
.specialties-intro h2 em { font-style: italic; color: var(--teal-dark); }
.specialties-intro p { color: var(--gray); font-size: 1.05rem; line-height: 1.8; }

/* Grid de especialidades - design premium */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
    max-width: 1280px;
    margin: 0 auto;
}
.spec-grid > a:nth-child(1),
.spec-grid > a:nth-child(2) {
    grid-column: span 3;
}
.spec-grid > a:nth-child(n+3) {
    grid-column: span 2;
}
.spec-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: all .5s var(--ease);
    display: flex;
    flex-direction: column;
    min-height: 360px;
}
.spec-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-alt);
}
.spec-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.spec-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8,31,49,0.55) 100%);
    opacity: 0;
    transition: opacity .5s var(--ease);
}
.spec-card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-family: 'DM Serif Display', serif;
    font-size: .9rem;
    color: var(--navy);
    z-index: 2;
    border: 1px solid rgba(184,216,222,0.5);
}
.spec-card-num em { color: var(--gold); font-style: normal; font-weight: 600; }
.spec-card-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: all .4s var(--ease);
    z-index: 2;
    font-size: .92rem;
}
.spec-card:hover .spec-card-arrow {
    transform: rotate(0);
    background: var(--gold);
    color: var(--navy-deep);
}
.spec-card:hover .spec-card-img img { transform: scale(1.08); }
.spec-card:hover .spec-card-img::after { opacity: 1; }

.spec-card-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.spec-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mint-light), var(--bg-alt));
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: -50px;
    margin-bottom: 4px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    z-index: 3;
    position: relative;
}
.spec-card:hover .spec-card-icon {
    background: linear-gradient(135deg, var(--navy), var(--teal-deep));
    color: var(--gold-soft);
    transform: rotate(-6deg) scale(1.05);
}
.spec-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.25;
    margin: 0;
}
.spec-card p {
    color: var(--gray);
    font-size: .94rem;
    line-height: 1.65;
    margin: 0;
}
.spec-card-cta {
    margin-top: auto;
    padding-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap .3s var(--ease), color .3s var(--ease);
}
.spec-card:hover .spec-card-cta {
    color: var(--navy);
    gap: 14px;
}
.spec-card-cta i { font-size: .8rem; }

/* Highlight cards (primeiros 2 maiores) */
.spec-grid > a:nth-child(1) .spec-card-img,
.spec-grid > a:nth-child(2) .spec-card-img {
    aspect-ratio: 3/2;
}
.spec-grid > a:nth-child(1) .spec-card h3,
.spec-grid > a:nth-child(2) .spec-card h3 {
    font-size: 1.7rem;
}

/* Differential section */
.spec-differential {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.spec-differential::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--mint-light) 0%, transparent 70%);
    pointer-events: none;
}
.spec-differential::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,169,120,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.spec-differential .container { position: relative; z-index: 1; }
.diff-head {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}
.diff-head .section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 14px;
}
.diff-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.diff-head h2 em { font-style: italic; color: var(--teal-dark); }
.diff-head p { color: var(--gray); line-height: 1.8; }

.spec-differential .diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}
.spec-differential .diff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 1px solid var(--line);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.spec-differential .diff-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.spec-differential .diff-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}
.spec-differential .diff-card:hover::before { transform: scaleX(1); }
.spec-differential .diff-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--mint-light), var(--bg-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 1.2rem;
    margin-bottom: 18px;
    transition: all .4s var(--ease);
}
.spec-differential .diff-card:hover .diff-icon {
    background: linear-gradient(135deg, var(--navy), var(--teal-deep));
    color: var(--gold-soft);
    transform: rotate(-6deg) scale(1.05);
}
.spec-differential .diff-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}
.spec-differential .diff-card p {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.65;
}

/* CTA final */
.specialties-cta {
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(74,154,170,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,169,120,0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.specialties-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
}
.specialties-cta .container { position: relative; z-index: 1; max-width: 760px; }
.specialties-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}
.specialties-cta h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.specialties-cta p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .spec-grid > a:nth-child(1),
    .spec-grid > a:nth-child(2),
    .spec-grid > a:nth-child(n+3) { grid-column: span 1; }
    .spec-differential .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
    .specialties-hero { padding: 90px 0 70px; }
    .specialties-stats { grid-template-columns: repeat(2, 1fr); padding: 28px 24px; gap: 22px 18px; margin-top: -40px; }
    .spec-stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 640px) {
    .specialties-hero { padding: 70px 0 60px; }
    .specialties-hero h1 { font-size: 2rem; }
    .specialties-stats { grid-template-columns: 1fr; padding: 22px 20px; gap: 16px; }
    .spec-stat-item::after { display: none !important; }
    .specialties-section { padding: 70px 0 60px; }
    .spec-grid { grid-template-columns: 1fr; gap: 20px; }
    .spec-grid > a:nth-child(n) { grid-column: span 1; }
    .spec-differential .diff-grid { grid-template-columns: 1fr; gap: 16px; }
    .spec-differential { padding: 70px 0; }
    .specialties-cta { padding: 70px 0; }
}


/* ============================================
   DEPOIMENTOS PAGE - REDESIGN PREMIUM 2026
   ============================================ */

.page-hero.testimonials-hero {
    padding: 70px 0 90px;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(74,154,170,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,169,120,0.10) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a52 100%);
}
.testimonials-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
}
.testimonials-hero .container { max-width: 1100px; }
.testimonials-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(74,154,170,0.18);
    border: 1px solid rgba(184,216,222,0.28);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-light);
    margin-bottom: 22px;
}
.testimonials-hero-eyebrow i { color: var(--gold); }
.testimonials-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    max-width: 900px;
}
.testimonials-hero h1 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft) 0%, var(--gold) 60%, var(--mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.testimonials-hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    line-height: 1.7;
}

/* Stats overlap */
.testi-stats {
    background: var(--white);
    margin: -50px auto 0;
    max-width: 1080px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 32px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(184,216,222,0.4);
}
.testi-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    text-align: left;
}
.testi-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 8%;
    height: 84%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.testi-stat-icon {
    width: 50px; height: 50px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mint-light), var(--bg-alt));
    color: var(--teal-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.testi-stat-text strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.7rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}
.testi-stat-text span {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    font-weight: 600;
}

/* Section principal */
.testimonials-section {
    padding: 100px 0 80px;
    background: var(--white);
    position: relative;
}
.testi-intro {
    max-width: 960px;
    margin: 0 auto 60px;
    text-align: center;
}
.testi-intro .section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 14px;
}
.testi-intro h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
}
.testi-intro h2 em { font-style: italic; color: var(--teal-dark); }
.testi-intro p { color: var(--gray); font-size: 1.05rem; line-height: 1.8; }

/* Grid 3+3+1 (centro do último em destaque) */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
}
.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}
.testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
    z-index: 3;
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}
.testi-card:hover::before { transform: scaleX(1); }

.testi-video {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}
.testi-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Last card centered when 7 items in 3-col grid (rows: 3+3+1) */
.testi-grid > .testi-card:last-child:nth-child(3n-2) {
    grid-column: 2 / span 1;
}

.testi-card-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.testi-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}
.testi-card-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal-deep));
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    border: 2px solid var(--mint);
    flex-shrink: 0;
}
.testi-card-author {
    flex: 1;
    min-width: 0;
}
.testi-card-author strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 400;
}
.testi-card-author span {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
}
.testi-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin: 6px 0 0;
}
.testi-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--bg-alt);
    border: 1px solid var(--mint);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--teal-deep);
    letter-spacing: 0.04em;
    margin-top: auto;
    align-self: flex-start;
    text-transform: uppercase;
}
.testi-tag i { font-size: .68rem; }

/* Channel CTA - YouTube */
.testi-channel {
    margin: 80px auto 0;
    max-width: 980px;
    padding: 50px 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fff 0%, var(--bg-alt) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 36px;
    position: relative;
    overflow: hidden;
}
.testi-channel::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, var(--mint-light) 0%, transparent 70%);
    pointer-events: none;
}
.testi-channel-icon {
    flex-shrink: 0;
    width: 80px; height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 12px 32px rgba(255,0,0,0.3);
    position: relative;
    z-index: 1;
}
.testi-channel-text { flex: 1; min-width: 0; position: relative; z-index: 1; }
.testi-channel-text h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.2;
}
.testi-channel-text h3 em { font-style: italic; color: var(--teal-dark); }
.testi-channel-text p {
    color: var(--gray);
    font-size: .98rem;
    line-height: 1.6;
    margin: 0;
}
.testi-channel .btn-primary {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* CTA final */
.testimonials-cta {
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(74,154,170,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,169,120,0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.testimonials-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
}
.testimonials-cta .container { position: relative; z-index: 1; max-width: 960px; }
.testimonials-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}
.testimonials-cta h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.testimonials-cta p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid > .testi-card:last-child:nth-child(3n-2) { grid-column: auto; }
}
@media (max-width: 980px) {
    .testimonials-hero { padding: 90px 0 70px; }
    .testi-stats { grid-template-columns: 1fr; padding: 28px 24px; gap: 18px; margin-top: -40px; }
    .testi-stat::after { display: none !important; }
    .testi-channel { flex-direction: column; text-align: center; padding: 36px 28px; gap: 22px; }
}
@media (max-width: 640px) {
    .testimonials-hero { padding: 70px 0 60px; }
    .testimonials-hero h1 { font-size: 2rem; }
    .testimonials-section { padding: 70px 0 60px; }
    .testi-grid { grid-template-columns: 1fr; gap: 22px; }
    .testimonials-cta { padding: 70px 0; }
    .testi-channel { margin-top: 60px; padding: 28px 22px; }
}


/* ============================================
   COMPLIANCE - WhatsApp Floating + Cookie Banner
   ============================================ */

/* WhatsApp flutuante */
#wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-family: 'DM Sans', system-ui, sans-serif;
}
#wa-float .wa-float__bubble {
    background: var(--white, #fff);
    color: var(--navy, #0c2d48);
    font-weight: 600;
    font-size: .92rem;
    padding: 10px 16px;
    border-radius: 100px 0 0 100px;
    border: 1px solid rgba(12,45,72,0.08);
    border-right: none;
    box-shadow: 0 6px 24px rgba(12,45,72,0.16);
    transform: translateX(8px);
    opacity: 0;
    pointer-events: none;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
}
#wa-float .wa-float__icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 12px 28px rgba(37,211,102,0.45);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    position: relative;
    z-index: 2;
}
#wa-float .wa-float__pulse {
    position: absolute;
    right: 0; bottom: 0;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(37,211,102,0.45);
    z-index: 1;
    animation: waPulse 2.2s ease-out infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0% { transform: scale(.95); opacity: .6; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(.95); opacity: 0; }
}
#wa-float:hover .wa-float__bubble {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
#wa-float:hover .wa-float__icon {
    transform: scale(1.05) rotate(-6deg);
}
@media (max-width: 640px) {
    #wa-float { right: 16px; bottom: 16px; }
    #wa-float .wa-float__bubble { display: none; }
    #wa-float .wa-float__icon { width: 56px; height: 56px; font-size: 1.7rem; }
    #wa-float .wa-float__pulse { width: 56px; height: 56px; }
}

/* Cookie banner */
#cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 9995;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    border: 1px solid rgba(12,45,72,0.08);
    box-shadow: 0 24px 60px rgba(12,45,72,0.22);
    transform: translateY(140%);
    opacity: 0;
    transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s cubic-bezier(.4,0,.2,1);
    max-width: 920px;
    margin: 0 auto;
    overflow: hidden;
}
#cookie-banner.is-open {
    transform: translateY(0);
    opacity: 1;
}
#cookie-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--teal, #4a9aaa), var(--gold, #c9a978));
}
.cookie-banner__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 22px 26px;
}
.cookie-banner__icon {
    width: 54px; height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--mint-light, #e0f0f3), #faf3e6);
    color: var(--gold, #c9a978);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cookie-banner__text strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--navy, #0c2d48);
    margin-bottom: 4px;
    font-weight: 400;
}
.cookie-banner__text p {
    font-size: .88rem;
    line-height: 1.55;
    color: var(--gray, #6b7374);
    margin: 0;
}
.cookie-banner__text a {
    color: var(--teal-dark, #38818f);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-banner__text a:hover { color: var(--navy, #0c2d48); }
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    border: 0;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.cookie-btn--ghost {
    background: transparent;
    color: var(--gray, #6b7374);
    border: 1.5px solid rgba(12,45,72,0.12);
}
.cookie-btn--ghost:hover {
    border-color: var(--navy, #0c2d48);
    color: var(--navy, #0c2d48);
}
.cookie-btn--accept {
    background: linear-gradient(135deg, var(--navy, #0c2d48) 0%, var(--teal-deep, #2a6470) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(74,154,170,0.3);
}
.cookie-btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(74,154,170,0.42);
    background: linear-gradient(135deg, var(--teal-deep, #2a6470) 0%, var(--navy, #0c2d48) 100%);
}

@media (max-width: 720px) {
    #cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 86px;
        border-radius: 16px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    .cookie-banner__inner {
        display: block;
        padding: 18px 18px 16px;
    }
    .cookie-banner__icon {
        float: left;
        width: 38px; height: 38px;
        font-size: 1.1rem;
        border-radius: 12px;
        margin: 2px 12px 0 0;
    }
    .cookie-banner__text strong {
        font-size: 1rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .cookie-banner__text p {
        font-size: .85rem;
        line-height: 1.5;
        margin: 0;
        clear: none;
    }
    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 16px;
        clear: both;
    }
    .cookie-btn {
        justify-content: center;
        padding: 13px 12px;
        font-size: .9rem;
        width: 100%;
    }
}
@media (max-width: 380px) {
    #cookie-banner { bottom: 82px; }
    .cookie-banner__inner { padding: 16px 14px 14px; }
    .cookie-banner__icon { display: none; }
    .cookie-banner__text p { font-size: .82rem; }
}


/* ============================================
   MIDIA SECTION (HOME)
   ============================================ */
.midia-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-alt) 100%);
    position: relative;
    overflow: hidden;
}
.midia-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--mint-light) 0%, transparent 70%);
    pointer-events: none;
}
.midia-section::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(201,169,120,0.16) 0%, transparent 70%);
    pointer-events: none;
}
.midia-section .container { position: relative; z-index: 1; }
.midia-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.midia-head .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--mint-light), #fff);
    border: 1px solid var(--mint);
    border-radius: 100px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 18px;
}
.midia-head .pill i { color: var(--gold); }
.midia-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.midia-head h2 em { font-style: italic; color: var(--teal-dark); }
.midia-head p { color: var(--gray); font-size: 1.05rem; line-height: 1.8; }

.midia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
}
.midia-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    position: relative;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.midia-card-img { position: relative; }
.midia-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    z-index: 2;
    transition: all .35s var(--ease);
}
.midia-card-badge .fa-youtube { color: #ff0000; }
.midia-card:hover .midia-card-badge {
    background: var(--gold);
    color: var(--navy-deep);
    transform: scale(1.08);
}
.midia-card:hover .midia-card-badge .fa-youtube { color: var(--navy-deep); }
.midia-card-arrow {
    color: var(--gray-light);
    font-size: .9rem;
    transition: all .3s var(--ease);
    margin-left: auto;
}
.midia-card:hover .midia-card-arrow {
    color: var(--teal-dark);
    transform: translateX(3px);
}
.midia-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
    z-index: 3;
}
.midia-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}
.midia-card:hover::before { transform: scaleX(1); }

.midia-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-alt);
}
.midia-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s var(--ease);
}
.midia-card:hover .midia-card-img img { transform: scale(1.06); }

.midia-card-body {
    padding: 22px 24px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.midia-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mint-light), var(--bg-alt));
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all .35s var(--ease);
}
.midia-card:hover .midia-card-icon {
    background: linear-gradient(135deg, var(--navy), var(--teal-deep));
    color: var(--gold-soft);
}
.midia-card-text { flex: 1; min-width: 0; }
.midia-card-text strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 2px;
}
.midia-card-text span {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
}

/* Lightbox */
.midia-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8,31,49,0.92);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.midia-lightbox.is-open {
    display: flex;
    opacity: 1;
}
.midia-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.midia-lightbox-close {
    position: absolute;
    top: 90px;
    right: 28px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--navy);
    border: 0;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
}
.midia-lightbox-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

@media (max-width: 980px) {
    .midia-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .midia-section { padding: 70px 0; }
    .midia-grid { grid-template-columns: 1fr; gap: 20px; }
}


/* ============================================
   TRATAMENTOS PAGE - REDESIGN PREMIUM 2026
   ============================================ */

.page-hero.treatments-hero {
    padding: 70px 0 90px;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(74,154,170,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,169,120,0.10) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a52 100%);
}
.treatments-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
}
.treatments-hero .container { max-width: 1100px; }
.treatments-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(74,154,170,0.18);
    border: 1px solid rgba(184,216,222,0.28);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-light);
    margin-bottom: 22px;
}
.treatments-hero-eyebrow i { color: var(--gold); }
.treatments-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
}
.treatments-hero h1 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft) 0%, var(--gold) 60%, var(--mint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.treatments-hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    line-height: 1.7;
}

/* Filter tabs (sticky) */
.treatments-filters-wrap {
    background: var(--white);
    margin: -40px auto 0;
    max-width: 1180px;
    padding: 18px 22px;
    border-radius: 100px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(184,216,222,0.4);
    position: relative;
    z-index: 5;
}
.treatments-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.treatment-filter {
    border: 1.5px solid var(--line);
    background: var(--white);
    color: var(--gray);
    padding: 9px 18px;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.treatment-filter i { font-size: .82rem; color: var(--teal-dark); transition: color .3s; }
.treatment-filter:hover {
    border-color: var(--mint);
    color: var(--navy);
}
.treatment-filter.is-active {
    background: linear-gradient(135deg, var(--navy), var(--teal-deep));
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 8px 22px rgba(74,154,170,0.25);
}
.treatment-filter.is-active i { color: var(--gold-soft); }

/* Sections per category */
.treatments-section {
    padding: 80px 0;
    background: var(--white);
}
.tcat-block { margin-bottom: 70px; scroll-margin-top: 100px; }
.tcat-block:last-child { margin-bottom: 0; }

.tcat-head {
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.tcat-head-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--mint-light), var(--bg-alt));
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.tcat-head-text { flex: 1; min-width: 0; }
.tcat-head .section-eyebrow {
    display: block;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 4px;
}
.tcat-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin: 0;
}
.tcat-head h2 em { font-style: italic; color: var(--teal-dark); }
.tcat-head-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: .88rem;
    transition: all .3s var(--ease);
}
.tcat-head-link:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

.tcat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}
.tcard {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all .4s var(--ease);
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
}
.tcard::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
    z-index: 3;
}
.tcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}
.tcard:hover::before { transform: scaleX(1); }
.tcard-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-alt);
    position: relative;
}
.tcard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.tcard:hover .tcard-img img { transform: scale(1.06); }
.tcard-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8,31,49,0.4) 100%);
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.tcard:hover .tcard-img::after { opacity: 1; }
.tcard-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
}
.tcard-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.tcard-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.25;
    margin: 0;
}
.tcard-body p {
    color: var(--gray);
    font-size: .85rem;
    line-height: 1.6;
    margin: 0;
}
.tcard-cta {
    margin-top: auto;
    padding-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap .3s var(--ease), color .3s var(--ease);
}
.tcard:hover .tcard-cta {
    color: var(--navy);
    gap: 10px;
}
.tcard-cta i { font-size: .72rem; }

/* Hidden by filter */
.tcat-block.is-hidden { display: none; }

/* Final CTA */
.treatments-cta {
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(74,154,170,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,169,120,0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.treatments-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
}
.treatments-cta .container { position: relative; z-index: 1; max-width: 760px; }
.treatments-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}
.treatments-cta h2 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--gold-soft), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.treatments-cta p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
    .tcat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
    .treatments-hero { padding: 90px 0 70px; }
    .treatments-filters-wrap { margin-top: -30px; padding: 14px 16px; }
    .tcat-grid { grid-template-columns: repeat(2, 1fr); }
    .tcat-head { flex-wrap: wrap; gap: 14px; }
    .tcat-head-link { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
    .treatments-hero { padding: 70px 0 60px; }
    .treatments-hero h1 { font-size: 2rem; }
    .treatments-section { padding: 60px 0; }
    .tcat-block { margin-bottom: 50px; }
    .tcat-grid { grid-template-columns: 1fr; gap: 18px; }
    .treatments-cta { padding: 70px 0; }
    .tcat-head-icon { width: 50px; height: 50px; font-size: 1.15rem; }
}


/* ============================================
   HOME - TESTIMONIALS CAROUSEL (curto)
   ============================================ */
.home-testi {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}
.home-testi::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--mint-light) 0%, transparent 70%);
    pointer-events: none;
}
.home-testi::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,169,120,0.16) 0%, transparent 70%);
    pointer-events: none;
}
.home-testi .container { position: relative; z-index: 1; }

.home-testi-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.home-testi-head-text { max-width: 640px; }
.home-testi-head .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--mint-light), #fff);
    border: 1px solid var(--mint);
    border-radius: 100px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 14px;
}
.home-testi-head .pill i { color: var(--gold); }
.home-testi-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
}
.home-testi-head h2 em { font-style: italic; color: var(--teal-dark); }
.home-testi-head p {
    color: var(--gray);
    font-size: 1.02rem;
    line-height: 1.7;
}
.home-testi-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.home-testi-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--line);
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .92rem;
    transition: all .3s var(--ease);
}
.home-testi-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
}
.home-testi-track-wrap {
    overflow: hidden;
    margin: 0 -8px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.home-testi-track {
    display: flex;
    gap: 24px;
    padding: 8px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.home-testi-track::-webkit-scrollbar { display: none; }

.home-testi-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    position: relative;
}
.home-testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
    z-index: 3;
}
.home-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}
.home-testi-card:hover::before { transform: scaleX(1); }
.home-testi-video {
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    overflow: hidden;
}
.home-testi-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.home-testi-body {
    padding: 18px 22px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.home-testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal-deep));
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    border: 2px solid var(--mint);
    flex-shrink: 0;
}
.home-testi-meta {
    flex: 1;
    min-width: 0;
}
.home-testi-meta strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 400;
}
.home-testi-meta span {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
}

.home-testi-foot {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.home-testi-foot .btn {
    padding: 14px 32px;
}

@media (max-width: 980px) {
    .home-testi-card { flex: 0 0 calc((100% - 24px) / 2); }
    .home-testi-head { flex-direction: column; align-items: flex-start; gap: 22px; }
}
@media (max-width: 640px) {
    .home-testi { padding: 70px 0; }
    .home-testi-card { flex: 0 0 88%; }
    .home-testi-controls { align-self: flex-end; }
}

/* Footer Contato column - hover refinement */
.footer-col-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: .92rem;
    line-height: 2.1;
    transition: color .3s ease, transform .3s ease;
    will-change: transform;
}
.footer-col-contact a i {
    color: var(--teal);
    width: 18px;
    text-align: center;
    transition: color .3s ease, transform .3s ease;
    margin: 0;
}
.footer-col-contact a:hover {
    color: var(--mint);
    transform: translateX(6px);
}
.footer-col-contact a:hover i {
    color: var(--mint);
    transform: scale(1.15);
}
@media (max-width: 768px) {
    .footer-col-contact a { justify-content: center; }
    .footer-col-contact a:hover { transform: translateY(-2px); }
}

.diff-head p { white-space: nowrap; }
@media (max-width: 900px) {
    .diff-head p { white-space: normal; }
    .diff-head { max-width: 720px; }
}

/* ============================================
   OVERRIDES 2026-05-18 - Ajustes do briefing:
   - Fundo geral mais suave (cool)
   - Page-hero internos: tirar quadriculado preto
   - Remover gradientes "feios" dos titulos
   ============================================ */

/* Page-hero variants - todos para fundo cool claro */
.page-hero.contact-hero,
.page-hero.specialties-hero,
.page-hero.testimonials-hero,
.page-hero.treatments-hero {
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(74,154,170,0.16) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,169,120,0.08) 0%, transparent 60%),
        linear-gradient(180deg, #dde9ee 0%, #ecf3f6 100%) !important;
}
.contact-hero::after,
.specialties-hero::after,
.testimonials-hero::after,
.treatments-hero::after { display: none !important; }

/* H1 dos heros internos: navy, sem gradiente */
.contact-hero h1, .specialties-hero h1, .testimonials-hero h1, .treatments-hero h1 {
    color: var(--navy-strong) !important;
}
.contact-hero h1 em, .specialties-hero h1 em, .testimonials-hero h1 em,
.treatments-hero h1 em, .team-hero h1 em {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: var(--teal-deep) !important;
    -webkit-text-fill-color: var(--teal-deep) !important;
}

/* Lead/eyebrow dos heros internos: dark text */
.contact-hero-lead, .specialties-hero-lead, .testimonials-hero-lead, .treatments-hero-lead {
    color: rgba(12,45,72,0.75) !important;
}
.contact-hero-eyebrow, .specialties-hero-eyebrow, .testimonials-hero-eyebrow, .treatments-hero-eyebrow {
    background: rgba(74,154,170,0.12) !important;
    border-color: rgba(12,45,72,0.12) !important;
    color: var(--teal-deep) !important;
}

/* Breadcrumb nos heros claros */
.contact-hero .breadcrumb, .specialties-hero .breadcrumb,
.testimonials-hero .breadcrumb, .treatments-hero .breadcrumb,
.team-hero .breadcrumb { color: rgba(12,45,72,0.55) !important; }
.contact-hero .breadcrumb a, .specialties-hero .breadcrumb a,
.testimonials-hero .breadcrumb a, .treatments-hero .breadcrumb a,
.team-hero .breadcrumb a { color: var(--teal-deep) !important; }
.contact-hero .breadcrumb span:last-child,
.specialties-hero .breadcrumb span:last-child,
.testimonials-hero .breadcrumb span:last-child,
.treatments-hero .breadcrumb span:last-child,
.team-hero .breadcrumb span:last-child { color: var(--navy-strong) !important; }

/* CTA sections (gold-soft / mint) - remover gradiente, cor solida mint */
.team-cta h2 em, .contact-cta h2 em, .specialties-cta h2 em,
.testimonials-cta h2 em, .treatments-cta h2 em,
.form-side h3 em {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: var(--gold-soft) !important;
    -webkit-text-fill-color: var(--gold-soft) !important;
}

/* team-stat-num - tinha gradiente navy->teal */
.team-stat-num {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: var(--navy-strong) !important;
    -webkit-text-fill-color: var(--navy-strong) !important;
}

/* Section cream do home: amaciar tom (era branco demais) */
.section-cream { background: var(--bg-cool-soft) !important; }
/* Garante que section-dark mantém o fundo escuro (legibilidade dos textos brancos) */
.section.section-dark {
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(74,154,170,0.18) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a52 100%) !important;
    color: #fff !important;
}

/* Content section (paginas internas) - tirar branco puro */
.content-section { background: var(--bg-cool) !important; }

/* TEAM-HERO ajuste cor dos elementos numericos/decorativos */
.team-card-num {
    color: rgba(12,45,72,0.08) !important;
    -webkit-text-fill-color: rgba(12,45,72,0.08) !important;
}

/* ===== Ajustes junho/2026 ===== */
/* Galerias (antes/depois, esportiva, posturologia) */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;margin:10px 0 34px;}
.gallery-grid img,.gallery-figure img{width:100%;height:250px;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow-md);background:var(--bg-alt);transition:transform .5s var(--ease);}
.gallery-grid img:hover{transform:translateY(-4px) scale(1.02);}
.gallery-figure{margin:0;}
.gallery-figure figcaption{font-size:.82rem;color:var(--gray);text-align:center;margin-top:9px;font-weight:600;}
/* Reabilitação antes/depois empilhado (mostra a imagem inteira) */
.treatment-card img.tc-full{height:auto;max-height:none;object-fit:contain;background:var(--bg-alt);}
/* Botão Ver detalhes + lightbox */
.ver-detalhes{display:inline-flex;align-items:center;gap:7px;margin-top:14px;padding:9px 17px;border:1px solid var(--teal);background:transparent;color:var(--teal-dark);font:600 .85rem/1 'DM Sans',sans-serif;border-radius:999px;cursor:pointer;transition:all var(--transition);}
.ver-detalhes:hover{background:var(--teal);color:#fff;}
.detail-lightbox{position:fixed;inset:0;z-index:2000;background:rgba(8,31,49,.93);backdrop-filter:blur(4px);display:none;overflow-y:auto;padding:100px 16px 60px;}
.detail-lightbox.open{display:block;}
.detail-lightbox .dl-inner{max-width:720px;margin:0 auto;}
.detail-lightbox h3{color:#fff;font-family:'DM Serif Display',serif;font-size:clamp(1.4rem,3vw,1.7rem);text-align:center;margin-bottom:24px;}
.detail-lightbox .dl-imgs{display:flex;flex-direction:column;gap:18px;}
.detail-lightbox .dl-imgs img{width:100%;border-radius:var(--radius);box-shadow:var(--shadow-xl);}
.dl-close{position:fixed;top:84px;right:24px;width:46px;height:46px;border-radius:50%;border:none;background:#fff;color:var(--navy);font-size:1.6rem;line-height:1;cursor:pointer;z-index:2001;box-shadow:var(--shadow-lg);transition:background var(--transition);}
.dl-close:hover{background:var(--mint);}
/* Vídeo Invisalign no card de tratamento */
.treatment-card video{width:100%;height:180px;object-fit:cover;display:block;background:#000;}
/* Instagram dos profissionais */
.doc-link.doc-ig{color:#c13584;}
.team-card-ig{display:inline-flex;align-items:center;gap:7px;margin-top:8px;color:#c13584;font-weight:600;font-size:.9rem;text-decoration:none;}
.team-card-ig:hover{text-decoration:underline;}
/* Vídeo depoimento (Tourette) ocupa o mesmo espaço do iframe */
.testi-video video,.home-testi-video video{width:100%;height:100%;object-fit:cover;display:block;background:#000;border:0;}
/* Galeria antes/depois: mostra a imagem inteira (não corta) */
.gallery-grid.ba{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
.gallery-grid.ba img{height:auto;object-fit:contain;background:#fff;padding:6px;}

/* ============================================
   FOOTER - SIGA OS DOUTORES
   ============================================ */
.footer-docs { margin-top: 20px; }
.footer-docs-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 8px;
}
.footer-docs a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.62) !important;
    font-size: .9rem;
    line-height: 1.9;
}
.footer-docs a i { color: var(--teal); }
.footer-docs a:hover { color: var(--mint) !important; }

/* ============================================
   BUSCA NO SITE
   ============================================ */
.nav-search-btn {
    background: none; border: none; cursor: pointer;
    color: var(--navy); font-size: 1.1rem; padding: 8px 10px;
    display: inline-flex; align-items: center; transition: color var(--transition);
    margin-left: 4px;
}
.nav-search-btn:hover { color: var(--teal); }
.site-search {
    position: fixed; inset: 0; z-index: 2200;
    background: rgba(8,31,49,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: none; padding: 90px 16px 40px; overflow-y: auto;
}
.site-search.open { display: block; }
.ss-panel {
    max-width: 680px; margin: 0 auto; background: var(--white);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden;
}
.ss-bar { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.ss-bar-ic { color: var(--teal); font-size: 1.1rem; }
#ssInput {
    flex: 1; border: none; outline: none; background: transparent;
    font: 500 1.05rem 'DM Sans', sans-serif; color: var(--navy);
}
.ss-close {
    background: none; border: none; cursor: pointer; font-size: 1.8rem; line-height: 1;
    color: var(--gray-light); transition: color var(--transition);
}
.ss-close:hover { color: var(--navy); }
.ss-results { max-height: 60vh; overflow-y: auto; padding: 10px 0; }
.ss-hint, .ss-empty { padding: 20px 24px; color: var(--gray); font-size: .92rem; }
.ss-item {
    display: block; padding: 13px 24px; border-bottom: 1px solid var(--line);
    transition: background var(--transition);
}
.ss-item:last-child { border-bottom: none; }
.ss-item:hover { background: var(--bg-alt); }
.ss-item-cat {
    display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--teal-dark); margin-bottom: 3px;
}
.ss-item-title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--navy); }
.ss-item-desc { font-size: .85rem; color: var(--gray); margin-top: 2px; }
.ss-item mark { background: var(--mint-light); color: var(--navy); padding: 0 2px; border-radius: 3px; }
@media (max-width: 600px){ .site-search { padding-top: 76px; } #ssInput { font-size: 1rem; } }

/* before/after card image full */
.treatment-card img.tc-full.ba-img { max-height: 360px; object-fit: contain; }
