/* Clínica Amurat — Design System: Black + Gold + White · Sora · Glass · Soft Rounded */
:root {
  /* Black scale */
  --black:        #000000;
  --ink-950:      #0a0a0a;
  --ink-900:      #111111;
  --ink-800:      #1a1a1a;
  --ink-700:      #2a2a2a;
  --ink-600:      #4a4a4a;
  --ink-500:      #6b6b6b;
  --ink-400:      #9a9a9a;
  --ink-300:      #c4c4c4;
  --ink-200:      #e6e6e6;
  --ink-100:      #f0f0f0;
  --ink-50:       #f7f7f7;

  /* White scale */
  --white:        #ffffff;
  --off-white:    #fafafa;
  --warm-white:   #fbf9f4;

  /* Gold scale — paleta quente Amurat (champanhe, não amarelo) */
  --gold-950:     #2d2310;
  --gold-900:     #3d2e15;
  --gold-800:     #5a4520;
  --gold-700:     #7a5e2d;
  --gold-600:     #8a6f3b;
  --gold-500:     #a0824a;
  --gold-400:     #b8965b;
  --gold-300:     #c9a974;
  --gold-200:     #d4b988;
  --gold-100:     #e6cfa6;
  --gold-50:      #f3ead4;

  /* Single font family */
  --font: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:    1240px;
  --section-py:   clamp(64px, 9vw, 120px);
  --gutter:       clamp(16px, 3vw, 32px);

  /* Radii — generous, modal-like */
  --r-sm:         14px;
  --r-md:         24px;
  --r-lg:         32px;
  --r-xl:         48px;
  --r-2xl:        64px;
  --pill:         999px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md:    0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg:    0 24px 60px rgba(0, 0, 0, 0.14);
  --shadow-xl:    0 32px 80px rgba(0, 0, 0, 0.20);
  --shadow-gold:  0 12px 36px rgba(201, 169, 97, 0.32);

  /* Glass */
  --glass-bg-dark:    rgba(10, 10, 10, 0.55);
  --glass-bg-light:   rgba(255, 255, 255, 0.72);
  --glass-border:     rgba(255, 255, 255, 0.10);
}

/* Base reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { font: inherit; }
@media (max-width: 480px) { input, select, textarea { font-size: 16px !important; } }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .container { padding: 0 18px; } }

.skip-link { position: absolute; left: -9999px; top: 8px; padding: 8px 14px; background: var(--black); color: var(--white); border-radius: 8px; z-index: 9999; }
.skip-link:focus { left: 8px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ──────────────────────── BUTTONS ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: var(--pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.16,1,.3,1), background .25s ease, box-shadow .25s ease, color .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--black); color: var(--white); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20); }
.btn-primary:hover { background: var(--ink-800); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.30); }
.btn-gold { background: var(--gold-500); color: var(--ink-950); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201, 169, 97, 0.42); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: rgba(0, 0, 0, 0.15); }
.btn-ghost:hover { background: var(--ink-50); border-color: var(--ink-900); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.25); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); }
.btn-lg { padding: 16px 34px; font-size: 15.5px; }
.btn-xl { padding: 20px 42px; font-size: 16.5px; }

/* ──────────────────────── HEADER · Glass Pill ──────────────────────── */
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
  padding: 0 16px;
}
.header-inner {
  pointer-events: auto;
  max-width: calc(var(--container) - 24px);
  margin: 0 auto;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--pill);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 22px;
  height: 68px;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.nav-desktop { display: flex; gap: 6px; margin-left: auto; }
.nav-desktop a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--pill);
  transition: color .2s ease, background .2s ease;
}
.nav-desktop a:hover { color: var(--gold-300); background: rgba(255, 255, 255, 0.06); }
.cta-header {
  padding: 11px 22px;
  font-size: 13.5px;
  background: var(--gold-500);
  color: var(--ink-950);
  border-radius: var(--pill);
  font-weight: 600;
  transition: background .25s ease, transform .25s ease;
}
.cta-header:hover { background: var(--gold-400); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 96px;
  left: 16px;
  right: 16px;
  z-index: 99;
  padding: 18px 20px 24px;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
}
.nav-mobile a:not(.btn) {
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 15px;
}
.nav-mobile a:last-of-type:not(.btn) { border-bottom: 0; }
.nav-mobile .btn { margin-top: 14px; background: var(--gold-500); color: var(--ink-950); }
.nav-mobile.is-open { display: flex; }
@media (max-width: 980px) {
  .nav-desktop, .cta-header { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { padding: 8px 8px 8px 22px; }
}

/* ──────────────────────── HERO · Full-bleed photo + overlay (Siso style) ──────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-950);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.72) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.30) 0%, rgba(10, 10, 10, 0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pill);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--gold-400); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}
.hero-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 26px;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-400);
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 40px;
  max-width: 620px;
  font-weight: 400;
}
.hero-subtitle strong { color: var(--white); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 22px 30px;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  max-width: 720px;
  margin: 0 auto;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; text-align: center; align-items: center; min-width: 0; }
.trust-item strong { font-size: 14px; color: var(--white); font-weight: 700; letter-spacing: -0.01em; }
.trust-item span { font-size: 11.5px; color: rgba(255, 255, 255, 0.6); line-height: 1.45; font-weight: 400; }
.trust-divider { width: 1px; height: 36px; background: rgba(255, 255, 255, 0.14); flex-shrink: 0; }

@media (max-width: 880px) {
  .hero { min-height: 100vh; padding: 120px 0 60px; }
  .hero-title { font-size: clamp(30px, 8vw, 44px); }
  .hero-trust {
    gap: 14px;
    padding: 18px 14px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
  }
  .trust-item {
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 0;
  }
  .trust-item strong { font-size: 13px; white-space: nowrap; letter-spacing: -0.015em; }
  .trust-item span { font-size: 10.5px; line-height: 1.4; }
  .trust-divider { display: block; height: auto; align-self: stretch; }
}
@media (max-width: 420px) {
  .hero-trust { gap: 10px; padding: 14px 10px; }
  .trust-item strong { font-size: 11.5px; }
  .trust-item span { font-size: 9.5px; }
}

/* ──────────────────────── SECTIONS ──────────────────────── */
.section { padding: var(--section-py) 0; position: relative; }
.section-light { background: var(--white); }

/* Dark sections are floating "modal-like" panels with rounded corners */
.section-dark {
  background: var(--ink-950);
  color: var(--white);
  border-radius: var(--r-2xl);
  margin: 32px var(--gutter);
  padding: clamp(64px, 9vw, 110px) 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
}
.section-dark:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(201, 169, 97, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.section-dark .container { position: relative; z-index: 1; }
.section-dark .section-eyebrow { color: var(--gold-400); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.72); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 18px;
}

/* ──────────────────────── SECTION MARKER · Numbered chapter pill ──────────────────────── */
.section-marker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 22px;
  padding: 5px 20px 5px 5px;
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--pill);
}
.section-marker-num {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--white);
  background: var(--gold-600);
  padding: 6px 12px;
  border-radius: var(--pill);
  letter-spacing: 0.04em;
  line-height: 1;
}
.section-marker-eyebrow {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-800);
}
.section-dark .section-marker {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
}
.section-dark .section-marker-num {
  background: var(--gold-500);
  color: var(--ink-950);
}
.section-dark .section-marker-eyebrow {
  color: var(--gold-300);
}
.section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink-950);
  margin: 0 0 20px;
}
.section-lead {
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
  color: var(--ink-600);
  font-weight: 400;
}
.section-cta { display: flex; justify-content: center; margin-top: 56px; }

/* ──────────────────────── BENEFITS ──────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 40px 30px;
  text-align: center;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .25s ease;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--ink-950) 0%, var(--ink-800) 100%);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
}
.benefit-icon svg { width: 30px; height: 30px; }
.benefit h3 { font-family: var(--font); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; color: var(--ink-950); margin: 0 0 12px; }
.benefit p { font-size: 14.5px; line-height: 1.65; color: var(--ink-600); margin: 0; }

/* ──────────────────────── STEPS ──────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
@media (max-width: 880px) {
  .steps {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 24px 18px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .steps::-webkit-scrollbar { display: none; }
  .steps .step {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: start;
  }
}
.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 97, 0.4);
  transform: translateY(-4px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-400);
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--pill);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.step h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.25;
}
.step p { font-size: 14.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.7); margin: 0; }

/* ──────────────────────── PROCEDURES ──────────────────────── */
.procs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.proc {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .25s ease;
  position: relative;
}
.proc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: var(--pill);
  background: var(--ink-950);
  border: 1px solid var(--gold-500);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  max-width: calc(100% - 28px);
  white-space: normal;
  line-height: 1.3;
}

/* CTA inline dentro de cada card de procedimento */
.btn-proc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 11px 20px 11px 22px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink-950);
  background: transparent;
  border: 1px solid var(--ink-200);
  border-radius: var(--pill);
  transition: background .25s ease, color .25s ease, border-color .25s ease, gap .25s ease;
  text-decoration: none;
}
.btn-proc:hover {
  background: var(--ink-950);
  color: var(--white);
  border-color: var(--ink-950);
  gap: 12px;
}
.btn-proc svg {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}
.btn-proc:hover svg { transform: translateX(2px); }
.proc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.proc-image { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.proc-image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}
.proc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.proc:hover .proc-image img { transform: scale(1.06); }
.proc-body { padding: 26px 26px 30px; }
.proc-body h3 { font-family: var(--font); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink-950); margin: 0 0 10px; line-height: 1.25; }
.proc-body p { font-size: 14.5px; line-height: 1.65; color: var(--ink-600); margin: 0; font-weight: 400; }

/* ──────────────────────── LENTES / ESTÉTICA DENTAL ──────────────────────── */
.lentes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .lentes-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ──────────────────────── LENTES · Editorial Split Modal ──────────────────────── */
.lente-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.lente-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(201, 169, 97, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--warm-white) 0%, #fdfbf5 100%);
  border: 1px solid var(--gold-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(160, 130, 74, 0.14), 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.lente-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 72px rgba(160, 130, 74, 0.20), 0 6px 18px rgba(0, 0, 0, 0.06);
}
/* Decorative gold thin line at top center */
.lente-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 50%, transparent 100%);
  border-radius: 0 0 4px 4px;
  z-index: 2;
}
.lente-row-reverse .lente-row-image { order: 2; }
.lente-row-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 400px;
}
.lente-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.lente-row:hover .lente-row-image img { transform: scale(1.06); }
/* Subtle dark gradient on image edge for depth */
.lente-row-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.lente-row-content {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.lente-row-title {
  font-family: var(--font);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink-950);
  margin: 18px 0 14px;
  line-height: 1.15;
}
.lente-row-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-600);
  margin: 0 0 24px;
  font-weight: 400;
}
.lente-features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lente-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.55;
  font-weight: 500;
}
.lente-feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-600);
  padding: 2px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold-200);
  box-sizing: content-box;
}

@media (max-width: 880px) {
  .lente-rows { gap: 28px; }
  .lente-row,
  .lente-row-reverse {
    grid-template-columns: 1fr;
  }
  .lente-row-reverse .lente-row-image { order: 0; }
  .lente-row-image { min-height: 0; aspect-ratio: 16/10; }
  .lente-row-content { padding: 36px 30px 40px; }
}
.lente {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 42px 36px 38px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .25s ease;
  position: relative;
}
.lente:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.lente-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-500);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--pill);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.lente-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: var(--pill);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  color: var(--gold-700);
  margin: 0 0 22px;
}
.lente h3 {
  font-family: var(--font);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-950);
  margin: 0 0 14px;
  line-height: 1.25;
}
.lente p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-600);
  margin: 0;
  font-weight: 400;
}

/* ──────────────────────── DIFERENCIAIS · Sobre a Clínica ──────────────────────── */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .diferenciais-grid { grid-template-columns: 1fr; gap: 18px; }
}
.diferencial {
  text-align: left;
  padding: 36px 32px 34px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background .3s ease, border-color .3s ease, transform .4s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.diferencial:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 97, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
/* Override pra contexto light (caso usado fora de section-dark) */
.section-light .diferencial {
  background: var(--white);
  border-color: var(--ink-100);
  box-shadow: var(--shadow-md);
}
.section-light .diferencial:hover {
  background: var(--white);
  border-color: var(--gold-300);
  box-shadow: var(--shadow-lg);
}
.diferencial-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--gold-500) 0%, var(--gold-700) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
  box-shadow: 0 10px 28px rgba(122, 94, 45, 0.28);
}
.diferencial-icon svg { width: 30px; height: 30px; }
.diferencial h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-950);
  margin: 0 0 12px;
  line-height: 1.3;
}
.diferencial p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-600);
  margin: 0;
  font-weight: 400;
}
.diferencial p strong { color: var(--ink-950); font-weight: 600; }

/* Variante dark — quando dentro de section-dark */
.section-dark .diferencial h3 { color: var(--white); }
.section-dark .diferencial p { color: rgba(255, 255, 255, 0.72); }
.section-dark .diferencial p strong { color: var(--gold-300); }
.section-dark .diferencial-icon {
  background: linear-gradient(140deg, var(--gold-400) 0%, var(--gold-600) 100%);
  box-shadow: 0 12px 32px rgba(160, 130, 74, 0.4);
}

/* ──────────────────────── REGIONAL REACH ──────────────────────── */
.regional-reach {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-600);
  margin: 4px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
  font-weight: 400;
}
.regional-reach strong {
  color: var(--ink-950);
  font-weight: 600;
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-700);
  margin-bottom: 4px;
}

/* ──────────────────────── GOOGLE REVIEWS BADGE ──────────────────────── */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pill);
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease;
}
.google-rating:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}
.google-rating-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold-300);
}
.google-rating-stars svg {
  width: 14px;
  height: 14px;
  display: block;
}
.google-rating-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}
.google-rating-text strong { font-weight: 700; color: var(--white); }
.google-rating-desc { white-space: nowrap; }

/* Variante stamp — usada abaixo da trust strip no hero */
.google-rating-stamp { margin: 32px auto 0; }

@media (max-width: 540px) {
  .google-rating-desc { display: none; }
  .google-rating-stamp { padding: 8px 16px; }
  .google-rating-stamp .google-rating-text { font-size: 12px; }
}

/* Variante clara (sobre fundo branco — usada na Localização) */
.google-rating-light {
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
}
.google-rating-light:hover {
  background: var(--gold-100);
  border-color: var(--gold-300);
}
.google-rating-light .google-rating-stars { color: var(--gold-500); }
.google-rating-light .google-rating-text { color: var(--ink-700); }
.google-rating-light .google-rating-text strong { color: var(--ink-950); }

/* ──────────────────────── SOBRE ──────────────────────── */
.section-about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-photo:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.4);
  pointer-events: none;
  z-index: 1;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-content > p { font-size: 16px; line-height: 1.75; color: var(--ink-700); margin: 0 0 18px; font-weight: 400; }
.about-content > p strong { color: var(--ink-950); font-weight: 600; }
.credentials-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0 32px; }
.credentials-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--ink-950);
  color: var(--gold-300);
  border-radius: var(--pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { margin: 0 auto; }
}

/* ──────────────────────── LOCATION ──────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-lg);
}
.map-wrap { position: relative; aspect-ratio: 4/3; min-height: 100%; }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.05); }
.location-info { padding: 36px 36px 48px; display: flex; flex-direction: column; gap: 20px; background: var(--white); }
.location-info h3 { font-family: var(--font); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; color: var(--ink-950); margin: 0; }
.location-info dl { display: flex; flex-direction: column; gap: 16px; margin: 0; }
.location-info dt { font-size: 11.5px; font-weight: 600; color: var(--gold-700); text-transform: uppercase; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 8px; }
.location-info dt svg { width: 14px; height: 14px; color: var(--gold-600); flex-shrink: 0; }
.location-info dd a { transition: color .2s ease; }
.location-info dd a:hover { color: var(--gold-700); }
.location-info dd { margin: 6px 0 0; font-size: 14.5px; color: var(--ink-900); line-height: 1.55; font-weight: 500; }
.location-info dd a { color: var(--ink-950); font-weight: 600; }
.location-info .btn { margin-top: 12px; align-self: stretch; justify-content: center; }
@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 16/10; }
}

/* ──────────────────────── CTA FINAL ──────────────────────── */
.section-cta-final {
  background: var(--ink-950);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  margin: 32px var(--gutter);
  padding: clamp(72px, 11vw, 130px) 0;
}
.section-cta-final:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 0%, rgba(201, 169, 97, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 100%, rgba(201, 169, 97, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.section-cta-final .container { position: relative; z-index: 1; max-width: 820px; }
.section-cta-final h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.section-cta-final p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 40px;
  max-width: 640px;
  font-weight: 400;
}
.section-cta-final .btn-primary {
  background: var(--gold-500);
  color: var(--ink-950);
  box-shadow: var(--shadow-gold);
}
.section-cta-final .btn-primary:hover { background: var(--gold-400); }

/* ──────────────────────── FOOTER ──────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 0;
  position: relative;
}

/* Bloco superior centralizado */
.footer-top {
  text-align: center;
  padding-bottom: 44px;
}
.footer-brand-link {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo-big {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin: 0 auto 30px;
  font-weight: 400;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.footer-social:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--ink-950);
  transform: translateY(-2px);
}
.footer-social svg { width: 17px; height: 17px; }

.footer-divider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-regions {
  columns: 1;
  column-gap: 24px;
}
@media (min-width: 720px) {
  .footer-regions {
    columns: 2;
    column-gap: 28px;
  }
}
.footer-regions li {
  break-inside: avoid;
  display: block !important;
  padding-left: 14px;
  position: relative;
}
.footer-regions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}
.footer-col h4 { font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--gold-400); margin: 0 0 18px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col li, .footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.72); line-height: 1.55; transition: color .2s ease; font-weight: 400; }
.footer-col li { display: flex; align-items: flex-start; gap: 12px; }
.footer-col a { display: inline-flex; align-items: center; gap: 12px; }
.footer-col a:hover { color: var(--gold-300); }
.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-400);
  margin-top: 2px;
}
.footer-rd360 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.55) !important;
}
.footer-rd360 svg {
  height: 13px;
  width: auto;
  fill: var(--white);
  transition: fill .2s ease;
}
.footer-rd360:hover svg { fill: var(--gold-300); }
.footer-bottom { padding: 26px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-bottom small { font-size: 12.5px; color: rgba(255, 255, 255, 0.45); font-weight: 400; }
.footer-bottom a { color: var(--gold-400); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 580px) {
  .site-footer { padding: 48px 0 0; }
  .footer-top { padding-bottom: 32px; }
  .footer-logo-big { height: 36px; }
  .footer-tagline { font-size: 13px; margin-bottom: 22px; max-width: 100%; }
  .footer-socials { gap: 10px; }
  .footer-social { width: 40px; height: 40px; }
  .footer-social svg { width: 16px; height: 16px; }
  .footer-divider { border-top-color: rgba(255, 255, 255, 0.14); }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 0;
    text-align: center;
  }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-col h4 { margin-bottom: 16px; }
  .footer-col ul { gap: 12px; align-items: center; padding: 0; }
  .footer-col li { justify-content: center; text-align: center; }
  .footer-col a { justify-content: center; text-align: center; }
  .footer-regions { columns: 1; display: inline-block; text-align: left; margin: 0 auto; }
  .footer-regions li { text-align: left; justify-content: flex-start; }
  .footer-bottom { padding: 24px 0 28px; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
}

/* ──────────────────────── WHATSAPP FLOATING ──────────────────────── */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.floating-wa:hover { transform: scale(1.08); }

/* ──────────────────────── CLINIC GALLERY ──────────────────────── */
.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
.clinic-card {
  margin: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-100);
  box-shadow: var(--shadow-md);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.clinic-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.clinic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.clinic-card:hover img { transform: scale(1.05); }
.clinic-card figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--pill);
  letter-spacing: 0.01em;
}
@media (max-width: 980px) {
  .clinic-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .clinic-card-featured { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 720px) {
  .clinic-gallery {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 24px 18px;
    margin: 0 -24px;
    grid-auto-rows: auto;
    scrollbar-width: none;
  }
  .clinic-gallery::-webkit-scrollbar { display: none; }
  .clinic-card {
    flex: 0 0 82%;
    min-width: 82%;
    height: 260px;
    scroll-snap-align: start;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .clinic-card-featured {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ──────────────────────── CAROUSEL CONTROLS (mobile) ──────────────────────── */
.carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.carousel-arrow:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--ink-950);
  transform: scale(1.05);
}
.carousel-arrow:active { transform: scale(0.95); }
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width .4s cubic-bezier(.16,1,.3,1), background .25s ease;
}
.carousel-dot.is-active {
  width: 26px;
  background: var(--gold-400);
}
.carousel-dot:hover:not(.is-active) { background: rgba(255, 255, 255, 0.38); }

/* Variante para section-light (Estrutura) */
.section-light .carousel-arrow {
  background: var(--ink-950);
  border-color: var(--ink-950);
  color: var(--white);
}
.section-light .carousel-arrow:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--ink-950);
}
.section-light .carousel-dot { background: rgba(0, 0, 0, 0.18); }
.section-light .carousel-dot:hover:not(.is-active) { background: rgba(0, 0, 0, 0.32); }
.section-light .carousel-dot.is-active { background: var(--gold-500); }

/* Mostrar controles quando carrossel ativo */
@media (max-width: 880px) {
  #processo .carousel-controls { display: flex; }
}
@media (max-width: 720px) {
  #clinica .carousel-controls { display: flex; }
}

/* ──────────────────────── HIGHLIGHT · Marker em palavras de impacto ──────────────────────── */
.highlight {
  background: linear-gradient(180deg, transparent 62%, rgba(201, 169, 97, 0.28) 62%);
  padding: 0 2px;
  font-weight: 600;
  color: inherit;
}
.section-dark .highlight {
  background: linear-gradient(180deg, transparent 62%, rgba(201, 169, 97, 0.35) 62%);
  color: var(--white);
}
.hero .highlight {
  background: linear-gradient(180deg, transparent 62%, rgba(201, 169, 97, 0.4) 62%);
  color: var(--white);
}

section[id] { scroll-margin-top: 108px; }
