/* =====================================================================
   AMOR E VIDA — Telessaúde Humanizada
   Design system + styles
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (brandbook) */
  --wine: #6E0F12;       /* vermelho vinho profundo */
  --bordo: #5A1224;      /* bordô escuro */
  --marrom: #8A514E;     /* marrom rosado */
  --rosa: #C99A92;       /* rosa queimado */
  --bege: #D2C8BC;       /* bege neutro */
  --azul: #566E88;       /* azul acinzentado */
  --azul-claro: #8FA2BC; /* azul claro desaturado */

  /* Derived neutrals */
  --cream: #FBF7F3;
  --cream-2: #F4ECE3;
  --cream-3: #EFE4D9;
  --ink: #2B1318;
  --ink-soft: #6E555B;
  --line: rgba(43, 19, 24, .10);
  --line-soft: rgba(43, 19, 24, .07);

  /* Gradients */
  --grad-wine: linear-gradient(135deg, #7A1418 0%, #5A1224 55%, #3E0C1A 100%);
  --grad-rose: linear-gradient(135deg, #C99A92 0%, #8A514E 100%);
  --grad-blue: linear-gradient(135deg, #6C86A4 0%, #566E88 100%);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(58, 12, 26, .06);
  --shadow-md: 0 18px 40px -18px rgba(58, 12, 26, .26);
  --shadow-lg: 0 40px 80px -32px rgba(58, 12, 26, .42);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-brand: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 22px;
  --radius-lg: 30px;
  --container: 1200px;

  --topbar-h: 36px;
}
@media (max-width: 560px) { :root { --topbar-h: 32px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(80px + var(--topbar-h)); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }
::selection { background: var(--rosa); color: var(--bordo); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.25rem);
}
.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }

/* ---------- Typography utilities ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--bordo);
}
.h2 em { font-style: italic; color: var(--marrom); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--marrom);
  margin-bottom: 1.1rem;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rosa); box-shadow: 0 0 0 4px rgba(201,154,146,.25); }
.eyebrow--light { color: var(--bege); }
.eyebrow--light .eyebrow__dot { background: var(--rosa); }
.eyebrow--blue { color: var(--azul); }
.eyebrow--blue .eyebrow__dot { background: var(--azul-claro); box-shadow: 0 0 0 4px rgba(143,162,188,.25); }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink); line-height: 1.55; }
.muted { color: var(--ink-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__sub { margin-top: 1rem; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Shared illustration + split layout ---------- */
.ill { position: relative; display: grid; place-items: center; }
.ill::before {
  content: ""; position: absolute; inset: 4% 2%; z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(201,154,146,.32), rgba(201,154,146,.05) 70%);
  border-radius: 46% 54% 57% 43% / 50% 46% 54% 50%;
}
.ill img { position: relative; z-index: 1; width: 100%; max-width: 420px; height: auto; }
.ill--blue::before { background: radial-gradient(circle at 50% 45%, rgba(143,162,188,.4), rgba(143,162,188,.08) 70%); }
.ill--panel::before { inset: 0; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .ill { order: -1; }
.como__intro, .espec__intro { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.ill--panel { padding: 7%; }
.faq__split { grid-template-columns: 0.85fr 1.15fr; }
.faq__head { margin-bottom: 1.4rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .faq__split { grid-template-columns: 1fr; }
  .faq__split .ill { max-width: 360px; margin-inline: auto; }
  .como__intro .ill, .espec__intro .ill { max-width: 380px; margin-inline: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--bordo);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .3s, color .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--grad-wine); color: #fff; box-shadow: 0 12px 30px -12px rgba(90,18,36,.6); }
.btn--primary:hover { box-shadow: 0 20px 44px -14px rgba(90,18,36,.7); }

.btn--ghost { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(251,247,243,.35); }
.btn--ghost:hover { background: rgba(251,247,243,.10); box-shadow: inset 0 0 0 1.5px rgba(251,247,243,.6); }

.btn--outline { background: transparent; color: var(--bordo); box-shadow: inset 0 0 0 1.5px rgba(90,18,36,.28); }
.btn--outline:hover { background: rgba(90,18,36,.05); box-shadow: inset 0 0 0 1.5px rgba(90,18,36,.5); }

.btn--blue { background: var(--grad-blue); color: #fff; box-shadow: 0 12px 30px -12px rgba(86,110,136,.6); }

.btn--soft { background: rgba(138,81,78,.12); color: var(--bordo); }
.btn--soft:hover { background: rgba(138,81,78,.2); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 200;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: var(--grad-rose);
  transform-origin: left;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--bordo);
  transition: opacity .8s ease, visibility .8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { width: clamp(170px, 42vw, 240px); animation: preloadPulse 1.6s ease-in-out infinite; }
@keyframes preloadPulse { 0%, 100% { opacity: .5; transform: scale(.96); } 50% { opacity: 1; transform: scale(1); } }

/* ---------- Pills / tags ---------- */
.pill {
  display: inline-block;
  font-family: var(--font-brand); font-weight: 500; font-size: .85rem;
  padding: .5rem 1rem; border-radius: 999px;
  background: rgba(138,81,78,.10); color: var(--marrom);
}

/* =====================================================================
   TOPBAR (Amazonas-only disclaimer)
   ===================================================================== */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 160;
  background: linear-gradient(90deg, var(--bordo) 0%, #7A1418 100%);
  color: var(--bege);
  font-family: var(--font-brand);
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: .55rem clamp(1.25rem, 5vw, 2.25rem);
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  text-align: center;
}
.topbar__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rosa);
  box-shadow: 0 0 0 4px rgba(201,154,146,.25);
  animation: topbarPulse 2.2s ease-in-out infinite;
  flex: none;
}
.topbar strong { color: #fff; font-weight: 600; }
@keyframes topbarPulse { 0%,100%{opacity:1;} 50%{opacity:.55;} }
@media (max-width: 560px) {
  .topbar { font-size: .72rem; }
  .topbar__inner { padding: .5rem 1rem; }
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; inset: var(--topbar-h) 0 auto 0; z-index: 150;
  transition: background .4s ease, box-shadow .4s ease, transform .45s ease;
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 1.1rem clamp(1.25rem, 5vw, 2.25rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav.is-scrolled {
  background: rgba(251,247,243,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav.is-hidden { transform: translateY(-110%); }

.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--bordo); }
.brand__mark { width: 46px; height: 23px; flex: none; }
.brand__logo { height: 42px; width: auto; display: block; }
.brand__logo--footer { height: 50px; }
@media (max-width: 560px) { .brand__logo { height: 36px; } }
.brand__word {
  font-family: var(--font-brand); font-weight: 700; font-size: 1.18rem;
  letter-spacing: .01em; color: var(--bordo);
}
.nav.is-scrolled .brand, .nav.is-scrolled .brand__word { color: var(--bordo); }

.nav__links { display: flex; gap: 1.35rem; }
.nav__links a { white-space: nowrap; }
.nav__links a {
  font-family: var(--font-brand); font-weight: 500; font-size: .95rem;
  color: var(--ink); opacity: .88; position: relative; padding: .25rem 0;
  transition: opacity .25s, color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--rosa); transition: width .3s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav.is-scrolled .nav__links a { color: var(--ink); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--bordo); border-radius: 2px; transition: .3s; }
.nav.is-scrolled .nav__toggle span { background: var(--bordo); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column; gap: .25rem;
  padding: 1rem clamp(1.25rem, 5vw, 2.25rem) 1.75rem;
  background: rgba(251,247,243,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.nav__mobile a {
  font-family: var(--font-brand); font-weight: 500; padding: .85rem .25rem;
  border-bottom: 1px solid var(--line-soft); color: var(--ink);
}
.nav__mobile .btn { margin-top: 1rem; border-bottom: none; color: #fff; }
.nav__mobile.is-open { display: flex; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(165deg, #FDFAF7 0%, #F8EAE3 58%, #F1D9D1 100%);
  color: var(--ink);
  overflow: hidden;
  padding-block: 7rem 3.5rem;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

/* Organic floating blobs */
.blob { position: absolute; border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; will-change: transform; }
.blob--1 { width: 46vw; max-width: 600px; aspect-ratio: 1; background: radial-gradient(circle at 35% 35%, rgba(201,154,146,.5), rgba(201,154,146,.16)); top: -16%; right: -8%; }
.blob--2 { width: 32vw; max-width: 440px; aspect-ratio: 1; background: radial-gradient(circle at 40% 40%, rgba(143,162,188,.42), rgba(143,162,188,.12)); bottom: -18%; left: -10%; border-radius: 58% 42% 47% 53% / 55% 53% 47% 45%; }
.blob--3 { width: 15vw; max-width: 210px; aspect-ratio: 1; background: rgba(210,200,188,.55); top: 16%; left: 4%; }

.float-dot { position: absolute; border-radius: 50%; will-change: transform; }
.float-dot--1 { width: 16px; height: 16px; background: var(--rosa); top: 28%; right: 34%; }
.float-dot--2 { width: 10px; height: 10px; background: var(--azul-claro); bottom: 26%; right: 14%; }
.float-dot--3 { width: 22px; height: 22px; background: rgba(110,15,18,.16); top: 64%; left: 24%; }

.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative; z-index: 2; width: 100%; max-width: var(--container);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.hero__copy { max-width: 600px; }

.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.7rem, 5.2vw, 4.6rem); line-height: 1.03; letter-spacing: -0.02em;
  color: var(--bordo); margin-bottom: 1.3rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__accent { display: block; font-style: italic; font-weight: 400; color: var(--marrom); margin-top: .3rem; }
.hero__sub { max-width: 470px; font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); margin-bottom: 1.9rem; }
.hero__sub strong { color: var(--bordo); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.7rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 1.1rem; font-family: var(--font-brand); font-weight: 500; font-size: .9rem; color: var(--marrom); }
.hero__chips li { letter-spacing: .01em; }

/* Hero illustration */
.hero__art { position: relative; display: grid; place-items: center; }
.hero__art-blob {
  position: absolute; inset: 4% 2%; z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(201,154,146,.42), rgba(201,154,146,.08) 70%);
  border-radius: 46% 54% 57% 43% / 50% 46% 54% 50%;
}
.hero__art-img { position: relative; z-index: 1; width: 100%; max-width: 470px; height: auto; filter: drop-shadow(0 26px 46px rgba(90,18,36,.18)); }
.hero__art-badge {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: .45rem;
  background: #fff; color: var(--bordo); padding: .6rem .95rem; border-radius: 14px;
  box-shadow: var(--shadow-md); font-family: var(--font-brand); font-weight: 600; font-size: .88rem; white-space: nowrap;
}
.hero__art-badge--1 { top: 14%; left: -3%; }
.hero__art-badge--2 { bottom: 16%; right: -3%; }
.hero__art-badge strong { color: var(--marrom); }
.hero__art-badge small { color: var(--marrom); font-weight: 500; }
.hero__art-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #2faf5a; box-shadow: 0 0 0 4px rgba(47,175,90,.18); }

.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--font-brand); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--marrom);
}
.hero__scroll-line { width: 1.5px; height: 42px; background: linear-gradient(var(--marrom), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--rosa); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { top: -50%; } 100% { top: 110%; } }

/* =====================================================================
   PAGE HEADER (sub-pages) + nav active state
   ===================================================================== */
.nav__links a[aria-current="page"] { color: var(--bordo); opacity: 1; }
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__mobile a[aria-current="page"] { color: var(--bordo); }

.page-header {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(165deg, #FDFAF7 0%, #F8EAE3 100%);
  padding: clamp(8rem, 13vw, 11rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-header__bg { position: absolute; inset: 0; z-index: 0; }
.page-header .blob { animation: floatBlob 9s ease-in-out infinite; }
.page-header .blob--1 { width: 34vw; max-width: 420px; top: -18%; right: -6%; }
.page-header .blob--2 { width: 26vw; max-width: 340px; bottom: -24%; left: -8%; animation-delay: -3s; }
.page-header__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.25rem); }
.page-header .eyebrow { justify-content: center; }
.page-header__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--bordo); margin-block: .3rem .8rem;
}
.page-header__title em { font-style: italic; color: var(--marrom); }
.page-header__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 580px; margin-inline: auto; }
.page-header__inner > * { animation: fadeUp .8s both; }
.page-header__inner > *:nth-child(2) { animation-delay: .08s; }
.page-header__inner > *:nth-child(3) { animation-delay: .16s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes floatBlob { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(6deg); } }

/* Diferenciais (sobre) */
.dif { background: var(--cream-2); }
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }

/* Inline CTA row (home / especialidades) */
.incluso__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: clamp(2rem, 4vw, 3rem); }

/* Contato (dúvidas) */
.contato__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.contato__card { display: flex; flex-direction: column; gap: .4rem; padding: 2rem 1.8rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .4s, box-shadow .4s; }
.contato__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contato__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-rose); margin-bottom: .7rem; }
.contato__icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contato__card h3 { font-family: var(--font-brand); font-weight: 600; color: var(--bordo); font-size: 1.1rem; }
.contato__card a, .contato__card p { color: var(--ink-soft); font-size: 1rem; }
.contato__card a:hover { color: var(--marrom); }

@media (max-width: 860px) {
  .dif-grid, .contato__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

/* =====================================================================
   HERO PRICE (linha de preço destacada abaixo do subtítulo)
   ===================================================================== */
.hero__price {
  max-width: 480px;
  margin: -.6rem 0 1.9rem;
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
  color: var(--ink);
}
.hero__price strong { color: var(--bordo); font-weight: 600; }

/* =====================================================================
   STATS (faixa vermelha)
   ===================================================================== */
.stats {
  background: var(--bordo);
  background-image: radial-gradient(circle at 14% 22%, rgba(201,154,146,.18), transparent 42%),
                    radial-gradient(circle at 86% 78%, rgba(143,162,188,.16), transparent 46%);
  color: var(--bege);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* faixa vermelha vazia (sobre) */
.stats--band { padding-block: clamp(2rem, 4vw, 3rem); }

/* legacy .stat used on sobre.html — keep simple grid */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
.stat { text-align: center; position: relative; padding: .25rem .5rem; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -.8rem; top: 14%; height: 72%; width: 1px; background: rgba(210,200,188,.18); }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; line-height: 1; color: #fff; margin-bottom: .6rem; }
.stat__label { font-size: .95rem; color: rgba(210,200,188,.78); max-width: 220px; margin-inline: auto; }

/* Stats hero card (LP — preço + benefícios em lista) */
.stats-card {
  max-width: 880px;
  margin-inline: auto;
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(0,0,0,.18));
  border: 1px solid rgba(210,200,188,.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 30px 60px -28px rgba(0,0,0,.55);
}
.stats-card__price {
  text-align: center;
  padding-bottom: clamp(1.4rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(210,200,188,.18);
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}
.stats-card__tag {
  display: inline-block;
  font-family: var(--font-brand); font-weight: 600; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--rosa);
  background: rgba(251,247,243,.06);
  border: 1px solid rgba(201,154,146,.38);
  padding: .45rem 1rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.stats-card__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: #fff; line-height: 1;
  display: inline-flex; align-items: baseline; gap: .15em;
}
.stats-card__num small {
  font-family: var(--font-brand); font-weight: 500; font-size: .32em; color: var(--rosa);
}
.stats-card__alt { margin-top: .8rem; color: rgba(210,200,188,.78); font-size: .95rem; }

.stats-card__list {
  display: grid; gap: 1rem;
}
.stats-card__list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(210,200,188,.10);
  border-radius: 16px;
  transition: background .25s, transform .25s, border-color .25s;
}
.stats-card__list li:hover { background: rgba(255,255,255,.06); border-color: rgba(201,154,146,.32); transform: translateX(3px); }
.stats-card__ic {
  flex: none; width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rosa), var(--marrom));
  color: #fff;
  box-shadow: 0 8px 18px -10px rgba(138,81,78,.6);
}
.stats-card__ic svg { width: 22px; height: 22px; }
.stats-card__list strong {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: #fff; line-height: 1.2; margin-bottom: .15rem;
}
.stats-card__list span { color: rgba(210,200,188,.82); font-size: .92rem; line-height: 1.45; display: block; }

/* LP plan card (Plano Amor e Vida destaque na faixa vermelha) */
.lp-plan {
  max-width: 720px; margin: clamp(2rem, 4vw, 2.8rem) auto 0;
  background: linear-gradient(160deg, rgba(110,15,18,.55), rgba(58,12,26,.7));
  border: 1px solid rgba(201,154,146,.32);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.04);
  text-align: center;
}
.lp-plan__badge {
  display: inline-block;
  font-family: var(--font-brand); font-weight: 600;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bordo);
  background: var(--bege);
  padding: .45rem 1rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.lp-plan__price {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: #fff; line-height: 1;
  display: inline-flex; align-items: baseline; gap: .15em;
}
.lp-plan__cur {
  font-family: var(--font-brand); font-weight: 600;
  font-size: .35em; vertical-align: top; color: var(--rosa);
}
.lp-plan__per {
  font-family: var(--font-brand); font-weight: 500;
  font-size: .26em; color: rgba(210,200,188,.7);
}
.lp-plan__alt { color: rgba(210,200,188,.78); font-size: .92rem; margin-top: .5rem; }
.lp-plan__alt strong { color: var(--rosa); font-weight: 600; }
.lp-plan .btn { margin-top: 1.4rem; max-width: 360px; margin-inline: auto; background: var(--bege); color: var(--bordo); }
.lp-plan .btn:hover { background: #fff; }

.lp-plan__listhead {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin: 1.6rem 0 1rem;
  padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-brand); font-weight: 600;
  color: #fff;
}
.lp-plan__listhead::before {
  content: ""; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(201,154,146,.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C99A92' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 8-8 10-4.5-2-8-5-8-10V6z'/%3E%3C/svg%3E");
  background-size: 60% 60%; background-repeat: no-repeat; background-position: center;
}
.lp-plan__list {
  display: flex; flex-direction: column; gap: .65rem;
  text-align: left;
}
.lp-plan__list li {
  position: relative; padding-left: 1.5rem;
  color: rgba(255,255,255,.92); font-size: .96rem; line-height: 1.45;
}
.lp-plan__list li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--rosa);
}
.lp-plan__list li em {
  display: block; margin-top: .15rem;
  font-style: italic; color: rgba(210,200,188,.65); font-size: .84rem;
}
.lp-plan__list strong { color: var(--rosa); font-weight: 600; }

/* Feature card with bullet list (incluso — variant) */
.feature--wide .feature__list {
  margin-top: .7rem;
  display: flex; flex-direction: column; gap: .7rem;
}
.feature--wide .feature__list li {
  position: relative;
  padding-left: 2rem;
  font-size: .94rem; color: var(--ink-soft); line-height: 1.5;
}
.feature--wide .feature__list li::before {
  content: ""; position: absolute; left: 0; top: .12rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--marrom);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A514E' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 58% 58%; background-repeat: no-repeat; background-position: center;
}
.feature--wide .feature__list strong { color: var(--bordo); font-weight: 600; }

/* =====================================================================
   HARDWARE / CLÍNICA PRÓPRIA
   ===================================================================== */
.hardware {
  background: linear-gradient(180deg, #fff 0%, var(--cream-2) 100%);
  position: relative;
  overflow: hidden;
}
.hardware .h2 em { color: var(--marrom); }

.hardware__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  max-width: 1040px;
  aspect-ratio: 16 / 9;
}
.hardware__hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s ease;
}
.hardware__hero:hover img { transform: scale(1.03); }
.hardware__hero-tag {
  position: absolute;
  left: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 2;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: .9rem 1.2rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: .1rem;
  font-family: var(--font-brand);
}
.hardware__hero-tag strong { color: var(--bordo); font-weight: 700; font-size: 1rem; }
.hardware__hero-tag span { color: var(--ink-soft); font-size: .82rem; }

.hw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.hw-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0 0 1.6rem;
  overflow: hidden;
  box-shadow: 0 12px 30px -22px rgba(58,12,26,.32);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s;
  display: flex; flex-direction: column;
}
.hw-card:hover { transform: translateY(-8px); box-shadow: 0 30px 55px -24px rgba(138,81,78,.5); }
.hw-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 50% 55%, #FBF7F3 0%, #F4ECE3 70%, #EFE4D9 100%);
  display: grid; place-items: center;
  overflow: hidden;
  margin-bottom: 1.3rem;
}
.hw-card__img::before {
  content: ""; position: absolute; inset: 8% 8% 4% 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(110,15,18,.18), rgba(110,15,18,0) 70%);
  filter: blur(6px);
  pointer-events: none;
}
.hw-card__img img {
  position: relative; z-index: 1;
  max-width: 78%; max-height: 78%; width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(58,12,26,.22));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.hw-card:hover .hw-card__img img { transform: scale(1.06) rotate(-2deg); }
.hw-card__tag {
  display: inline-block; align-self: flex-start;
  margin: 0 1.5rem .55rem;
  font-family: var(--font-brand); font-weight: 600; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--marrom);
  background: rgba(201,154,146,.18);
  padding: .35rem .75rem; border-radius: 999px;
}
.hw-card h3 {
  margin: 0 1.5rem .5rem;
  font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--bordo);
}
.hw-card p {
  margin: 0 1.5rem;
  font-size: .94rem; color: var(--ink-soft); line-height: 1.5;
}

/* =====================================================================
   ESPECIALIDADES — "ver mais" button
   ===================================================================== */
.espec__more {
  display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 2.8rem);
}
.espec__more .btn--soft {
  background: rgba(251,247,243,.10);
  color: var(--bege);
  border: 1px solid rgba(210,200,188,.28);
}
.espec__more .btn--soft:hover {
  background: rgba(251,247,243,.18);
  color: #fff;
  border-color: var(--rosa);
}
.espec__more .btn svg {
  transition: transform .3s ease;
}
.espec__more .btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.chip-tag[hidden] { display: none !important; }

/* =====================================================================
   SOBRE
   ===================================================================== */
.sobre { background: var(--cream); }
.sobre__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.sobre__text .lead { margin-block: 1.4rem 1.2rem; }
.sobre__pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }

.sobre__visual { position: relative; }
.sobre__photo {
  margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1 / 1; }
.sobre__photo-quote {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: flex; align-items: center; gap: .9rem;
  padding: 3rem 1.6rem 1.5rem;
  background: linear-gradient(transparent, rgba(58,12,26,.88));
  color: var(--cream);
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.25;
}
.sobre__photo-quote svg { width: 46px; flex: none; }
.visual-card--mini { position: relative; z-index: 3; }
.visual-card {
  position: relative; border-radius: var(--radius-lg);
  background: var(--grad-wine); color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visual-card__mark { width: 130px; margin-bottom: 1.6rem; opacity: .95; }
.visual-card__quote { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-style: italic; line-height: 1.2; }
.visual-card__sub { margin-top: 1rem; color: rgba(210,200,188,.82); }
.visual-card--mini {
  background: var(--bege); color: var(--bordo);
  display: flex; flex-direction: column; padding: 1.4rem 1.6rem; margin-top: 1.2rem;
  box-shadow: var(--shadow-md);
}
.visual-card--mini strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.visual-card--mini span { font-size: .9rem; color: var(--marrom); }

/* =====================================================================
   COMO FUNCIONA
   ===================================================================== */
.como { background: var(--cream-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step {
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 2rem 1.6rem;
  position: relative; transition: transform .4s, box-shadow .4s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--rosa); display: block; margin-bottom: 1rem; line-height: 1; }
.step h3 { font-family: var(--font-brand); font-weight: 600; font-size: 1.15rem; color: var(--bordo); margin-bottom: .5rem; }
.step p { font-size: .96rem; color: var(--ink-soft); }

/* =====================================================================
   INCLUSO — feature grid
   ===================================================================== */
.incluso { background: #fff; position: relative; overflow: hidden; }
.incluso > .container { position: relative; z-index: 1; }
.incluso__decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.incluso__ic { position: absolute; fill: none; stroke: var(--marrom); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; opacity: .16; }
.incluso__ic--1 { width: 64px; top: 12%; left: 4%; animation: floatBlob 8s ease-in-out infinite; }
.incluso__ic--2 { width: 48px; top: 9%; right: 6%; animation: floatBlob 9s ease-in-out -2s infinite; }
.incluso__ic--3 { width: 80px; top: 48%; left: 2%; animation: floatBlob 10s ease-in-out -4s infinite; }
.incluso__ic--4 { width: 54px; bottom: 13%; left: 7%; animation: floatBlob 8.5s ease-in-out -1s infinite; }
.incluso__ic--5 { width: 62px; bottom: 10%; right: 4%; animation: floatBlob 9.5s ease-in-out -3s infinite; }
.incluso__ic--6 { width: 44px; top: 53%; right: 3%; animation: floatBlob 8s ease-in-out -5s infinite; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: feat; }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1040px; margin-inline: auto; }
.feature {
  counter-increment: feat; position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 2.1rem 1.7rem 1.8rem;
  box-shadow: 0 12px 30px -22px rgba(58,12,26,.32);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s;
}
.feature::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--grad-rose); transform: scaleX(0); transform-origin: left; transition: transform .5s ease;
}
.feature:hover { transform: translateY(-10px); box-shadow: 0 30px 55px -24px rgba(138,81,78,.5); }
.feature:hover::after { transform: scaleX(1); }
.feature-grid .feature::before {
  content: counter(feat, decimal-leading-zero);
  position: absolute; top: .55rem; right: 1.3rem; z-index: 0;
  font-family: var(--font-display); font-style: italic; font-size: 2.8rem; line-height: 1;
  color: var(--rosa); opacity: .3; pointer-events: none;
}
.feature__icon {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-rose); margin-bottom: 1.2rem; box-shadow: 0 10px 20px -8px rgba(138,81,78,.55);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.feature:hover .feature__icon { transform: scale(1.1) rotate(-5deg); }
.feature__icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-family: var(--font-brand); font-weight: 600; font-size: 1.1rem; color: var(--bordo); margin-bottom: .45rem; }
.feature p { font-size: .94rem; color: var(--ink-soft); }

/* =====================================================================
   ESPECIALIDADES
   ===================================================================== */
.espec { background: var(--grad-wine); color: var(--cream); position: relative; overflow: hidden; }
.espec .h2 { color: #fff; }
.espec .h2 em { color: var(--rosa); }
.espec .eyebrow { color: var(--rosa); }
.espec .section-head__sub { color: rgba(210,200,188,.8); }
.espec__grid { display: flex; flex-wrap: wrap; gap: .85rem; }
.chip-tag {
  font-family: var(--font-brand); font-weight: 500; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: 999px;
  background: rgba(251,247,243,.06);
  border: 1px solid rgba(210,200,188,.18);
  color: var(--bege);
  transition: background .3s, transform .3s, border-color .3s;
}
.chip-tag em { color: var(--rosa); font-size: .82em; font-style: normal; margin-left: .25rem; }
.chip-tag:hover { background: rgba(201,154,146,.18); border-color: var(--rosa); transform: translateY(-3px); }

/* =====================================================================
   PLANOS
   ===================================================================== */
.planos { background: var(--cream-2); }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: start; }
.plan {
  position: relative; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.plan--featured {
  background: var(--grad-wine); color: var(--cream); border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.plan__badge {
  position: absolute; top: -.85rem; left: clamp(1.8rem, 3vw, 2.6rem);
  font-family: var(--font-brand); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--rosa); color: var(--bordo); padding: .4rem .9rem; border-radius: 999px;
}
.plan__name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin-bottom: .4rem; }
.plan--featured .plan__name { color: #fff; }
.plan__desc { color: var(--ink-soft); margin-bottom: 1.4rem; }
.plan--featured .plan__desc { color: rgba(210,200,188,.82); }
.plan__price { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 500; line-height: 1; color: var(--bordo); }
.plan--featured .plan__price { color: #fff; }
.plan__price--from { font-size: clamp(2rem, 4vw, 2.6rem); }
.plan__cur { font-size: .42em; font-family: var(--font-brand); font-weight: 600; vertical-align: middle; color: var(--marrom); margin-right: .15rem; }
.plan--featured .plan__cur { color: var(--rosa); }
.plan__per { font-size: .3em; font-family: var(--font-brand); color: var(--ink-soft); font-weight: 500; }
.plan--featured .plan__per { color: rgba(210,200,188,.8); }
.plan__alt { font-size: .9rem; color: rgba(210,200,188,.7); margin-block: .5rem 1.4rem; }
.plan .btn { margin-block: 1.4rem; }
.plan--featured .btn--primary { background: var(--bege); color: var(--bordo); }
.plan--featured .btn--primary:hover { background: #fff; }

.plan__list li, .plan__tiers li { position: relative; padding: .55rem 0 .55rem 1.9rem; font-size: .98rem; border-bottom: 1px solid rgba(210,200,188,.18); }
.plan__list li { border-color: rgba(255,255,255,.12); }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: .72rem; width: 1.1rem; height: .62rem;
  border-left: 2px solid var(--rosa); border-bottom: 2px solid var(--rosa); transform: rotate(-45deg);
}
.plan__tiers { margin-top: .4rem; }
.plan__tiers li { display: flex; justify-content: space-between; align-items: center; padding-left: 0; border-color: var(--line); }
.plan__tiers li span { color: var(--ink-soft); }
.plan__tiers li strong { font-family: var(--font-brand); color: var(--bordo); }
.plan__note { margin-top: 1.2rem; font-size: .9rem; color: var(--ink-soft); }

/* Plan featured wide (titular card) */
.plan--wide { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.plan__listhead {
  display: flex; align-items: center; gap: .6rem;
  margin: 1.4rem 0 .9rem;
  padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-brand); font-weight: 600;
  color: #fff;
}
.plan__listhead::before {
  content: ""; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(201,154,146,.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C99A92' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 8-8 10-4.5-2-8-5-8-10V6z'/%3E%3C/svg%3E");
  background-size: 60% 60%; background-repeat: no-repeat; background-position: center;
}
.plan__list li em { display: block; color: rgba(210,200,188,.65); font-size: .82rem; font-style: italic; margin-top: .15rem; }

/* Dependentes cards (sem upgrade e com upgrade) */
.plans--dep { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 1.8rem; }
.plan--dep {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.plan__starhead {
  display: flex; align-items: center; gap: .9rem;
  padding-bottom: 1rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.plan__star {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  background: var(--bordo);
  display: grid; place-items: center;
  box-shadow: 0 10px 18px -10px rgba(90,18,36,.55);
}
.plan__star svg { width: 24px; height: 24px; }
.plan__star--lg { width: 60px; height: 60px; }
.plan__star--lg svg { width: 30px; height: 30px; }
.plan__name--display {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500;
  color: var(--bordo); margin: 0; line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase;
}
.plan__checklist { display: flex; flex-direction: column; gap: .85rem; }
.plan__checklist li {
  position: relative; padding-left: 2.4rem;
  font-size: .98rem; line-height: 1.5; color: var(--ink);
}
.plan__checklist li::before {
  content: ""; position: absolute; left: 0; top: .1rem;
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: var(--bordo);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 60% 60%; background-repeat: no-repeat; background-position: center;
}
.plan__notice {
  display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: center;
  margin-top: 1.4rem; padding: 1rem 1.1rem;
  background: rgba(201,154,146,.16);
  border-radius: 16px;
}
.plan__notice-ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(110,15,18,.08);
  display: grid; place-items: center;
  color: var(--bordo);
}
.plan__notice-ic svg { width: 24px; height: 24px; }
.plan__notice strong {
  display: block; font-family: var(--font-brand); font-weight: 700;
  color: var(--bordo); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .2rem;
}
.plan__notice p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* Upgrade tiers (escalonado 1º-5º) */
.upgrade-tiers {
  margin-top: 1.8rem;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
  max-width: 720px; margin-inline: auto;
}
.upgrade-tiers__head {
  text-align: center; padding-bottom: 1.6rem;
  display: grid; place-items: center; gap: .8rem;
}
.upgrade-tiers__head h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--bordo); line-height: 1.05; text-transform: uppercase;
  letter-spacing: -.01em;
}
.upgrade-tiers__head p { max-width: 44ch; color: var(--ink); font-size: 1rem; line-height: 1.5; }
.upgrade-tiers__head p strong { color: var(--bordo); }

.upgrade-tiers__notes {
  display: grid; gap: .7rem;
  margin: 1.4rem 0 1.8rem;
}
.upgrade-tiers__note {
  display: grid; grid-template-columns: 44px 1fr; gap: .9rem; align-items: center;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: .96rem; color: var(--ink);
}
.upgrade-tiers__note svg { width: 26px; height: 26px; color: var(--bordo); }
.upgrade-tiers__note--accent { background: rgba(201,154,146,.16); border-color: rgba(201,154,146,.45); }
.upgrade-tiers__note strong { color: var(--bordo); }

.upgrade-tiers__list { display: flex; flex-direction: column; gap: .55rem; }
.upgrade-tiers__list li {
  display: grid; grid-template-columns: 44px 1fr auto auto; gap: .9rem; align-items: center;
  padding: .85rem 1.1rem;
  background: rgba(201,154,146,.08);
  border-radius: 14px;
}
.upgrade-tiers__ic {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--bordo); color: #fff;
  display: grid; place-items: center;
}
.upgrade-tiers__ic svg { width: 18px; height: 18px; }
.upgrade-tiers__label { color: var(--ink); font-family: var(--font-brand); font-weight: 500; }
.upgrade-tiers__dots {
  flex: 1; height: 1px;
  background-image: radial-gradient(circle, var(--marrom) 1px, transparent 1.5px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  opacity: .35;
  margin: 0 .3rem;
}
.upgrade-tiers__list strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--bordo);
  display: inline-flex; align-items: baseline; gap: .15em;
}
.upgrade-tiers__list strong small {
  font-family: var(--font-brand); font-weight: 500; font-size: .55em; color: var(--ink-soft);
}
.upgrade-tiers__foot {
  display: grid; grid-template-columns: 44px 1fr; gap: .9rem; align-items: center;
  margin-top: 1.5rem; padding: 1rem 1.1rem;
  background: rgba(201,154,146,.18);
  border: 1px solid rgba(201,154,146,.4);
  border-radius: 14px;
  font-size: .95rem; color: var(--ink);
}
.upgrade-tiers__foot svg { width: 26px; height: 26px; color: var(--bordo); justify-self: center; }
.upgrade-tiers__foot strong { color: var(--bordo); }

@media (max-width: 720px) {
  .plans--dep { grid-template-columns: 1fr; }
  .upgrade-tiers__list li { grid-template-columns: 36px 1fr auto; }
  .upgrade-tiers__dots { display: none; }
}

/* Simulação */
.sim {
  margin-top: 1.6rem; background: var(--bege); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem); display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center;
}
.sim__head h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; color: var(--bordo); line-height: 1.15; }
.sim__head p { margin-top: .7rem; color: var(--marrom); font-size: .96rem; }
.sim__rows { display: grid; gap: .1rem; }
.sim__row { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid rgba(90,18,36,.14); }
.sim__row span { color: var(--marrom); }
.sim__row em { color: var(--ink-soft); font-size: .85em; }
.sim__row strong { font-family: var(--font-brand); color: var(--bordo); }
.sim__total { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; background: var(--grad-wine); color: var(--cream); border-radius: var(--radius); padding: 1.3rem 1.6rem; }
.sim__total span { font-family: var(--font-brand); font-weight: 500; }
.sim__total strong { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; }
.sim__total small { font-size: .42em; font-family: var(--font-brand); color: var(--rosa); }

.planos__fineprint { margin-top: 1.6rem; text-align: center; color: var(--ink-soft); font-size: .92rem; }

/* =====================================================================
   SEGURO
   ===================================================================== */
.seguro { background: var(--cream); }
.seguro__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.seguro__card {
  text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.8rem) 1.8rem; background: var(--cream);
  transition: transform .4s, box-shadow .4s;
}
.seguro__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.seguro__val { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 500; color: var(--marrom); margin-bottom: .6rem; }
.seguro__card h3 { font-family: var(--font-brand); font-weight: 600; font-size: 1.15rem; color: var(--bordo); margin-bottom: .5rem; }
.seguro__card p { color: var(--ink-soft); font-size: .96rem; }

/* =====================================================================
   EMPRESAS / NR-1 (B2B — blue accents)
   ===================================================================== */
.empresas {
  background: linear-gradient(180deg, #20242E 0%, #2A3340 100%);
  color: #E7ECF2;
  padding-block: clamp(4.5rem, 10vw, 8.5rem);
  position: relative;
}
.empresas .h2 { color: #fff; }
.empresas .h2 em { color: var(--azul-claro); }
.empresas .section-head__sub { color: rgba(231,236,242,.78); }
.empresas .section-head__sub strong { color: #fff; }

.nr1-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.nr1-step { background: rgba(143,162,188,.08); border: 1px solid rgba(143,162,188,.18); border-radius: var(--radius); padding: 1.8rem 1.5rem; }
.nr1-step__num { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--grad-blue); color: #fff; font-family: var(--font-brand); font-weight: 700; margin-bottom: 1.1rem; }
.nr1-step h3 { font-family: var(--font-brand); font-weight: 600; font-size: 1.08rem; color: #fff; margin-bottom: .5rem; }
.nr1-step p { font-size: .92rem; color: rgba(231,236,242,.72); }

/* Package equation (pinned scene) */
.package { margin-bottom: clamp(3rem, 6vw, 5rem); }
.package__inner { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1.2rem; align-items: stretch; }
.package__item {
  background: rgba(143,162,188,.08); border: 1px solid rgba(143,162,188,.2);
  border-radius: var(--radius); padding: 1.8rem 1.6rem; display: flex; flex-direction: column;
}
.package__item--total { background: var(--grad-blue); border-color: transparent; box-shadow: 0 30px 60px -28px rgba(86,110,136,.8); }
.package__tag { font-family: var(--font-brand); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--azul-claro); margin-bottom: .9rem; }
.package__tag--total { color: #fff; }
.package__price { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 500; color: #fff; line-height: 1; margin-bottom: .9rem; }
.package__price small { font-size: .32em; font-family: var(--font-brand); color: rgba(231,236,242,.7); }
.package__item p { font-size: .92rem; color: rgba(231,236,242,.78); }
.package__item--total p { color: rgba(255,255,255,.9); }
.package__op { display: grid; place-items: center; font-family: var(--font-display); font-size: 2.4rem; color: var(--azul-claro); }

/* Telessaúde tiers (free + paid) */
.tele-tiers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.tele-tier {
  background: rgba(143,162,188,.08);
  border: 1px solid rgba(143,162,188,.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  position: relative;
}
.tele-tier--featured {
  background: linear-gradient(150deg, rgba(143,162,188,.22), rgba(86,110,136,.32));
  border-color: rgba(143,162,188,.5);
  box-shadow: 0 30px 60px -28px rgba(86,110,136,.6);
}
.tele-tier__tag {
  display: inline-block;
  font-family: var(--font-brand); font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--azul-claro);
  background: rgba(143,162,188,.18);
  padding: .4rem .9rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.tele-tier__tag--featured { background: rgba(255,255,255,.14); color: #fff; }
.tele-tier__price {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 4.4vw, 3rem);
  color: #fff; line-height: 1; margin-bottom: 1rem;
  display: flex; align-items: baseline; gap: .25em;
}
.tele-tier__price small { font-size: .32em; font-family: var(--font-brand); color: rgba(231,236,242,.72); font-weight: 500; }
.tele-tier p { color: rgba(231,236,242,.82); font-size: .96rem; line-height: 1.55; }

/* Enterprise pricing tiers */
.ent-pricing { margin-bottom: clamp(3rem, 5vw, 4rem); }
.ent-pricing__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 2.8rem); }
.ent-pricing__head h3 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff; line-height: 1.15; margin-bottom: .8rem;
}
.ent-pricing__head p { color: rgba(231,236,242,.78); font-size: 1rem; }
.ent-pricing__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.ent-tier {
  background: rgba(143,162,188,.08);
  border: 1px solid rgba(143,162,188,.2);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.ent-tier:hover { transform: translateY(-6px); border-color: rgba(143,162,188,.45); box-shadow: 0 24px 48px -28px rgba(0,0,0,.6); }
.ent-tier__range {
  font-family: var(--font-brand); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--azul-claro);
}
.ent-tier__price {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff; line-height: 1;
  display: flex; align-items: baseline; gap: .2em;
}
.ent-tier__price small { font-size: .34em; font-family: var(--font-brand); color: rgba(231,236,242,.7); font-weight: 500; }
.ent-tier p { color: rgba(231,236,242,.74); font-size: .9rem; line-height: 1.5; }
.ent-tier--featured {
  background: var(--grad-blue);
  border-color: transparent;
  box-shadow: 0 30px 60px -28px rgba(86,110,136,.7);
}
.ent-tier--featured .ent-tier__range { color: #fff; }
.ent-tier--featured p { color: rgba(255,255,255,.92); }
.ent-pricing__note { text-align: center; margin-top: 1.4rem; color: rgba(231,236,242,.6); font-size: .88rem; }

/* Card hero: Assinatura Amor e Vida + NR-1 (visão completa, compacto) */
.ent-hero {
  max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(0,0,0,.18));
  border: 1px solid rgba(143,162,188,.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -32px rgba(0,0,0,.5);
}
.ent-hero__head { text-align: center; margin-bottom: 1.2rem; }
.ent-hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff; line-height: 1.1; letter-spacing: -.01em;
}
.ent-hero__title span { color: var(--azul-claro); font-style: italic; }
.ent-hero__subtitle {
  font-family: var(--font-display); font-style: italic;
  color: var(--azul-claro); font-size: clamp(.95rem, 1.4vw, 1.05rem);
  margin: .35rem 0 .7rem;
}
.ent-hero__intro {
  color: rgba(231,236,242,.82); font-size: .9rem; line-height: 1.5;
  max-width: 56ch; margin-inline: auto;
}

.ent-hero__rights {
  padding: 1rem 1.2rem;
  background: rgba(143,162,188,.06);
  border: 1px solid rgba(143,162,188,.18);
  border-radius: 14px;
  margin-bottom: .9rem;
}
.ent-hero__rightshead {
  font-family: var(--font-brand); font-weight: 600;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--azul-claro);
  margin-bottom: .7rem;
}
.ent-hero__rights ul { display: flex; flex-direction: column; gap: .4rem; }
.ent-hero__rights li {
  position: relative; padding-left: 1.2rem;
  color: rgba(231,236,242,.92); font-size: .9rem; line-height: 1.4;
}
.ent-hero__rights li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .4rem; height: .4rem; border-radius: 50%;
  background: var(--azul-claro);
}
.ent-hero__rights li em {
  display: block; margin-top: .12rem;
  font-style: italic; color: rgba(231,236,242,.55); font-size: .82rem;
}

.ent-hero__solution {
  display: grid; grid-template-columns: 26px 1fr; gap: .7rem; align-items: center;
  margin-bottom: .9rem;
  padding: .7rem 1rem;
  background: rgba(143,162,188,.06);
  border: 1px dashed rgba(143,162,188,.3);
  border-radius: 12px;
}
.ent-hero__solution svg { width: 22px; height: 22px; color: var(--azul-claro); }
.ent-hero__solution span { color: rgba(231,236,242,.85); font-size: .86rem; line-height: 1.45; }
.ent-hero__solution strong { color: #fff; font-weight: 600; }

.ent-hero__price {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center;
  padding: 1.1rem 1.3rem;
  background: rgba(143,162,188,.1);
  border: 1px solid rgba(143,162,188,.28);
  border-radius: 14px;
  margin-bottom: .8rem;
}
.ent-hero__price-main { text-align: center; }
.ent-hero__price-label {
  font-family: var(--font-brand); font-weight: 600;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--azul-claro); margin-bottom: .25rem;
}
.ent-hero__price-num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: #fff; line-height: 1;
}
.ent-hero__price-num small {
  display: block; font-family: var(--font-brand); font-weight: 500;
  font-size: .28em; color: var(--azul-claro); margin-top: .25rem; letter-spacing: .04em;
}
.ent-hero__price-break {
  color: rgba(231,236,242,.78); font-size: .82rem; line-height: 1.45;
  text-align: left; border-left: 2px solid rgba(143,162,188,.3); padding-left: .9rem;
}

.ent-hero__adesao {
  display: grid; grid-template-columns: 26px 1fr; gap: .7rem; align-items: center;
  padding: .6rem .8rem;
  margin-bottom: 1.1rem;
}
.ent-hero__adesao svg { width: 22px; height: 22px; color: var(--azul-claro); }
.ent-hero__adesao span { color: rgba(231,236,242,.82); font-size: .85rem; line-height: 1.45; }
.ent-hero__adesao strong { color: var(--azul-claro); font-weight: 600; }

.ent-hero__subcards {
  display: grid; grid-template-columns: 1fr 1fr; gap: .8rem;
}
.ent-hero__sub {
  padding: 1rem 1.1rem;
  background: rgba(143,162,188,.06);
  border: 1px solid rgba(143,162,188,.18);
  border-radius: 12px;
}
.ent-hero__subtag {
  display: inline-block;
  font-family: var(--font-brand); font-weight: 600;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--azul-claro);
  margin-bottom: .55rem;
}
.ent-hero__sub h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: #fff; line-height: 1.2;
  margin-bottom: .45rem;
}
.ent-hero__sub h3 em { font-style: italic; color: var(--azul-claro); }
.ent-hero__sub p { color: rgba(231,236,242,.78); font-size: .82rem; line-height: 1.45; }
.ent-hero__sub p + p { margin-top: .45rem; }

@media (max-width: 720px) {
  .ent-hero__price { grid-template-columns: 1fr; }
  .ent-hero__price-break { border-left: 0; border-top: 1px solid rgba(143,162,188,.2); padding: .9rem 0 0; text-align: center; }
  .ent-hero__subcards { grid-template-columns: 1fr; }
}

/* Card "Dependentes do seu colaborador" */
.ent-deps {
  max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(0,0,0,.18));
  border: 1px solid rgba(143,162,188,.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -32px rgba(0,0,0,.5);
}
.ent-deps__head { margin-bottom: 1.2rem; }
.ent-deps__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: #fff; line-height: 1.05; letter-spacing: -.01em;
  text-transform: uppercase;
}
.ent-deps__subtitle {
  font-family: var(--font-display); font-style: italic;
  color: var(--azul-claro); font-size: clamp(.95rem, 1.6vw, 1.1rem);
  margin-top: .5rem; line-height: 1.4;
}
.ent-deps__list {
  display: flex; flex-direction: column;
  margin-bottom: 1.2rem;
}
.ent-deps__list li {
  display: grid; grid-template-columns: 28px 1fr; gap: .8rem; align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(143,162,188,.12);
  color: rgba(231,236,242,.92); font-size: .94rem; line-height: 1.4;
}
.ent-deps__list li:last-child { border-bottom: 0; }
.ent-deps__ic {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(143,162,188,.15);
  border: 1px solid var(--azul-claro);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FA2BC' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 60% 60%; background-repeat: no-repeat; background-position: center;
}

.ent-deps__cover {
  display: grid; grid-template-columns: 50px 1fr; gap: 1rem; align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(143,162,188,.08);
  border: 1px solid rgba(143,162,188,.24);
  border-radius: 14px;
  margin-bottom: 1.2rem;
}
.ent-deps__family {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(143,162,188,.12);
  display: grid; place-items: center;
  color: var(--azul-claro);
}
.ent-deps__family svg { width: 28px; height: 28px; }
.ent-deps__cover p { color: rgba(231,236,242,.88); font-size: .95rem; line-height: 1.4; }
.ent-deps__cover strong { color: var(--azul-claro); font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; }

.ent-deps__taglines {
  display: flex; flex-direction: column; gap: .35rem;
  text-align: center;
  padding-top: .8rem;
  border-top: 1px solid rgba(143,162,188,.16);
}
.ent-deps__taglines p {
  color: rgba(231,236,242,.85);
  font-size: .96rem;
}
.ent-deps__taglines span { color: var(--azul-claro); font-weight: 600; }

/* Pacote empresarial (Assinatura + NR-1 = R$ 69,90) */
.ent-pack {
  max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: rgba(143,162,188,.08);
  border: 1px solid rgba(143,162,188,.2);
  border-radius: var(--radius-lg);
  text-align: center;
}
.ent-pack__title {
  font-family: var(--font-brand); font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: #fff; letter-spacing: .04em;
  text-transform: uppercase;
}
.ent-pack__title span { color: var(--azul-claro); }
.ent-pack__subtitle {
  font-family: var(--font-brand); font-weight: 500;
  font-size: .85rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--azul-claro); margin-top: .3rem; margin-bottom: 1.6rem;
}
.ent-pack__sum {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center;
  padding: 1.4rem;
  background: rgba(143,162,188,.06);
  border: 1px solid rgba(143,162,188,.18);
  border-radius: 18px;
  margin-bottom: 1.4rem;
}
.ent-pack__item { text-align: left; }
.ent-pack__price {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff; line-height: 1;
}
.ent-pack__item p {
  font-family: var(--font-brand); font-weight: 500;
  color: #fff; margin-top: .3rem; font-size: .98rem;
}
.ent-pack__item span { color: var(--azul-claro); font-size: .9rem; }
.ent-pack__plus {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(143,162,188,.18);
  color: var(--azul-claro);
  font-family: var(--font-display); font-size: 1.6rem;
}
.ent-pack__total {
  padding: 1.4rem;
  background: linear-gradient(160deg, rgba(143,162,188,.18), rgba(86,110,136,.32));
  border-radius: 18px;
}
.ent-pack__tag {
  display: inline-block;
  font-family: var(--font-brand); font-weight: 600; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--azul-claro);
  background: rgba(255,255,255,.08);
  padding: .4rem 1rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.ent-pack__totalprice {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; line-height: 1;
  display: inline-flex; align-items: baseline; gap: .15em;
}
.ent-pack__totalprice small {
  font-family: var(--font-brand); font-weight: 500; font-size: .28em; color: rgba(231,236,242,.7);
}
.ent-pack__feats {
  display: grid; gap: .6rem;
  max-width: 480px; margin: 1.2rem auto 0;
}
.ent-pack__feats li {
  display: grid; grid-template-columns: 28px 1fr; gap: .7rem; align-items: center;
  padding: .75rem 1rem;
  background: rgba(0,0,0,.18);
  border-radius: 12px;
  font-size: .92rem;
  color: rgba(231,236,242,.92);
  text-align: left;
}
.ent-pack__feats svg { width: 22px; height: 22px; color: var(--azul-claro); }
.ent-pack__adesao {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .55rem 1.4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(143,162,188,.4);
  border-radius: 999px;
  font-family: var(--font-brand); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--azul-claro);
}

/* O que sua empresa recebe (lista de benefícios) */
.ent-benefits {
  max-width: 820px; margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: rgba(143,162,188,.06);
  border: 1px solid rgba(143,162,188,.18);
  border-radius: var(--radius-lg);
}
.ent-benefits__title {
  font-family: var(--font-brand); font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: #fff; letter-spacing: .04em; text-transform: uppercase;
  text-align: center; margin-bottom: 1.6rem;
}
.ent-benefits__title strong { color: var(--azul-claro); font-weight: 700; }
.ent-benefits__list { display: grid; gap: .8rem; }
.ent-benefits__list li {
  display: grid; grid-template-columns: 32px 1fr; gap: 1rem; align-items: start;
  padding: 1.05rem 1.2rem;
  background: rgba(143,162,188,.06);
  border: 1px solid rgba(143,162,188,.14);
  border-radius: 14px;
  transition: background .25s, border-color .25s, transform .25s;
}
.ent-benefits__list li:hover {
  background: rgba(143,162,188,.12);
  border-color: rgba(143,162,188,.32);
  transform: translateX(2px);
}
.ent-benefits__ic {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--azul-claro);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 56% 56%; background-repeat: no-repeat; background-position: center;
  margin-top: .15rem;
  box-shadow: 0 6px 14px -6px rgba(143,162,188,.6);
}
.ent-benefits__body { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.ent-benefits__body strong {
  display: block; color: #fff; font-family: var(--font-brand); font-weight: 600;
  font-size: 1rem; line-height: 1.35;
}
.ent-benefits__body span { color: rgba(231,236,242,.78); font-size: .92rem; line-height: 1.5; display: block; }

/* Resultados para a empresa */
.ent-results {
  max-width: 820px; margin: 0 auto clamp(3rem, 6vw, 4rem);
  background: linear-gradient(160deg, rgba(143,162,188,.16), rgba(86,110,136,.22));
  border: 1px solid rgba(143,162,188,.3);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.4rem);
}
.ent-results__title {
  font-family: var(--font-brand); font-weight: 700;
  font-size: 1rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--azul-claro); text-align: center; margin-bottom: 1.6rem;
}
.ent-results__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.ent-results__item { text-align: center; }
.ent-results__item svg { width: 38px; height: 38px; color: var(--azul-claro); margin-bottom: .8rem; display: inline-block; }
.ent-results__item p { color: rgba(231,236,242,.92); font-size: .9rem; line-height: 1.5; }
.ent-results__item strong { color: #fff; font-weight: 600; display: inline; }

@media (max-width: 860px) {
  .ent-pack__sum { grid-template-columns: 1fr; gap: 1.2rem; }
  .ent-pack__plus { justify-self: center; }
  .ent-results__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ent-results__grid { grid-template-columns: 1fr; }
}

/* ROI */
.roi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: clamp(3rem, 5vw, 4rem); }
.roi__item { border-top: 2px solid rgba(143,162,188,.3); padding-top: 1.6rem; }
.roi__num { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 500; color: var(--azul-claro); line-height: 1; margin-bottom: .6rem; }
.roi__item h3 { font-family: var(--font-brand); font-weight: 600; font-size: 1.15rem; color: #fff; margin-bottom: .5rem; }
.roi__item p { font-size: .95rem; color: rgba(231,236,242,.74); }
.roi__item p span { display: block; margin-top: .5rem; font-size: .82rem; color: var(--azul-claro); }

.empresas__cta {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center;
  background: rgba(143,162,188,.1); border: 1px solid rgba(143,162,188,.2);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem);
}
.empresas__cta-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 16 / 11; box-shadow: var(--shadow-md); }
.empresas__cta-body { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.empresas__cta h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 500; color: #fff; line-height: 1.2; max-width: 30ch; }
.empresas__cta p { color: rgba(231,236,242,.72); font-size: .92rem; }

/* =====================================================================
   DEPOIMENTOS
   ===================================================================== */
.depo { background: var(--cream-2); }
.depo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.depo__card {
  margin: 0; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-sm);
  transition: transform .4s, box-shadow .4s;
}
.depo__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.depo__stars { color: #E0A53C; letter-spacing: 2px; }
.depo__card blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; line-height: 1.4; color: var(--bordo); }
.depo__card figcaption { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.depo__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center 25%; flex: none; }
.depo__card figcaption span { display: flex; flex-direction: column; font-size: .88rem; color: var(--ink-soft); }
.depo__card figcaption strong { color: var(--bordo); font-family: var(--font-brand); font-weight: 600; }
@media (max-width: 860px) { .depo__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Depoimentos — galeria horizontal (scroll) */
.depo__avatar--initials { background: var(--grad-rose); color: #fff; display: grid; place-items: center; font-family: var(--font-brand); font-weight: 600; font-size: .95rem; }
.depo-h { background: var(--cream-2); padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 768px) { .depo-h { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; } }
.depo-h__head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.depo-h__head .eyebrow { justify-content: center; }
.depo-h__head .section-head__sub { margin-top: 1rem; }
.depo-h__hint { display: inline-block; color: var(--marrom); }
.depo-h__viewport { overflow: hidden; }
.depo-h__track { display: flex; gap: 1.4rem; width: max-content; padding-inline: clamp(1.25rem, 5vw, 2.25rem); will-change: transform; }
.depo-h__track .depo__card { flex: 0 0 clamp(280px, 80vw, 380px); }
@media (max-width: 767px) {
  .depo-h__viewport { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .depo-h__track .depo__card { scroll-snap-align: center; }
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--cream); }
.accordion { max-width: 820px; margin-inline: auto; }
.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer; padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  font-family: var(--font-brand); font-weight: 600; font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--bordo);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ""; flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s;
  background:
    linear-gradient(var(--marrom),var(--marrom)) center/100% 2px no-repeat,
    linear-gradient(var(--marrom),var(--marrom)) center/2px 100% no-repeat;
}
.acc[open] summary::after { transform: rotate(135deg); }
.acc__body { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.acc[open] .acc__body { max-height: 1200px; }
.acc__body p { padding-bottom: 1rem; color: var(--ink-soft); max-width: 70ch; }
.acc__body p:last-child { padding-bottom: 1.5rem; }
.acc__body a { color: var(--marrom); text-decoration: underline; text-underline-offset: 3px; }
.acc__list { padding-bottom: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.acc__list li { padding-left: 1.2rem; position: relative; color: var(--ink-soft); }
.acc__list li::before { content: ""; position: absolute; left: 0; top: .7rem; width: .4rem; height: .4rem; border-radius: 50%; background: var(--marrom); }
.acc__list strong { color: var(--bordo); }
.acc__total {
  padding: .8rem 1rem;
  margin-bottom: .8rem;
  background: rgba(201,154,146,.18);
  border-left: 3px solid var(--bordo);
  border-radius: 8px;
  color: var(--bordo);
}
.acc__total strong { font-weight: 700; }

/* =====================================================================
   CTA FINAL
   ===================================================================== */
.cta { position: relative; background: var(--grad-wine); color: var(--cream); padding-block: clamp(5rem, 11vw, 9rem); overflow: hidden; text-align: center; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__infinity { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(95%, 1100px); opacity: .08; }
.cta__content { position: relative; z-index: 2; max-width: 760px; }
.cta .eyebrow { justify-content: center; }
.cta__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -0.02em; }
.cta__title em { font-style: italic; color: var(--rosa); }
.cta__sub { margin-block: 1.4rem 2.4rem; font-family: var(--font-brand); color: rgba(210,200,188,.85); font-size: 1.05rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: #2A0E18; color: rgba(210,200,188,.75); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(210,200,188,.14); }
.brand--footer { color: var(--bege); margin-bottom: 1.2rem; }
.brand--footer .brand__word { color: var(--bege); }
.footer__brand p { max-width: 36ch; font-size: .95rem; line-height: 1.6; }
.footer__site { display: inline-block; margin-top: 1.1rem; font-family: var(--font-brand); font-weight: 600; color: var(--rosa); }
.footer__col h4 { font-family: var(--font-brand); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bege); margin-bottom: 1.1rem; }
.footer__col a { display: block; padding: .4rem 0; font-size: .95rem; transition: color .25s; }
.footer__col a:hover { color: var(--rosa); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; font-size: .85rem; color: rgba(210,200,188,.55); }

/* =====================================================================
   REVEAL — initial states (only when JS active)
   ===================================================================== */
html.is-ready [data-reveal] { opacity: 0; transform: translateY(30px); }
html.is-ready [data-stagger] > * { opacity: 0; transform: translateY(24px); }
html.is-ready .hero [data-hero] { opacity: 0; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .stat:nth-child(2)::after { display: none; }
  .steps, .feature-grid, .nr1-steps, .hw-grid, .ent-pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__visual { max-width: 520px; }
  .hero { padding-block: 7rem 3.5rem; min-height: auto; }
  .hero__content { grid-template-columns: 1fr; gap: 2rem; }
  .hero__copy { max-width: 100%; }
  .hero__art { max-width: 420px; margin-inline: auto; }
  .package__inner { grid-template-columns: 1fr; }
  .package__op { transform: rotate(90deg); justify-self: center; }
  .roi { grid-template-columns: 1fr; gap: 2rem; }
  .seguro__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .plans { grid-template-columns: 1fr; }
  .sim { grid-template-columns: 1fr; gap: 1.5rem; }
  .empresas__cta { grid-template-columns: 1fr; }
  .tele-tiers { grid-template-columns: 1fr; }
  .hero__art-badge--1 { left: 0; }
  .hero__art-badge--2 { right: 0; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .stat:not(:last-child)::after { display: none; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat--featured { order: -1; }
  .steps, .feature-grid, .nr1-steps, .hw-grid, .ent-pricing__grid { grid-template-columns: 1fr; }
  .hardware__hero { aspect-ratio: 4 / 3; }
  .hero__chips { gap: .5rem 1.1rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html.is-ready [data-reveal],
  html.is-ready [data-stagger] > *,
  html.is-ready .hero [data-hero] { opacity: 1 !important; transform: none !important; }
  .hero__scroll-line::after { animation: none; }
  .page-header__inner > *, .page-header .blob, .incluso__ic { animation: none !important; }
  .preloader { display: none; }
}

/* =====================================================================
   EXAMES — página nativa (tema pêssego, fiel ao material da clínica)
   ===================================================================== */
.expage {
  --peach-1: #FBEEE4;
  --peach-2: #F5DBC9;
  --peach-3: #EFCDB6;
  --ex-wine: #5A1224;
  --ex-marrom: #8A514E;
  --ex-ink: #7A5A48;
  --ex-line: rgba(122,90,72,.16);
}
.expage svg[viewBox] { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.ex-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-brand); font-weight: 600; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ex-marrom);
  margin-bottom: 1rem;
}
.ex-eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--ex-marrom); box-shadow: 0 0 0 4px rgba(138,81,78,.18); }
.ex-eyebrow--dark { color: var(--ex-wine); }
.ex-eyebrow--dark span { background: var(--ex-wine); box-shadow: 0 0 0 4px rgba(90,18,36,.14); }

.ex-h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.015em;
  color: var(--ex-wine);
}
.ex-h2 em { font-style: italic; color: var(--ex-marrom); }
.ex-h2--center { text-align: center; max-width: 22ch; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.ex-lead { color: var(--ex-ink); font-size: 1.08rem; line-height: 1.6; }

/* Capa */
.ex-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 70% 30%, var(--peach-1), var(--peach-2) 55%, var(--peach-3));
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
}
.ex-hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, transparent 62%, rgba(255,240,225,.9) 63%, transparent 66%) -10% 40% / 90vh 90vh no-repeat;
  opacity: .8;
}
.ex-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ex-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.02em;
  color: var(--ex-wine); margin-bottom: 1.2rem;
}
.ex-hero__title em { font-style: italic; color: var(--ex-marrom); }
.ex-hero__sub { max-width: 42ch; color: var(--ex-ink); font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.55; margin-bottom: 1.8rem; }
.ex-hero__actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.ex-phone { font-family: var(--font-brand); font-weight: 600; color: var(--ex-wine); font-size: 1.05rem; }
.ex-hero__meta { display: flex; gap: 2rem; flex-wrap: wrap; }
.ex-hero__meta li { font-size: .95rem; color: var(--ex-ink); }
.ex-hero__meta strong { display: block; font-family: var(--font-brand); color: var(--ex-wine); }
.ex-hero__art { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ex-hero__art img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }

/* Conheça a clínica */
.ex-sobre { background: var(--peach-1); padding-block: clamp(3rem, 7vw, 6rem); }
.ex-sobre__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ex-sobre__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ex-sobre__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/4; }
.ex-sobre__stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.8rem; }
.ex-sobre__stats strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ex-marrom); line-height: 1; }
.ex-sobre__stats span { font-size: .9rem; color: var(--ex-ink); }

/* Bandas de ícones */
.ex-band { background: linear-gradient(180deg, var(--peach-2), var(--peach-1)); padding-block: clamp(3.5rem, 7vw, 6rem); }
.ex-band--alt { background: linear-gradient(180deg, var(--peach-1), var(--peach-2)); }
.ex-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 900px; margin-inline: auto; }
.ex-icontile {
  display: flex; flex-direction: column; align-items: center; gap: .8rem; text-align: center;
  padding: 1.4rem 1rem; border-radius: 18px;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 10px 24px -18px rgba(122,90,72,.5);
  font-family: var(--font-brand); font-weight: 500; font-size: .82rem; color: var(--ex-wine);
  transition: transform .35s, box-shadow .35s, background .35s;
}
.ex-icontile:hover { transform: translateY(-4px); background: #fff; box-shadow: 0 18px 34px -20px rgba(122,90,72,.6); }
.ex-icontile__ic { width: 48px; height: 48px; display: grid; place-items: center; color: var(--ex-marrom); }
.ex-icontile__ic svg { width: 34px; height: 34px; }

/* Painéis de exame (foto + texto) */
.ex-exames { background: var(--peach-1); padding-block: clamp(3.5rem, 7vw, 6rem); }
.ex-exames__intro { text-align: center; color: var(--ex-ink); max-width: 60ch; margin: -1.5rem auto clamp(2.5rem, 5vw, 4rem); font-size: 1.05rem; }
.ex-panel {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.ex-panel--rev .ex-panel__photo { order: 2; }
.ex-panel__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ex-panel__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.ex-panel:hover .ex-panel__photo img { transform: scale(1.04); }
.ex-panel__ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: rgba(138,81,78,.12); color: var(--ex-marrom); margin-bottom: 1.1rem; }
.ex-panel__ic svg { width: 30px; height: 30px; }
.ex-panel__body h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--ex-wine); margin-bottom: .7rem; line-height: 1.1; }
.ex-panel__body p { color: var(--ex-ink); font-size: 1.05rem; line-height: 1.6; max-width: 46ch; }

/* Telesaúde */
.ex-tele { background: linear-gradient(180deg, var(--peach-2), var(--peach-1)); padding-block: clamp(3.5rem, 7vw, 6rem); }
.ex-tele__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ex-tele__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ex-tele__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }

/* Agendamento (reaproveita layout wine) */
.exames-info { background: var(--peach-2); }
.exames-info__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  background: var(--grad-wine); color: var(--cream);
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.4rem); box-shadow: var(--shadow-lg);
}
.exames-info__card .eyebrow { color: var(--rosa); }
.exames-info__card .eyebrow__dot { background: var(--rosa); }
.exames-info__card .h2 { color: #fff; }
.exames-info__lead { color: rgba(210,200,188,.85); margin-block: 1rem 1.8rem; font-size: 1.05rem; line-height: 1.55; }
.exames-info__card .btn--primary { background: var(--bege); color: var(--bordo); }
.exames-info__card .btn--primary:hover { background: #fff; }
.exames-info__details { display: flex; flex-direction: column; gap: 1.2rem; }
.exames-info__item { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start; }
.exames-info__ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(251,247,243,.1); color: var(--rosa); border: 1px solid rgba(201,154,146,.35); }
.exames-info__ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.exames-info__item strong { display: block; font-family: var(--font-brand); font-weight: 600; color: #fff; margin-bottom: .2rem; font-size: 1rem; }
.exames-info__item span { color: rgba(210,200,188,.82); font-size: .94rem; line-height: 1.45; }

@media (max-width: 900px) {
  .ex-hero__inner, .ex-sobre__grid, .ex-tele__grid { grid-template-columns: 1fr; }
  .ex-hero__art, .ex-sobre__photo { max-width: 460px; }
  .ex-tele__photo { max-width: 460px; margin-inline: auto; }
  .ex-icons { grid-template-columns: repeat(3, 1fr); }
  .ex-panel { grid-template-columns: 1fr; gap: 1.4rem; max-width: 460px; margin-inline: auto; }
  .ex-panel--rev .ex-panel__photo { order: 0; }
  .exames-info__card { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ex-icons { grid-template-columns: repeat(2, 1fr); }
  .ex-icontile { font-size: .78rem; padding: 1.1rem .7rem; }
}
