/* ==========================================================================
   Dra Adriana Britto Odontologia — style.css
   Design system, base, layout e componentes.
   Ordem: 1. Tokens  2. Reset/Base  3. Utilitários  4. Botões  5. Header
          6. Hero  7. Seções  8. Componentes  9. Footer  10. Widgets
   ========================================================================== */

/* 1. TOKENS ================================================================ */
:root {
  /* Paleta da marca: Berinjela #322739 + Dourado (Pantone 872 C) */
  --brand: #322739;
  --brand-900: #231B29;
  --brand-800: #2A2131;
  --accent: #7A5A8C;
  --accent-600: #5B3F6E;
  --white: #FFFFFF;
  --gray-50: #F7F5F8;
  --gray-100: #EFEBF1;
  --gray-200: #E3DDE7;
  --gray-400: #A89EAF;
  --gold: #C8A35F;
  --gold-light: #E3C995;
  --gold-dark: #8A6A2D;          /* dourado para texto sobre fundo claro (contraste AA) */

  /* Texto */
  --text: #2A2230;
  --text-muted: #62586A;          /* 6.7:1 sobre branco */
  --text-on-dark: #F2EDF4;
  --text-on-dark-muted: #CBC0D2;

  /* Tipografia */
  --font-heading: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-xs: .8125rem;
  --fs-sm: .9375rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-h3: clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 2vw, 3rem);
  --fs-h1: clamp(2.4rem, 1.6rem + 3.6vw, 4.5rem);

  /* Espaçamento */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.5rem; --space-6: 2rem; --space-7: 3rem; --space-8: 4rem;
  --section-y: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --container: 1240px;
  --gutter: clamp(1rem, .5rem + 2.5vw, 2.5rem);

  /* Forma e profundidade */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(50, 39, 57, .06);
  --shadow: 0 12px 32px -12px rgba(50, 39, 57, .18);
  --shadow-lg: 0 30px 60px -20px rgba(50, 39, 57, .28);
  --ring: 0 0 0 3px rgba(122, 90, 140, .45);

  /* Movimento */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .35s;

  --header-h: 88px;
}

/* 2. RESET / BASE ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, picture, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: var(--accent-600); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--brand); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--brand);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { text-wrap: pretty; }
strong { font-weight: 600; }
::selection { background: var(--gold); color: var(--brand-900); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.section--brand :focus-visible, .site-footer :focus-visible, .hero :focus-visible,
.page-hero :focus-visible, .cta-banner :focus-visible, .mobile-nav :focus-visible,
.lightbox :focus-visible, .help-card :focus-visible, .side-card--brand :focus-visible { outline-color: var(--gold-light); }

/* 3. UTILITÁRIOS =========================================================== */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2 * var(--gutter), 820px); margin-inline: auto; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  background: var(--brand); color: var(--white); padding: .75rem 1.25rem;
  border-radius: var(--radius-sm); font-weight: 600;
  transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); color: var(--white); }
.text-center { text-align: center; }
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: var(--space-4);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.section--brand .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .cta-banner .eyebrow { color: var(--gold); }
.lead { font-size: var(--fs-lg); color: var(--text-muted); line-height: 1.75; }
.gold { color: var(--gold); }

/* 4. BOTÕES ================================================================ */
.btn {
  --btn-bg: var(--accent-600); --btn-fg: var(--white); --btn-bd: var(--accent-600);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .85rem 1.75rem;
  font-family: var(--font-heading); font-size: .9375rem; font-weight: 600; letter-spacing: .01em;
  color: var(--btn-fg); background: var(--btn-bg); border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius-pill); cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(122, 90, 140, .55); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.1em; height: 1.1em; transition: transform var(--dur) var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--brand-900); --btn-bd: var(--gold); }
.btn--gold:hover { box-shadow: 0 14px 28px -12px rgba(200, 163, 95, .7); }
.btn--brand { --btn-bg: var(--brand); --btn-bd: var(--brand); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--brand); --btn-bd: var(--gray-200); }
.btn--outline:hover { --btn-bd: var(--brand); box-shadow: none; }
.btn--ghost-light { --btn-bg: rgba(255,255,255,.06); --btn-fg: var(--white); --btn-bd: rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { --btn-bg: var(--white); --btn-fg: var(--brand); --btn-bd: var(--white); box-shadow: none; }
.btn--whatsapp { --btn-bg: #0F7A41; --btn-bd: #0F7A41; }
.btn--whatsapp:hover { box-shadow: 0 14px 28px -12px rgba(15, 122, 65, .6); }
.btn--sm { min-height: 44px; padding: .6rem 1.25rem; font-size: .875rem; }
.btn--block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-4); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: .9375rem; color: var(--accent-600);
}
.link-arrow .icon { width: 1em; height: 1em; transition: transform var(--dur) var(--ease); }
.link-arrow:hover .icon, .spec-card:hover .link-arrow .icon, .post-card:hover .link-arrow .icon { transform: translateX(5px); }

/* 5. HEADER ================================================================ */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  color: var(--white);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), height var(--dur) var(--ease), color var(--dur) var(--ease);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(35, 27, 41, .55), transparent);
  transition: opacity var(--dur) var(--ease);
}
.site-header.is-scrolled {
  height: 74px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--gray-100), 0 10px 30px -18px rgba(50, 39, 57, .25);
  color: var(--brand);
}
.site-header.is-scrolled::before { opacity: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); }

.brand { display: inline-flex; align-items: center; gap: .75rem; color: inherit; line-height: 1; flex-shrink: 0; }
.brand:hover { color: inherit; }
.brand__logo { display: block; height: 52px; width: auto; transition: height var(--dur) var(--ease); }
.brand__logo--color { display: none; }
.site-header.is-scrolled .brand__logo { height: 46px; }
.site-header.is-scrolled .brand__logo--white { display: none; }
.site-header.is-scrolled .brand__logo--color { display: block; }
.site-footer .brand__logo { height: 60px; }
.mobile-nav .brand__logo { height: 42px; }

.main-nav { display: flex; align-items: center; gap: var(--space-6); }
.nav-list { display: flex; align-items: center; gap: clamp(1rem, .2rem + 1.3vw, 2rem); list-style: none; padding: 0; }
.nav-link {
  position: relative; display: inline-block; padding: .5rem 0; white-space: nowrap;
  font-family: var(--font-heading); font-size: .875rem; font-weight: 500; letter-spacing: .02em;
  color: inherit;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: inherit; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; align-items: center; gap: var(--space-4); }

.menu-toggle {
  display: none; position: relative; width: 48px; height: 48px; border-radius: 50%;
  color: inherit; align-items: center; justify-content: center;
}
.menu-toggle__bars, .menu-toggle__bars::before, .menu-toggle__bars::after {
  display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), width var(--dur) var(--ease);
}
.menu-toggle__bars { position: relative; }
.menu-toggle__bars::before, .menu-toggle__bars::after { content: ""; position: absolute; left: 0; }
.menu-toggle__bars::before { top: -7px; }
.menu-toggle__bars::after { top: 7px; width: 14px; }

/* Menu mobile (off-canvas) */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(420px, 100%); height: 100vh; height: 100dvh;
  background: var(--brand-900); color: var(--white);
  padding: 6rem var(--space-6) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-6);
  overflow-y: auto; visibility: hidden;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out), visibility 0s linear .5s;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; transition: transform .5s var(--ease-out), visibility 0s; }
.mobile-nav__close { position: absolute; top: 1.25rem; right: 1.25rem; width: 48px; height: 48px; border-radius: 50%; color: var(--white); display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); }
.mobile-nav__close .icon { width: 22px; height: 22px; }
.mobile-nav .brand { position: absolute; top: 1.4rem; left: var(--space-6); }
.mobile-nav__list { list-style: none; padding: 0; display: grid; }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; color: var(--white);
}
.mobile-nav__link .icon { width: 18px; height: 18px; color: var(--gold); }
.mobile-nav__link:hover, .mobile-nav__link[aria-current="page"] { color: var(--gold); }
.mobile-nav__footer { margin-top: auto; display: grid; gap: var(--space-4); color: var(--text-on-dark-muted); font-size: var(--fs-sm); }
.mobile-nav__footer a:not(.btn) { color: var(--white); }
.nav-overlay {
  position: fixed; inset: 0; z-index: 110; background: rgba(35, 27, 41, .55);
  backdrop-filter: blur(4px); opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility 0s linear .4s;
}
.nav-overlay.is-visible { opacity: 1; visibility: visible; transition: opacity .4s var(--ease); }

/* 6. HERO ================================================================== */
.hero {
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 7rem;
  color: var(--white); overflow: hidden;
  background: var(--brand-900);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(35, 27, 41, .96) 0%, rgba(50, 39, 57, .86) 38%, rgba(50, 39, 57, .5) 70%, rgba(50, 39, 57, .3) 100%),
    radial-gradient(ellipse at 85% 20%, rgba(200, 163, 95, .18), transparent 55%);
}
.hero__overlay::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(100deg, #000 0%, transparent 60%);
  mask-image: linear-gradient(100deg, #000 0%, transparent 60%);
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: var(--space-8); align-items: end; }
.hero__content { max-width: 740px; }
.hero h1 { color: var(--white); margin-bottom: var(--space-5); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__text { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--text-on-dark); max-width: 580px; margin-bottom: var(--space-6); font-weight: 300; }
.hero__actions { margin-bottom: var(--space-7); }
.trust-list { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); list-style: none; padding: 0; }
.trust-list li { display: inline-flex; align-items: center; gap: .6rem; font-size: var(--fs-sm); font-weight: 500; color: var(--white); }
.trust-list .check { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(200, 163, 95, .16); border: 1px solid rgba(200, 163, 95, .55); color: var(--gold); }
.trust-list .check .icon { width: 14px; height: 14px; }

.hero-card {
  justify-self: end; width: min(100%, 340px);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.hero-card__top { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-4); }
.hero-card__score { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; line-height: 1; color: var(--white); }
.hero-card__label { font-size: var(--fs-xs); color: var(--text-on-dark-muted); line-height: 1.5; }
.hero-card__avatars { display: flex; align-items: center; padding-top: var(--space-4); border-top: 1px solid rgba(255,255,255,.14); }
.hero-card__avatars img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--brand); object-fit: cover; margin-left: -10px; }
.hero-card__avatars img:first-child { margin-left: 0; }
.hero-card__avatars span { margin-left: var(--space-3); font-size: var(--fs-xs); color: var(--text-on-dark); line-height: 1.4; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .icon { width: 16px; height: 16px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.75rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .6875rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-on-dark-muted);
}
.scroll-cue:hover { color: var(--white); }
.scroll-cue__line { width: 1px; height: 44px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%; background: var(--gold); animation: scrollCue 2.2s var(--ease) infinite; }

/* Page hero (páginas internas) */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + clamp(3rem, 6vw, 6rem)) 0 clamp(3.5rem, 6vw, 6rem);
  color: var(--white); background: var(--brand-900);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(35, 27, 41, .96) 0%, rgba(50, 39, 57, .9) 50%, rgba(50, 39, 57, .62) 100%);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem); max-width: 900px; margin-bottom: var(--space-4); }
.page-hero .lead { color: var(--text-on-dark); max-width: 680px; font-weight: 300; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); margin-top: var(--space-5); color: var(--text-on-dark-muted); font-size: var(--fs-sm); }
.page-hero__meta span { display: inline-flex; align-items: center; gap: .5rem; }
.page-hero__meta .icon { width: 18px; height: 18px; color: var(--gold); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; list-style: none; padding: 0; margin-bottom: var(--space-5); font-size: var(--fs-xs); letter-spacing: .04em; }
.breadcrumb li { display: inline-flex; align-items: center; gap: .5rem; color: var(--text-on-dark-muted); }
.breadcrumb li + li::before { content: ""; width: 5px; height: 5px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); transform: rotate(45deg); }
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--gold-light); }

/* 7. SEÇÕES ================================================================ */
.section { padding-block: var(--section-y); position: relative; }
.section--gray { background: var(--gray-50); }
.section--brand { background: var(--brand); color: var(--text-on-dark); overflow: hidden; }
.section--brand h2, .section--brand h3 { color: var(--white); }
.section--brand .lead { color: var(--text-on-dark-muted); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { content: ""; width: 32px; height: 1px; background: currentColor; }
.section-head h2 { margin-bottom: var(--space-4); }
.section-head--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.section-head--split > div { max-width: 640px; }
.section-foot { margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem); display: flex; justify-content: center; }

/* Grid genérico */
.grid { display: grid; gap: clamp(1.25rem, .8rem + 1.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* 8. COMPONENTES =========================================================== */

/* 8.1 Cards de diferenciais */
.feature-card {
  position: relative; padding: clamp(1.75rem, 1.4rem + 1vw, 2.5rem);
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
  overflow: hidden; height: 100%;
}
.feature-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
  display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: var(--space-5);
  border-radius: 18px; color: var(--accent-600);
  background: linear-gradient(135deg, rgba(122, 90, 140, .1), rgba(122, 90, 140, .03));
  transition: background .5s var(--ease-out), color .5s var(--ease-out), transform .5s var(--ease-out);
}
.feature-card__icon .icon { width: 30px; height: 30px; }
.feature-card:hover .feature-card__icon { background: var(--brand); color: var(--gold); transform: rotate(-6deg); }
.feature-card h3 { font-size: 1.25rem; margin-bottom: var(--space-3); }
.feature-card p { color: var(--text-muted); font-size: var(--fs-sm); }
.feature-card__num { position: absolute; top: 1.5rem; right: 1.75rem; font-family: var(--font-heading); font-size: .8125rem; font-weight: 600; color: var(--gray-400); letter-spacing: .1em; }

/* 8.2 Sobre */
.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(2.5rem, 2rem + 4vw, 6rem); align-items: center; }
.about__media { position: relative; padding: 0 1.5rem 1.5rem 0; }
.about__media::before { content: ""; position: absolute; inset: 1.5rem 0 0 1.5rem; border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: 0; }
.about__media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 10 / 11; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__badge {
  position: absolute; z-index: 2; left: -1.5rem; bottom: 3rem;
  display: flex; align-items: center; gap: var(--space-4);
  padding: 1.1rem 1.5rem; border-radius: var(--radius);
  background: var(--brand); color: var(--white); box-shadow: var(--shadow-lg);
}
.about__badge strong { font-family: var(--font-heading); font-size: 2.5rem; line-height: 1; color: var(--gold); }
.about__badge span { font-size: var(--fs-xs); line-height: 1.4; color: var(--text-on-dark); }
.about__content h2 { margin-bottom: var(--space-5); }
.about__content > p { color: var(--text-muted); }
.about__content > p + p { margin-top: var(--space-4); }
.about__signature { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-6); padding-top: var(--space-5); border-top: 1px solid var(--gray-100); }
.about__signature img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: top; }
.about__signature strong { display: block; font-family: var(--font-heading); color: var(--brand); }
.about__signature span { font-size: var(--fs-xs); color: var(--text-muted); }
.check-list { list-style: none; padding: 0; display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; color: var(--text); }
.check-list .icon { width: 22px; height: 22px; color: var(--gold-dark); margin-top: .2rem; }
.check-list--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Contadores */
.stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3rem, 2.5rem + 3vw, 5rem);
  border-radius: var(--radius-lg); background: var(--brand); color: var(--white); overflow: hidden;
  box-shadow: var(--shadow-lg); list-style: none; padding: 0;
}
.stat { position: relative; padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem) var(--space-5); text-align: center; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: rgba(255,255,255,.12); }
.stat__value { display: block; font-family: var(--font-heading); font-size: clamp(2.2rem, 1.6rem + 2vw, 3.25rem); font-weight: 700; line-height: 1; color: var(--white); margin-bottom: .5rem; font-variant-numeric: tabular-nums; }
.stat__value .gold { color: var(--gold); }
.stat__label { font-size: var(--fs-sm); color: var(--text-on-dark-muted); }

/* 8.3 Especialidades */
.spec-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.spec-card:hover, .spec-card:focus-within { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.spec-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--gray-100); }
.spec-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.spec-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(35, 27, 41, .45)); }
.spec-card:hover .spec-card__media img { transform: scale(1.08); }
.spec-card__body { position: relative; display: flex; flex-direction: column; flex: 1; padding: 2.5rem 1.5rem 1.5rem; }
.spec-card__icon {
  position: absolute; z-index: 2; left: 1.5rem; top: -28px;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--white); color: var(--brand); box-shadow: var(--shadow);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.spec-card:hover .spec-card__icon { background: var(--brand); color: var(--gold); }
.spec-card__icon .icon { width: 28px; height: 28px; }
.spec-card h3 { font-size: 1.1875rem; margin-bottom: var(--space-2); }
.spec-card h3 a { color: inherit; }
.spec-card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 3; } /* card inteiro clicável */
.spec-card { isolation: isolate; }
.spec-card p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--space-5); }
.spec-card .link-arrow { margin-top: auto; }

/* 8.4 Timeline tecnológica */
.tech::before {
  content: ""; position: absolute; width: 900px; height: 900px; right: -300px; top: -300px;
  background: radial-gradient(circle, rgba(122, 90, 140, .22), transparent 60%);
  pointer-events: none;
}
.timeline { position: relative; list-style: none; padding: 0; max-width: 1040px; margin-inline: auto; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(200, 163, 95, .6) 8%, rgba(200, 163, 95, .6) 92%, transparent);
}
.timeline__item { position: relative; display: grid; grid-template-columns: 1fr 96px 1fr; align-items: center; }
.timeline__item + .timeline__item { margin-top: var(--space-6); }
.timeline__marker {
  grid-column: 2; grid-row: 1; justify-self: center; z-index: 1;
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: var(--brand); border: 1.5px solid var(--gold); color: var(--gold);
  box-shadow: 0 0 0 8px var(--brand), 0 0 30px rgba(200, 163, 95, .25);
}
.timeline__marker .icon { width: 28px; height: 28px; }
.timeline__card {
  grid-column: 1; grid-row: 1; text-align: right;
  padding: var(--space-5) var(--space-6); border-radius: var(--radius);
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.timeline__card:hover { background: rgba(255, 255, 255, .07); border-color: rgba(200, 163, 95, .4); }
.timeline__item:nth-child(even) .timeline__card { grid-column: 3; text-align: left; }
.timeline__step { display: block; font-family: var(--font-heading); font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.timeline__card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.timeline__card p { font-size: var(--fs-sm); color: var(--text-on-dark-muted); }

/* 8.5 Equipe */
.team-card { position: relative; }
.team-card__media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-100); }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.team-card__bio {
  position: absolute; inset: auto 0 0; padding: 5rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(35, 27, 41, .94) 36%);
  color: var(--text-on-dark); font-size: var(--fs-sm); line-height: 1.6;
  transform: translateY(101%); transition: transform .6s var(--ease-out);
}
.team-card__bio ul { list-style: none; padding: 0; display: grid; gap: .35rem; }
.team-card__bio li { position: relative; padding-left: 1rem; }
.team-card__bio li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.team-card:hover .team-card__media img, .team-card:focus-within .team-card__media img { transform: scale(1.06); }
.team-card:hover .team-card__bio, .team-card:focus-within .team-card__bio { transform: translateY(0); }
.team-card__social { position: absolute; top: 1rem; right: 1rem; z-index: 2; display: flex; gap: .5rem; opacity: 0; transform: translateY(-8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.team-card:hover .team-card__social, .team-card:focus-within .team-card__social { opacity: 1; transform: none; }
.team-card__social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--brand); }
.team-card__social a:hover { background: var(--gold); color: var(--brand-900); }
.team-card__social .icon { width: 18px; height: 18px; }
.team-card__info { padding: var(--space-5) var(--space-2) 0; }
.team-card__role { display: block; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .35rem; }
.team-card h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.team-card__cro { font-size: var(--fs-sm); color: var(--text-muted); }

.leader { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 1.5rem + 4vw, 6rem); align-items: center; }
.leader__media { position: relative; }
.leader__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.leader__media::after { content: ""; position: absolute; inset: 1.5rem -1.5rem -1.5rem 1.5rem; z-index: -1; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--gold-light), var(--gold)); opacity: .35; }
.leader__media { isolation: isolate; }
.leader h2 { margin-bottom: .35rem; }
.leader__cro { display: inline-block; margin-bottom: var(--space-5); color: var(--gold-dark); font-weight: 600; font-size: var(--fs-sm); letter-spacing: .06em; }
.leader p { color: var(--text-muted); }
.leader p + p { margin-top: var(--space-4); }

/* 8.6 Galeria / Estrutura */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--space-7); }
.filters--center { justify-content: center; }
.filter-btn {
  min-height: 44px; padding: .55rem 1.25rem; border-radius: var(--radius-pill);
  font-family: var(--font-heading); font-size: .875rem; font-weight: 500;
  color: var(--brand); background: var(--white); border: 1px solid var(--gray-200);
  transition: all var(--dur) var(--ease);
}
.filter-btn:hover { border-color: var(--brand); }
.filter-btn[aria-pressed="true"] { background: var(--brand); color: var(--white); border-color: var(--brand); }
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 240px; grid-auto-flow: dense; gap: 1rem; list-style: none; padding: 0; }
.gallery > li { min-width: 0; }
.gallery > li.is-hidden { display: none; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--gray-100); display: block; width: 100%; height: 100%; text-align: left; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(35, 27, 41, .92)); opacity: .95; transition: opacity .5s var(--ease); }
.gallery__caption { position: absolute; z-index: 1; left: 1.25rem; right: 1.25rem; bottom: 1.1rem; color: var(--white); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.gallery__caption small { display: block; font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }
.gallery__caption strong { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; line-height: 1.3; }
.gallery__zoom { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); transform: scale(.6); opacity: 0; transition: all .4s var(--ease); flex-shrink: 0; }
.gallery__zoom .icon { width: 18px; height: 18px; }
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover .gallery__zoom, .gallery__item:focus-visible .gallery__zoom { transform: none; opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: grid; grid-template-rows: auto 1fr; gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 5rem) 2rem; background: rgba(24, 18, 28, .96);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .35s var(--ease); }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; color: var(--text-on-dark-muted); font-size: var(--fs-sm); }
.lightbox__figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: .9rem; justify-items: center; align-items: center; min-height: 0; }
.lightbox__img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; border-radius: var(--radius); box-shadow: 0 40px 80px -30px #000; transition: opacity .3s var(--ease); }
.lightbox__img.is-loading { opacity: 0; }
.lightbox__caption { color: var(--white); font-family: var(--font-heading); text-align: center; }
.lightbox__caption small { display: block; color: var(--gold-light); font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; }
.lightbox__btn { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: var(--white); border: 1px solid rgba(255,255,255,.2); background: rgba(24, 18, 28, .5); transition: background .3s var(--ease), border-color .3s var(--ease); }
.lightbox__btn:hover { background: rgba(255,255,255,.1); border-color: var(--gold); }
.lightbox__btn .icon { width: 22px; height: 22px; }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }

/* 8.7 Antes e depois */
.ba { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 1.5rem + 3vw, 5rem); align-items: center; }
.ba-tabs { display: grid; gap: .75rem; margin-top: var(--space-6); }
.ba-tab {
  display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left;
  padding: 1rem 1.25rem; border-radius: var(--radius); border: 1px solid var(--gray-200); background: var(--white);
  transition: all var(--dur) var(--ease);
}
.ba-tab:hover { border-color: var(--brand); }
.ba-tab[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: var(--white); box-shadow: var(--shadow); }
.ba-tab__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--gray-50); color: var(--brand); flex-shrink: 0; }
.ba-tab__icon .icon { width: 22px; height: 22px; }
.ba-tab[aria-selected="true"] .ba-tab__icon { background: rgba(200, 163, 95, .18); color: var(--gold); }
.ba-tab strong { display: block; font-family: var(--font-heading); font-weight: 600; }
.ba-tab span { font-size: var(--fs-xs); opacity: .85; }
.ba-panel[hidden] { display: none; }
.ba-slider {
  --pos: 50%;
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; -webkit-user-select: none; touch-action: pan-y; background: var(--gray-100);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-slider__before--simulado { filter: sepia(.55) saturate(.75) brightness(.88) contrast(.95) hue-rotate(-6deg); }
.ba-slider__label {
  position: absolute; top: 1rem; z-index: 2; padding: .35rem .85rem; border-radius: var(--radius-pill);
  font-family: var(--font-heading); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(35, 27, 41, .78); color: var(--white); backdrop-filter: blur(6px);
}
.ba-slider__label--before { left: 1rem; }
.ba-slider__label--after { right: 1rem; background: rgba(200, 163, 95, .95); color: var(--brand-900); }
.ba-slider__range { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; -webkit-appearance: none; appearance: none; }
.ba-slider__handle { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--white); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,.35); }
.ba-slider__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: var(--white); color: var(--brand); box-shadow: var(--shadow-lg); transition: box-shadow .2s var(--ease); }
.ba-slider__knob .icon { width: 16px; height: 16px; }
.ba-slider__range:focus-visible ~ .ba-slider__handle .ba-slider__knob { box-shadow: 0 0 0 4px var(--gold), var(--shadow-lg); }
.disclaimer { margin-top: var(--space-4); font-size: var(--fs-xs); color: var(--text-muted); display: flex; gap: .5rem; align-items: flex-start; }
.disclaimer .icon { width: 16px; height: 16px; margin-top: .2rem; }

/* 8.8 Depoimentos (carousel) */
.rating-summary { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.rating-summary__score { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--brand); }
.rating-summary small { display: block; font-size: var(--fs-xs); color: var(--text-muted); }
.carousel { position: relative; --per-view: 3; --gap: 1.5rem; }
.carousel__viewport { overflow: hidden; margin: -1rem; padding: 1rem; }
.carousel__track { display: flex; gap: var(--gap); list-style: none; padding: 0; transition: transform .7s var(--ease-out); will-change: transform; }
.carousel__slide { flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view)); min-width: 0; }
.carousel__controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: var(--space-6); }
.carousel__dots { display: flex; gap: .25rem; flex-wrap: wrap; }
.carousel__dot { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; }
.carousel__dot::before { content: ""; width: 8px; height: 8px; border-radius: var(--radius-pill); background: var(--gray-400); transition: all .4s var(--ease); }
.carousel__dot[aria-current="true"]::before { width: 24px; background: var(--gold-dark); }
.carousel__arrows { display: flex; gap: .6rem; }
.carousel__btn { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gray-200); color: var(--brand); background: var(--white); transition: all var(--dur) var(--ease); }
.carousel__btn:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }
.carousel__btn .icon { width: 20px; height: 20px; }

.testimonial {
  height: 100%; display: flex; flex-direction: column; gap: var(--space-4);
  padding: clamp(1.75rem, 1.4rem + 1vw, 2.25rem); border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial__head { display: flex; justify-content: space-between; align-items: center; }
.testimonial__quote { width: 40px; height: 40px; color: var(--gold); opacity: .7; }
.testimonial blockquote { flex: 1; color: var(--text); font-size: .975rem; line-height: 1.75; }
.testimonial figcaption { display: flex; align-items: center; gap: .9rem; padding-top: var(--space-4); border-top: 1px solid var(--gray-100); }
.testimonial figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial figcaption strong { display: block; font-family: var(--font-heading); color: var(--brand); font-size: .975rem; }
.testimonial figcaption span { font-size: var(--fs-xs); color: var(--text-muted); }
.testimonial figcaption .testimonial__avatar { flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--brand); color: var(--white); font-family: var(--font-heading); font-size: 1.25rem; }

/* 8.9 FAQ accordion */
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 1.5rem + 4vw, 6rem); align-items: start; }
.faq-aside { position: sticky; top: 110px; }
.help-card { margin-top: var(--space-6); padding: var(--space-6); border-radius: var(--radius-lg); background: var(--brand); color: var(--text-on-dark); position: relative; overflow: hidden; isolation: isolate; }
.help-card::after { content: ""; position: absolute; z-index: -1; width: 220px; height: 220px; right: -80px; bottom: -80px; border-radius: 50%; border: 1px solid rgba(200, 163, 95, .35); box-shadow: 0 0 0 30px rgba(200,163,95,.05); }
.help-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: .5rem; }
.help-card p { font-size: var(--fs-sm); color: var(--text-on-dark-muted); margin-bottom: var(--space-5); }
.accordion { display: grid; gap: .85rem; }
.accordion__item { border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-100); transition: box-shadow .4s var(--ease), border-color .4s var(--ease); }
.section--gray .accordion__item { border-color: transparent; }
.accordion__item.is-open { box-shadow: var(--shadow); border-color: transparent; }
.accordion__heading { font-size: inherit; margin: 0; letter-spacing: 0; }
.accordion__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%;
  padding: 1.25rem 1.5rem; text-align: left;
  font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; color: var(--brand); line-height: 1.4;
}
.accordion__icon { position: relative; flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--gray-50); transition: background .4s var(--ease), transform .4s var(--ease); }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--brand); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .4s var(--ease), background .4s var(--ease); }
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__item.is-open .accordion__icon { background: var(--brand); transform: rotate(180deg); }
.accordion__item.is-open .accordion__icon::before, .accordion__item.is-open .accordion__icon::after { background: var(--gold); }
.accordion__item.is-open .accordion__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out), visibility 0s linear .45s; visibility: hidden; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows .45s var(--ease-out); }
.accordion__panel > div { overflow: hidden; }
.accordion__panel p { padding: 0 1.5rem 1.4rem; color: var(--text-muted); font-size: var(--fs-sm); }
.no-js .accordion__panel { grid-template-rows: 1fr; visibility: visible; }

/* 8.10 Blog */
.post-card { position: relative; display: flex; flex-direction: column; height: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--gray-100); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.post-card:hover, .post-card:focus-within { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gray-100); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.5rem 1.75rem; }
.post-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-bottom: .85rem; font-size: var(--fs-xs); color: var(--text-muted); }
.chip { display: inline-block; padding: .25rem .75rem; border-radius: var(--radius-pill); background: rgba(200, 163, 95, .16); color: var(--gold-dark); font-size: .75rem; font-weight: 600; letter-spacing: .04em; }
.post-card h3 { font-size: 1.1875rem; margin-bottom: .6rem; line-height: 1.35; }
.post-card h3 a, .post-card h2 a { color: inherit; }
.post-card h3 a::after, .post-card h2 a::after { content: ""; position: absolute; inset: 0; }
.post-card p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--space-5); }
.post-card .link-arrow { margin-top: auto; }
.blog-list > li.is-hidden { display: none; }
.blog-list__featured { grid-column: 1 / -1; }
.blog-list__featured .post-card--featured { margin-bottom: 0; }
.post-card h2 { font-size: 1.1875rem; margin-bottom: .6rem; line-height: 1.35; }
.blog-list { list-style: none; padding: 0; }
.post-card--featured { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); margin-bottom: var(--space-7); }
.post-card--featured .post-card__media { aspect-ratio: auto; min-height: 380px; }
.post-card--featured .post-card__body { padding: clamp(1.75rem, 1.2rem + 2vw, 3rem); justify-content: center; }
.post-card--featured h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); margin-bottom: 1rem; }
.post-card--featured .link-arrow { margin-top: 0; }
.empty-state { text-align: center; color: var(--text-muted); padding: 2rem; }

/* Artigo */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 1.5rem + 3vw, 5rem); align-items: start; }
.article__cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-7); box-shadow: var(--shadow); }
.article__cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.prose { font-size: 1.0625rem; line-height: 1.85; color: #3A3040; }
.prose > * + * { margin-top: 1.25em; }
.prose h2 { font-size: clamp(1.5rem, 1.3rem + .8vw, 1.9rem); margin-top: 2em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.25rem; display: grid; gap: .5rem; }
.prose li::marker { color: var(--gold-dark); }
.prose blockquote { padding: 1.5rem 1.75rem; border-left: 3px solid var(--gold); background: var(--gray-50); border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 500; color: var(--brand); line-height: 1.6; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.callout { display: flex; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: var(--radius); background: rgba(122, 90, 140, .06); border: 1px solid rgba(122, 90, 140, .18); font-size: var(--fs-sm); }
.callout .icon { width: 22px; height: 22px; color: var(--accent-600); margin-top: .15rem; }
.author-box { display: flex; gap: 1.25rem; align-items: center; margin-top: var(--space-7); padding: var(--space-6); border-radius: var(--radius-lg); background: var(--gray-50); }
.author-box img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.author-box strong { display: block; font-family: var(--font-heading); color: var(--brand); font-size: 1.1rem; }
.author-box p { font-size: var(--fs-sm); color: var(--text-muted); margin-top: .25rem; }
.share { display: flex; align-items: center; gap: .6rem; margin-top: var(--space-6); font-size: var(--fs-sm); color: var(--text-muted); flex-wrap: wrap; }
.share a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-200); color: var(--brand); }
.share a:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }
.share .icon { width: 18px; height: 18px; }

/* Sidebar (especialidades / artigos) */
.sidebar { position: sticky; top: 110px; display: grid; gap: var(--space-5); }
.side-card { padding: var(--space-6); border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.side-card h3 { font-size: 1.125rem; margin-bottom: var(--space-4); }
.side-card--brand { background: var(--brand); border-color: var(--brand); color: var(--text-on-dark); }
.side-card--brand h3 { color: var(--white); }
.side-card--brand p { font-size: var(--fs-sm); color: var(--text-on-dark-muted); margin-bottom: var(--space-5); }
.side-card--brand .btn + .btn { margin-top: .75rem; }
.side-links { list-style: none; padding: 0; display: grid; }
.side-links a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--gray-100); color: var(--text); font-size: var(--fs-sm); font-weight: 500; }
.side-links li:last-child a { border-bottom: 0; }
.side-links a:hover, .side-links a[aria-current="page"] { color: var(--accent-600); }
.side-links .icon { width: 16px; height: 16px; color: var(--gold-dark); }

/* Detalhe de especialidade */
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(2rem, 1.5rem + 3vw, 5rem); align-items: start; }
.detail-block + .detail-block { margin-top: clamp(3rem, 2.5rem + 2vw, 4.5rem); }
.detail-block h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem); margin-bottom: var(--space-5); }
.detail-block > p { color: var(--text-muted); font-size: 1.0625rem; }
.detail-block > p + p { margin-top: var(--space-4); }
.detail-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-7); box-shadow: var(--shadow); }
.detail-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; list-style: none; padding: 0; }
.benefit { display: flex; gap: 1rem; padding: 1.25rem; border-radius: var(--radius); background: var(--gray-50); }
.benefit__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--white); color: var(--gold-dark); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.benefit__icon .icon { width: 22px; height: 22px; }
.benefit strong { display: block; font-family: var(--font-heading); color: var(--brand); margin-bottom: .15rem; }
.benefit p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.6; }
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; }
.steps li { counter-increment: step; position: relative; padding: 0 0 2rem 4.5rem; }
.steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--brand); color: var(--gold); font-family: var(--font-heading); font-weight: 600; font-size: .9375rem; }
.steps li::after { content: ""; position: absolute; left: 26px; top: 60px; bottom: 6px; width: 1px; background: var(--gray-200); }
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps strong { display: block; font-family: var(--font-heading); font-size: 1.125rem; color: var(--brand); padding-top: .75rem; margin-bottom: .25rem; }
.steps p { color: var(--text-muted); font-size: var(--fs-sm); }

/* Missão / valores */
.value-card { padding: var(--space-6); border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-100); height: 100%; }
.value-card .feature-card__icon { margin-bottom: var(--space-4); }
.value-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.value-card p { color: var(--text-muted); font-size: var(--fs-sm); }

/* Linha do tempo institucional (sobre) */
.history { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; position: relative; }
.history::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 1px; background: var(--gray-200); }
.history li { position: relative; padding-top: 2.5rem; }
.history li::before { content: ""; position: absolute; top: 4px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--white); border: 3px solid var(--gold); }
.history strong { display: block; font-family: var(--font-heading); font-size: 1.75rem; color: var(--brand); line-height: 1; margin-bottom: .5rem; }
.history span { display: block; font-family: var(--font-heading); font-weight: 600; color: var(--brand); margin-bottom: .35rem; }
.history p { font-size: var(--fs-sm); color: var(--text-muted); }

/* 8.11 CTA banner */
.cta-banner { position: relative; isolation: isolate; overflow: hidden; padding: clamp(4rem, 3rem + 5vw, 7.5rem) 0; color: var(--white); text-align: center; background: var(--brand-900); }
.cta-banner__media { position: absolute; inset: 0; z-index: -2; }
.cta-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at center, rgba(50, 39, 57, .84), rgba(35, 27, 41, .97) 70%); }
.cta-banner__ornament { position: absolute; z-index: -1; width: 540px; height: 540px; border-radius: 50%; border: 1px solid rgba(200, 163, 95, .25); left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-banner__ornament::before, .cta-banner__ornament::after { content: ""; position: absolute; inset: -80px; border-radius: 50%; border: 1px solid rgba(200, 163, 95, .12); }
.cta-banner__ornament::after { inset: -170px; border-color: rgba(200, 163, 95, .06); }
.cta-banner h2 { color: var(--white); font-size: clamp(2.1rem, 1.5rem + 3vw, 4rem); margin-bottom: var(--space-4); }
.cta-banner h2 em { font-style: normal; color: var(--gold); }
.cta-banner p { color: var(--text-on-dark); max-width: 560px; margin: 0 auto var(--space-6); font-size: var(--fs-lg); font-weight: 300; }
.cta-banner .btn-group { justify-content: center; }

/* 8.12 Contato */
.contact { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(2rem, 1.5rem + 3vw, 4rem); align-items: start; }
.form-card { padding: clamp(1.5rem, 1.1rem + 2vw, 3rem); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.form-card h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem); margin-bottom: .5rem; }
.form-card > p { color: var(--text-muted); margin-bottom: var(--space-6); font-size: var(--fs-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.field { display: grid; gap: .45rem; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-heading); font-size: .8125rem; font-weight: 600; color: var(--brand); letter-spacing: .02em; }
.field label .req { color: #B42318; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); background: var(--gray-50);
  font-size: 1rem; color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23322739' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.75rem; }
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7C7284; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--gray-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: var(--ring); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B42318; background: #FFF7F6; }
.field__error { display: none; align-items: center; gap: .35rem; font-size: .8125rem; color: #B42318; font-weight: 500; }
.field.has-error .field__error { display: flex; }
.field__error .icon { width: 14px; height: 14px; }
.checkbox { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.6; font-family: var(--font-body) !important; font-weight: 400 !important; letter-spacing: 0 !important; }
.checkbox input { width: 20px; height: 20px; min-height: 0; margin-top: .1rem; accent-color: var(--brand); flex-shrink: 0; padding: 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; }
.form-actions small { font-size: var(--fs-xs); color: var(--text-muted); }
.form-status { display: none; gap: .75rem; align-items: flex-start; padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); }
.form-status.is-visible { display: flex; }
.form-status--success { background: #ECFDF3; color: #05603A; border: 1px solid #ABEFC6; }
.form-status--error { background: #FEF3F2; color: #B42318; border: 1px solid #FECDCA; }
.form-status .icon { width: 20px; height: 20px; margin-top: .1rem; }
.btn.is-loading { pointer-events: none; opacity: .8; }

.info-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-100); }
.info-item__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--brand); color: var(--gold); flex-shrink: 0; }
.info-item__icon .icon { width: 22px; height: 22px; }
.info-item > div { flex: 1; min-width: 0; }
.info-item strong { display: block; font-family: var(--font-heading); color: var(--brand); font-size: .9375rem; margin-bottom: .15rem; }
.info-item p, .info-item a { font-size: var(--fs-sm); color: var(--text-muted); overflow-wrap: anywhere; }
.info-item a:hover { color: var(--accent-600); }
.hours { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.hours th, .hours td { padding: .3rem 0; text-align: left; font-weight: 400; color: var(--text-muted); }
.hours td { text-align: right; color: var(--text); font-weight: 500; }
.map { margin-top: clamp(2.5rem, 2rem + 2vw, 4rem); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--gray-100); aspect-ratio: 21 / 8; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Política / texto legal */
.legal h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.legal .updated { font-size: var(--fs-sm); color: var(--text-muted); }

/* 9. FOOTER ================================================================ */
.site-footer { background: var(--brand-900); color: var(--text-on-dark-muted); font-size: var(--fs-sm); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .6; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.25fr; gap: clamp(2rem, 1.5rem + 2vw, 4rem); padding-block: clamp(3.5rem, 3rem + 3vw, 6rem) clamp(2.5rem, 2rem + 2vw, 4rem); }
.site-footer .brand { color: var(--white); margin-bottom: var(--space-5); }
.footer-about { max-width: 340px; margin-bottom: var(--space-5); line-height: 1.8; }
.footer-title { font-family: var(--font-heading); font-size: .8125rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--white); margin-bottom: var(--space-5); }
.footer-links { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-links a { color: var(--text-on-dark-muted); display: inline-flex; align-items: center; gap: .5rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; display: grid; gap: 1rem; }
.footer-contact li { display: flex; gap: .75rem; align-items: flex-start; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--gold); margin-top: .25rem; }
.footer-contact a { color: var(--text-on-dark); }
.footer-contact a:hover { color: var(--gold); }
.social { display: flex; gap: .6rem; list-style: none; padding: 0; }
.social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); color: var(--white); transition: all var(--dur) var(--ease); }
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--brand-900); transform: translateY(-3px); }
.social .icon { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; padding-block: 1.75rem; border-top: 1px solid rgba(255,255,255,.08); font-size: var(--fs-xs); }
.footer-bottom a { color: var(--text-on-dark); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; list-style: none; padding: 0; }

/* 10. WIDGETS FLUTUANTES ================================================== */
.float-actions { position: fixed; right: clamp(1rem, .5rem + 1vw, 1.75rem); bottom: clamp(1rem, .5rem + 1vw, 1.75rem); z-index: 90; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.back-to-top {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); color: var(--brand); box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s linear .4s, background .3s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s var(--ease); }
.back-to-top:hover { background: var(--brand); color: var(--gold); }
.back-to-top .icon { width: 20px; height: 20px; }
.whatsapp-float {
  position: relative; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: #0F7A41; color: var(--white); box-shadow: 0 12px 30px -8px rgba(15, 122, 65, .6);
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { color: var(--white); transform: scale(1.08); }
.whatsapp-float .icon { width: 30px; height: 30px; }
.whatsapp-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: pulseRing 2.4s var(--ease) infinite; }
.whatsapp-float__tip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(8px); white-space: nowrap; padding: .5rem .9rem; border-radius: var(--radius-sm); background: var(--brand); color: var(--white); font-size: var(--fs-xs); font-weight: 500; opacity: 0; pointer-events: none; transition: all .3s var(--ease); }
.whatsapp-float:hover .whatsapp-float__tip, .whatsapp-float:focus-visible .whatsapp-float__tip { opacity: 1; transform: translateY(-50%); }

.cookie-banner {
  position: fixed; left: clamp(1rem, .5rem + 1vw, 1.75rem); bottom: clamp(1rem, .5rem + 1vw, 1.75rem); z-index: 95;
  width: min(440px, calc(100% - 2rem - 76px));
  padding: 1.25rem 1.5rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
  font-size: var(--fs-xs); color: var(--text-muted);
  transform: translateY(calc(100% + 3rem)); visibility: hidden;
  transition: transform .6s var(--ease-out), visibility 0s linear .6s;
}
.cookie-banner.is-visible { transform: none; visibility: visible; transition: transform .6s var(--ease-out); }
.cookie-banner strong { display: flex; align-items: center; gap: .5rem; font-family: var(--font-heading); color: var(--brand); font-size: .9375rem; margin-bottom: .35rem; }
.cookie-banner strong .icon { color: var(--gold-dark); }
.cookie-banner .btn-group { margin-top: .9rem; gap: .5rem; }

/* 404 */
.error-page { min-height: 100vh; min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 2rem) 0 4rem; background: var(--brand-900); color: var(--text-on-dark); }
.error-page__code { font-family: var(--font-heading); font-size: clamp(6rem, 4rem + 10vw, 12rem); font-weight: 700; line-height: 1; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.error-page h1 { color: var(--white); font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem); margin: 1rem 0; }
.error-page .btn-group { justify-content: center; margin-top: 2rem; }

/* Ajustes de espaçamento de títulos fora de .section-head */
.ba h2, .faq-aside h2, .leader h2 + .leader__cro { margin-bottom: var(--space-4); }
.ba .lead, .faq-aside .lead { margin-top: 0; }

/* ==========================================================================
   Tratamentos em destaque (Invisalign e Lentes de Contato)
   ========================================================================== */
.page-hero--landing .lead { max-width: 640px; }
.page-hero__actions { margin: var(--space-6) 0 var(--space-5); }

/* Comparativo */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--white); }
.compare { width: 100%; min-width: 560px; border-collapse: collapse; font-size: var(--fs-sm); }
.compare th, .compare td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--gray-100); vertical-align: top; }
.compare thead th { font-family: var(--font-heading); font-size: 1rem; color: var(--brand); background: var(--gray-50); }
.compare thead th.compare__hl { background: var(--brand); color: var(--white); }
.compare tbody th { font-family: var(--font-heading); font-weight: 600; color: var(--brand); width: 26%; }
.compare td { color: var(--text-muted); }
.compare td.compare__hl { color: var(--text); font-weight: 500; background: rgba(200, 163, 95, .08); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare__note { margin-top: var(--space-4); font-size: var(--fs-sm); color: var(--text-muted); text-align: center; }
.indications { margin-top: var(--space-8); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); border-radius: var(--radius-lg); background: var(--gray-50); }
.indications h3 { color: var(--brand); }

/* Cards de destaque na home */
.highlight-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 1rem + 1.5vw, 2rem); }
.highlight-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); height: 100%; }
.highlight-card__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.highlight-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.highlight-card:hover .highlight-card__media img { transform: scale(1.04); }
.highlight-card__badge { position: absolute; left: 1.25rem; bottom: 1.25rem; box-shadow: 0 6px 18px -6px rgba(35, 27, 41, .55); padding: .4rem .85rem; border-radius: 999px; background: var(--brand); color: var(--gold-light); font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em; }
.highlight-card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(1.5rem, 1.2rem + 1vw, 2.25rem); }
.highlight-card__body h3 { font-size: clamp(1.35rem, 1.1rem + .8vw, 1.75rem); color: var(--brand); margin-bottom: .5rem; }
.highlight-card__body > p { color: var(--text-muted); }
.highlight-card .check-list { margin-bottom: var(--space-6); }
.highlight-card .btn-group { margin-top: auto; }

/* Hero com retrato da Dra. Adriana (foto à direita, texto à esquerda) */
.hero__media img { object-position: 100% 30%; }
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(35, 27, 41, .97) 0%, rgba(50, 39, 57, .93) 36%, rgba(50, 39, 57, .6) 50%, rgba(50, 39, 57, .12) 64%, rgba(50, 39, 57, 0) 74%),
    linear-gradient(0deg, rgba(35, 27, 41, .35), transparent 30%);
}
.hero__overlay::after { -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 45%); mask-image: linear-gradient(90deg, #000 0%, transparent 45%); }
.hero__inner { grid-template-columns: minmax(0, 700px); row-gap: 2rem; }
.hero-card { justify-self: start; width: auto; display: flex; align-items: center; gap: 1.5rem; padding: 1rem 1.5rem; }
.hero-card__top { margin-bottom: 0; }
.hero-card__score { font-size: 2.5rem; }
.hero-card__avatars { padding: 0 0 0 1.5rem; border-top: 0; border-left: 1px solid rgba(255,255,255,.18); }
.hero-card__avatars span { margin-left: 0; }
.hero__media picture { display: block; width: 100%; height: 100%; }

/* Feed manual do Instagram ============================================== */
.ig-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.75rem, .5rem + 1vw, 1.5rem); }
.ig-grid__fallback { grid-column: 1 / -1; text-align: center; padding: 2.5rem 1rem; border: 1px dashed var(--gray-200); border-radius: var(--radius-lg); }
.ig-grid__fallback a { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-heading); font-weight: 600; color: var(--accent-600); }
.ig-card { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius); background: var(--gray-100); color: var(--white); }
.ig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.ig-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; padding: 1.25rem; text-align: center;
  background: rgba(50, 39, 57, .62); opacity: 0; transition: opacity .35s var(--ease); }
.ig-card__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); }
.ig-card__icon svg, .ig-card__placeholder-icon svg { width: 24px; height: 24px; }
.ig-card__caption { font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 500; line-height: 1.4; max-width: 26ch; }
.ig-card, .ig-card:hover, .ig-card:focus-visible { color: var(--white); }
.ig-card__caption { color: var(--white); }
.ig-card:hover img, .ig-card:focus-visible img { transform: scale(1.04); }
.ig-card:hover .ig-card__overlay, .ig-card:focus-visible .ig-card__overlay { opacity: 1; }
.ig-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.ig-card--placeholder { background: linear-gradient(145deg, var(--brand) 0%, var(--brand-900) 100%); transition: background .35s var(--ease); }
.ig-card--placeholder:hover { background: linear-gradient(145deg, #3D3046 0%, var(--brand) 100%); }
.ig-card__placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; text-align: center;
  font-family: var(--font-heading); font-size: var(--fs-sm); color: var(--text-on-dark-muted); letter-spacing: .02em; }
.ig-card__placeholder-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(200, 163, 95, .55); color: var(--gold); }
