/* ============================================================
   Dr. Anderson Rocha Reinstein — Odontologia
   Design tokens (light + dark)
   ============================================================ */
:root {
  color-scheme: light dark;

  /* Surface / ink (overridden by [data-theme="dark"]) */
  --bg: oklch(96% 0.012 80);
  --bg-elev: oklch(98% 0.008 80);
  --bg-warm: oklch(93% 0.018 75);
  --ink: oklch(20% 0.012 230);
  --ink-soft: oklch(38% 0.015 230);
  --ink-mute: oklch(55% 0.012 230);
  --line: oklch(86% 0.012 220);
  --line-soft: oklch(90% 0.01 220);

  /* Brand */
  --primary: oklch(32% 0.045 215);
  --primary-deep: oklch(24% 0.04 215);
  --primary-soft: oklch(45% 0.04 215);
  --primary-tint: oklch(92% 0.018 215);

  --gold: oklch(72% 0.09 75);
  --gold-deep: oklch(58% 0.085 70);
  --gold-tint: oklch(94% 0.025 80);

  --whatsapp: oklch(60% 0.13 150);
  --whatsapp-deep: oklch(50% 0.13 150);

  /* Semantic, theme-aware tokens */
  --ink-invert: oklch(92% 0.015 80);          /* text on dark surfaces */
  --ink-invert-soft: oklch(82% 0.015 215);    /* secondary text on dark */
  --glass-light: oklch(96% 0.012 80 / 0.85);  /* translucent surface labels (light bg) */
  --glass-dark: oklch(20% 0.02 215 / 0.6);    /* translucent surface labels (dark bg) */
  --nav-glass: oklch(96% 0.012 80 / 0.88);
  --surface-deep: oklch(24% 0.04 215);
  --surface-deep-elev: oklch(28% 0.04 215);
  --surface-deep-soft: oklch(40% 0.04 215);
  --footer-bg: oklch(15% 0.025 215);
  --footer-divider: oklch(25% 0.03 215);
  --footer-ink: oklch(78% 0.015 215);
  --footer-ink-mute: oklch(60% 0.015 215);
  --footer-heading: oklch(70% 0.04 215);
  --map-line: oklch(60% 0.04 215);
  --hero-stripe-a: oklch(82% 0.025 215);
  --hero-stripe-b: oklch(86% 0.02 215);
  --auth-stripe-a: oklch(40% 0.04 215);
  --auth-stripe-b: oklch(44% 0.045 215);
  --tile-a: oklch(36% 0.04 215);
  --tile-b: oklch(40% 0.045 215);
  --grid-line: oklch(85% 0.02 215);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px oklch(20% 0.02 230 / 0.06), 0 2px 8px oklch(20% 0.02 230 / 0.04);
  --shadow-md: 0 4px 12px oklch(20% 0.02 230 / 0.08), 0 12px 32px oklch(20% 0.02 230 / 0.06);
  --shadow-lg: 0 12px 40px oklch(20% 0.02 230 / 0.12), 0 28px 80px oklch(20% 0.02 230 / 0.10);

  --font-display: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

[data-theme="dark"] {
  color-scheme: dark;

  --bg: oklch(15% 0.018 230);
  --bg-elev: oklch(20% 0.02 230);
  --bg-warm: oklch(18% 0.02 220);
  --ink: oklch(94% 0.012 80);
  --ink-soft: oklch(82% 0.015 220);
  --ink-mute: oklch(65% 0.012 220);
  --line: oklch(28% 0.015 220);
  --line-soft: oklch(24% 0.012 220);

  --primary: oklch(72% 0.06 215);
  --primary-deep: oklch(85% 0.04 215);
  --primary-soft: oklch(60% 0.05 215);
  --primary-tint: oklch(28% 0.03 215);

  --gold: oklch(78% 0.10 75);
  --gold-deep: oklch(72% 0.09 75);
  --gold-tint: oklch(72% 0.09 75 / 0.22);

  --nav-glass: oklch(15% 0.018 230 / 0.78);
  --glass-light: oklch(20% 0.02 215 / 0.85);
  --surface-deep: oklch(11% 0.025 215);
  --surface-deep-elev: oklch(16% 0.025 215);
  --surface-deep-soft: oklch(28% 0.035 215);
  --footer-bg: oklch(9% 0.025 215);
  --footer-divider: oklch(20% 0.03 215);
  --footer-ink: oklch(72% 0.015 215);
  --footer-ink-mute: oklch(54% 0.015 215);
  --footer-heading: oklch(64% 0.04 215);
  --map-line: oklch(45% 0.04 215);
  --hero-stripe-a: oklch(30% 0.03 215);
  --hero-stripe-b: oklch(34% 0.03 215);
  --auth-stripe-a: oklch(22% 0.03 215);
  --auth-stripe-b: oklch(26% 0.035 215);
  --tile-a: oklch(22% 0.03 215);
  --tile-b: oklch(26% 0.035 215);
  --grid-line: oklch(28% 0.02 215);

  --shadow-sm: 0 1px 2px oklch(0% 0 0 / 0.3), 0 2px 8px oklch(0% 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0% 0 0 / 0.35), 0 12px 32px oklch(0% 0 0 / 0.25);
  --shadow-lg: 0 12px 40px oklch(0% 0 0 / 0.45), 0 28px 80px oklch(0% 0 0 / 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: inline-block; }

/* Default icon size inside buttons / chips / action surfaces */
.btn svg,
.nav-toggle svg,
.faq-toggle svg,
.process-arrow svg,
.trust-check-icon svg,
.mobile-links a svg,
.brand svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Visible focus across interactive elements */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }

/* Type */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold-deep);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--primary-deep);
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
  line-height: 1.08;
}
h1 { font-size: clamp(40px, 5.4vw, 76px); }
h2 { font-size: clamp(32px, 3.8vw, 52px); line-height: 1.05; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; }
p { margin: 0; text-wrap: pretty; }
.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-deep); box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 16px oklch(60% 0.13 150 / 0.25);
}
.btn-whatsapp:hover { background: var(--whatsapp-deep); }

.btn-ghost {
  background: transparent;
  color: var(--primary-deep);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-warm); border-color: var(--primary-soft); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
}
.btn-link:hover { color: var(--gold-deep); }

/* Section frame */
.section {
  padding: clamp(80px, 9vw, 140px) 0;
  position: relative;
}
.section--tight { padding: clamp(60px, 6vw, 100px) 0; }
.section--cream { background: var(--bg-warm); }
.section--deep {
  background: var(--surface-deep);
  color: var(--ink-invert);
}
.section--deep h1, .section--deep h2, .section--deep h3 {
  color: var(--ink-invert);
}
.section--deep .eyebrow { color: var(--gold); }
.section--deep .eyebrow::before { background: var(--gold); }

.section-header {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 760px;
}
.section-header.center {
  margin-left: auto; margin-right: auto;
  text-align: center;
  align-items: center;
}
.section-header.center .eyebrow { justify-content: center; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background-color .3s var(--ease), backdrop-filter .3s, border-color .3s, padding .3s;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-glass);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-color: var(--line-soft);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary-deep);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
[data-theme="dark"] .brand-mark { color: var(--surface-deep); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding: 6px 2px; transition: color .2s; }
.nav-links a:hover { color: var(--primary-deep); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  color: var(--primary-deep);
  background: transparent;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.nav-toggle:hover {
  background: var(--bg-warm);
  border-color: var(--primary-soft);
  color: var(--primary);
}
.nav-toggle:active { transform: scale(0.95); }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease-out);
}
.mobile-menu.open { transform: none; }
.mobile-menu-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu-actions {
  display: flex; align-items: center; gap: 8px;
}
.mobile-links {
  display: flex; flex-direction: column;
  padding-top: 32px;
  gap: 4px;
}
.mobile-links a {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--primary-deep);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: auto; align-self: stretch; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-deep);
}
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.12em;
  background: var(--gold-tint);
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-credentials {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.credential-info {
  display: flex; flex-direction: column;
  justify-content: center;
}
.credential-info strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-deep);
}
.credential-info span {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary-tint);
  box-shadow: var(--shadow-lg);
}
.hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .hero { padding: 140px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 5/6; }
}

/* ============================================================
   PAIN / DESIRE
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pain-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.pain-visual {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pain-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}
.pain-visual figcaption {
  position: relative;
  padding: 4px 0 0 22px;
  border-left: 2px solid var(--gold-deep);
}
.pain-visual-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.pain-visual figcaption p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 800px) {
  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   TREATMENTS
   ============================================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.t-card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--bg-elev);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}
.t-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.t-card h3 {
  margin-bottom: 12px;
}
.t-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.t-card-glyph {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: background .3s, color .3s;
}
.t-card:hover .t-card-glyph {
  background: var(--primary);
  color: var(--gold);
}
.t-card-glyph svg { width: 26px; height: 26px; }
.t-card.featured {
  grid-row: span 2;
  background: var(--surface-deep);
  color: var(--ink-invert);
  border-color: var(--surface-deep);
  padding: 48px 40px;
  overflow: hidden;
}
.t-card.featured h3 { color: var(--ink-invert); }
.t-card.featured p { color: var(--ink-invert-soft); }
.t-card.featured .t-card-glyph { background: var(--surface-deep-soft); color: var(--gold); }
.t-card.featured .t-card-num { color: var(--gold); }
.t-card.featured:hover .t-card-glyph { background: var(--gold); color: var(--surface-deep); }

.t-card.has-image { padding-top: 0; }
.t-card-image {
  position: relative;
  margin: 0 -40px 32px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.t-card-image::after {
  /* subtle bottom fade so the image meshes with the dark card */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, oklch(24% 0.04 215 / 0.55) 100%);
  pointer-events: none;
}
.t-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.t-card.has-image:hover .t-card-image img { transform: scale(1.04); }
.t-card.has-image .t-card-glyph { margin-top: 0; }

@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .t-card.featured { grid-row: auto; grid-column: span 2; min-height: auto; }
}
@media (max-width: 640px) {
  .treatments-grid { grid-template-columns: 1fr; }
  .t-card.featured { grid-column: auto; }
}

/* ============================================================
   AUTHORITY
   ============================================================ */
.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.authority-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary-tint);
  box-shadow: var(--shadow-lg);
}
.authority-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.authority-cro {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: oklch(0% 0 0 / 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: var(--radius-pill);
  color: #fff;
}
.authority-cro-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.authority-cro-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.differentials {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.differentials li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.differentials li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .authority-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.ig-section .section-header { max-width: 820px; }
.ig-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding: 18px 22px;
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}
.ig-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 60%, var(--primary-deep) 100%);
  display: grid; place-items: center;
  color: var(--ink-invert);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  flex-shrink: 0;
}
.ig-handle {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.ig-handle strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.ig-handle span {
  font-size: 13px;
  color: var(--ink-mute);
}
.ig-meta .btn { padding: 12px 20px; font-size: 14px; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ig-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--primary-tint);
  border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: block;
  isolation: isolate;
}
.ig-post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ig-post-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.ig-post:hover .ig-post-img,
.ig-post:focus-visible .ig-post-img {
  transform: scale(1.05);
}
.ig-post-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0% 0 0 / 0.55) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s var(--ease);
  color: white;
  z-index: 1;
}
.ig-post:hover .ig-post-overlay,
.ig-post:focus-visible .ig-post-overlay { opacity: 1; }
.ig-post-caption {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 1px 2px oklch(0% 0 0 / 0.6);
}
.ig-post-icon {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: oklch(0% 0 0 / 0.35);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: white;
  z-index: 1;
}
.ig-post-icon svg { width: 14px; height: 14px; }
.ig-disclaimer {
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.6;
  border-left: 2px solid var(--gold-deep);
}
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-meta { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   TRUST
   ============================================================ */
.trust-card {
  background: var(--surface-deep);
  color: var(--ink-invert);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trust-card h2 { color: var(--ink-invert); }
.trust-card p { color: var(--ink-invert-soft); font-size: 17px; line-height: 1.7; margin-top: 20px; }
.trust-checks {
  display: grid; gap: 16px;
}
.trust-check {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--surface-deep-elev);
  border-radius: var(--radius-sm);
}
.trust-check-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--surface-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
}
.trust-check span {
  font-size: 15px;
  color: var(--ink-invert);
}
.trust-micro {
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 28px;
  font-style: italic;
}
@media (max-width: 900px) {
  .trust-card { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-list {
  display: grid;
  gap: 0;
  counter-reset: step;
  margin-top: 40px;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  cursor: default;
  transition: padding-left .35s var(--ease), background .35s var(--ease);
  padding-left: 8px;
  padding-right: 8px;
  border-radius: var(--radius-sm);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step:hover {
  background: var(--bg-elev);
  padding-left: 20px;
}
.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--gold-deep);
  font-weight: 400;
  line-height: 1;
}
.process-content h3 { margin-bottom: 6px; font-size: 24px; }
.process-content p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 60ch;
}
.process-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: grid; place-items: center;
  color: var(--primary);
  transition: background .3s, color .3s, transform .3s;
}
.process-step:hover .process-arrow {
  background: var(--primary);
  color: var(--gold);
  transform: translateX(6px);
}
@media (max-width: 700px) {
  .process-step { grid-template-columns: 56px 1fr; padding: 24px 12px; }
  .process-num { font-size: 40px; }
  .process-arrow { display: none; }
}

/* ============================================================
   MID CTA
   ============================================================ */
.mid-cta {
  text-align: center;
  display: grid;
  gap: 24px;
  justify-items: center;
}
.mid-cta h2 { max-width: 18ch; }
.mid-cta .lead { max-width: 50ch; }

/* ============================================================
   LOCATION
   ============================================================ */
.loc-tabs {
  display: inline-flex;
  background: var(--bg-elev);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  margin-bottom: 40px;
}
.loc-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background .3s, color .3s;
}
.loc-tab.active {
  background: var(--primary);
  color: var(--bg);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.loc-info {
  background: var(--bg-elev);
  padding: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.loc-info h3 { margin-bottom: 24px; }
.loc-row {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  align-items: flex-start;
}
.loc-row:first-of-type { border-top: none; padding-top: 0; }
.loc-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.loc-icon svg { width: 18px; height: 18px; }
.loc-detail strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.loc-detail span { font-size: 16px; color: var(--ink); line-height: 1.5; }
.loc-cta {
  margin-top: auto;
  padding-top: 32px;
  display: grid;
  gap: 10px;
}
.loc-map {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, var(--primary-tint), var(--bg-warm)),
    repeating-linear-gradient(0deg, var(--grid-line), var(--grid-line) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, var(--grid-line), var(--grid-line) 1px, transparent 1px, transparent 40px);
  background-blend-mode: normal, multiply, multiply;
  min-height: 420px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
}
.loc-map:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.loc-map:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
.loc-map-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: var(--glass-light);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  transition: background 0.3s, color 0.3s;
}
.loc-map-hint svg { width: 12px; height: 12px; }
.loc-map:hover .loc-map-hint {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.loc-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.loc-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 56px; height: 56px;
  display: grid; place-items: center;
}
.loc-pin-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--gold);
  box-shadow: 0 4px 12px oklch(20% 0.02 230 / 0.3);
}
.loc-pin::after {
  content: "";
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.loc-map-label {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink);
  background: var(--glass-light);
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-info { padding: 32px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-aside p { color: var(--ink-soft); margin-top: 20px; }
.faq-aside .btn { margin-top: 28px; }
.faq-list { display: grid; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-deep);
  letter-spacing: -0.005em;
  transition: color .3s;
}
.faq-q:hover { color: var(--primary); }
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: grid; place-items: center;
  color: var(--primary);
  transition: transform .35s var(--ease), background .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: var(--primary);
  color: var(--gold);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .35s var(--ease);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 64ch;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 28px;
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   CLOSING / FOOTER
   ============================================================ */
.closing {
  text-align: center;
  display: grid;
  gap: 32px;
  justify-items: center;
}
.closing h2 { max-width: 22ch; }
.closing-credentials {
  display: grid;
  gap: 4px;
  padding-top: 32px;
  margin-top: 16px;
  border-top: 1px solid var(--surface-deep-soft);
  max-width: 460px;
  width: 100%;
}
.closing-credentials strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-invert);
}
.closing-credentials span { font-size: 14px; color: var(--ink-invert-soft); }

.footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-divider);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer-brand .brand-mark { width: 44px; height: 44px; font-size: 20px; }
.footer-brand .brand-text { color: var(--ink-invert); }
.footer-brand .brand-text small { color: var(--footer-heading); }
.footer-brand p { margin-top: 16px; max-width: 36ch; line-height: 1.6; color: var(--footer-ink); font-size: 13px; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--footer-ink-mute);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 10px 32px oklch(60% 0.13 150 / 0.4);
  transition: transform .3s var(--ease), background .3s;
}
.float-wa:hover {
  transform: scale(1.08);
  background: var(--whatsapp-deep);
}
.float-wa svg { width: 30px; height: 30px; }
.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse 2.4s var(--ease) infinite;
}

/* ============================================================
   Toast notification (form feedback)
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--primary-deep);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  z-index: 80;
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .3s;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.toast-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   ACCESSIBILITY — Skip link
   ============================================================ */
.skip-link {
  position: absolute;
  top: -200px;
  left: 16px;
  z-index: 1000;
  background: var(--gold);
  color: var(--surface-deep);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible,
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--surface-deep);
  outline-offset: 2px;
}

/* ============================================================
   ERROR BOUNDARY fallback
   ============================================================ */
.error-fallback {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--bg);
}
.error-fallback-inner {
  max-width: 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.error-fallback-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  color: var(--gold);
  background: var(--surface-deep);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.error-fallback h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.error-fallback p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 38ch;
}
.error-fallback-cta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   CLINIC / SPACE — Consultório section
   ============================================================ */
.clinic-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  margin-top: 56px;
  align-items: start;
}
.clinic-card {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.clinic-card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--primary-tint);
  aspect-ratio: 4 / 3;
}
.clinic-card-img--tall { aspect-ratio: 4 / 5; }
.clinic-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.clinic-card:hover .clinic-card-img img { transform: scale(1.03); }

.clinic-card figcaption {
  padding: 20px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.clinic-card figcaption strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.clinic-card figcaption span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 42ch;
}

@media (max-width: 800px) {
  .clinic-grid { grid-template-columns: 1fr; gap: 40px; }
  .clinic-card-img,
  .clinic-card-img--tall { aspect-ratio: 4 / 3; }
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-figure { margin: 0; }

.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  outline: none;
  background: var(--primary-tint);
}
.ba-slider:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
.ba-dragging { touch-action: none; }

/* Layers */
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
img.ba-img { object-fit: cover; }

.ba-after {
  position: absolute;
  inset: 0;
  will-change: clip-path;
}

/* Labels */
.ba-lbl {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: oklch(0% 0 0 / 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 100px;
  pointer-events: none;
  transition: opacity 0.25s;
}
.ba-lbl--before { left: 16px; }
.ba-lbl--after  { right: 16px; }

/* Handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px oklch(0% 0 0 / 0.12);
}
.ba-knob {
  position: relative;
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 14px oklch(0% 0 0 / 0.28),
    0 0 0 3px oklch(100% 0 0 / 0.32);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  animation: ba-hint 1.5s ease-in-out 0.9s both;
}
@keyframes ba-hint {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.15) translateX(-5px); }
  70%       { transform: scale(1.08) translateX(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .ba-knob { animation: none; }
}
.ba-slider:hover .ba-knob,
.ba-dragging .ba-knob {
  transform: scale(1.1);
  box-shadow:
    0 4px 22px oklch(0% 0 0 / 0.32),
    0 0 0 4px oklch(100% 0 0 / 0.4);
}

/* Caption */
.ba-caption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ba-caption strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.ba-caption span { font-size: 14px; color: var(--ink-soft); }

/* Cases grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 700px) {
  .cases-grid { grid-template-columns: 1fr; gap: 48px; }
}

.cases-disclaimer {
  margin-top: 40px;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS — Stories-style vertical video cards
   ============================================================ */
.testi-header { color: var(--ink-invert); }

/* Scrollable row — sai do container, vai de borda a borda */
.testi-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 40px 24px;
  margin-top: 48px;
}
.testi-list::-webkit-scrollbar { display: none; }

/* Card */
.testi-card {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: oklch(12% 0.02 215);
  box-shadow:
    0 4px 24px oklch(0% 0 0 / 0.4),
    0 0 0 1px oklch(100% 0 0 / 0.06);
  scroll-snap-align: start;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  outline: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px oklch(0% 0 0 / 0.5),
    0 0 0 1px oklch(100% 0 0 / 0.1);
}
.testi-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.testi-card.playing {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 52px oklch(0% 0 0 / 0.55),
    0 0 0 2px var(--gold);
}

/* Vídeo */
.testi-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.testi-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 22px;
  background: linear-gradient(
    180deg,
    oklch(0% 0 0 / 0.15) 0%,
    oklch(0% 0 0 / 0)    35%,
    oklch(0% 0 0 / 0)    55%,
    oklch(0% 0 0 / 0.7)  100%
  );
  transition: opacity 0.35s var(--ease);
}
/* Esconde overlay enquanto toca — reaparece no hover */
.testi-card.playing .testi-overlay { opacity: 0; }
.testi-card.playing:hover .testi-overlay,
.testi-card.playing:focus-visible .testi-overlay { opacity: 1; }

/* Botão play / pause — centralizado */
.testi-play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px oklch(0% 0 0 / 0.35),
    0 0 0 6px oklch(100% 0 0 / 0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  flex-shrink: 0;
  /* pulsa suavemente quando paused */
  animation: testi-pulse 2.4s ease-in-out infinite;
}
.testi-card.playing .testi-play-btn { animation: none; }
.testi-card:hover .testi-play-btn,
.testi-card:focus-visible .testi-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 28px oklch(0% 0 0 / 0.45), 0 0 0 8px oklch(100% 0 0 / 0.18);
}

@keyframes testi-pulse {
  0%, 100% { box-shadow: 0 4px 20px oklch(0% 0 0 / 0.35), 0 0 0 6px oklch(100% 0 0 / 0.12); }
  50%       { box-shadow: 0 4px 20px oklch(0% 0 0 / 0.35), 0 0 0 12px oklch(100% 0 0 / 0.0); }
}
@media (prefers-reduced-motion: reduce) {
  .testi-play-btn { animation: none; }
}

/* Info na base */
.testi-info {
  align-self: flex-start;
  width: 100%;
}
.testi-treatment {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.testi-name {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 1px 4px oklch(0% 0 0 / 0.5);
}

/* Disclaimer */
.testi-disclaimer {
  margin-top: 32px;
  font-size: 13px;
  color: var(--surface-deep-soft);
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-style: italic;
}

/* Mobile */
@media (max-width: 700px) {
  .testi-list {
    justify-content: flex-start;
    padding: 12px 24px 24px;
    gap: 16px;
  }
  .testi-card { width: min(300px, calc(100vw - 80px)); }
}

/* ============================================================
   INTERVIEW — Player 16:9 com custom cover
   ============================================================ */
.interview-wrap {
  position: relative;
  margin: 56px auto 0;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow:
    0 20px 50px oklch(0% 0 0 / 0.18),
    0 0 0 1px var(--line-soft);
}

.interview-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Cover (poster + play btn) — desaparece após start */
.interview-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  background: linear-gradient(180deg,
    oklch(0% 0 0 / 0.05) 0%,
    oklch(0% 0 0 / 0.25) 60%,
    oklch(0% 0 0 / 0.45) 100%);
  color: #fff;
  transition: background 0.3s var(--ease);
  border: 0;
  outline: none;
  z-index: 1;
}

.interview-cover:hover {
  background: linear-gradient(180deg,
    oklch(0% 0 0 / 0) 0%,
    oklch(0% 0 0 / 0.15) 60%,
    oklch(0% 0 0 / 0.35) 100%);
}

.interview-cover:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}

.interview-play-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;            /* offset visual do triângulo */
  box-shadow:
    0 6px 28px oklch(0% 0 0 / 0.4),
    0 0 0 8px oklch(100% 0 0 / 0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  animation: testi-pulse 2.6s ease-in-out infinite;
}

.interview-cover:hover .interview-play-btn {
  transform: scale(1.08);
  box-shadow:
    0 8px 36px oklch(0% 0 0 / 0.5),
    0 0 0 10px oklch(100% 0 0 / 0.18);
}

.interview-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-shadow: 0 1px 4px oklch(0% 0 0 / 0.6);
}

.interview-meta-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.interview-meta-dur {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-left: 12px;
}

.interview-meta-dur::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
  .interview-play-btn { animation: none; }
}

@media (max-width: 600px) {
  .interview-wrap { margin-top: 40px; }
  .interview-play-btn { width: 64px; height: 64px; }
}
