/* ==========================================================
   Dra. Ingrid Haubert — v2
   Montserrat (títulos/corpo) + Cormorant (detalhe da plástica)
   Vinho da marca no cabeçalho, rosa suavizado no restante
   ========================================================== */

:root {
  --marca: #410E1B;      /* vinho do logotipo — cabeçalho e rodapé */
  --rose-900: #5E1F2D;   /* títulos */
  --rose-700: #7C2B40;   /* cor principal */
  --rose-500: #A65167;   /* hover, detalhes */
  --rose-200: #E9CFD4;   /* fundos suaves */
  --rose-50: #FBF3F2;    /* seção alternada */
  --creme: #FBF8F5;      /* fundo base */
  --gold: #C6A45C;       /* acento fino */
  --ink: #2A2326;        /* corpo de texto */
  --ink-soft: #6B5B5F;
  --linha: #F0E2E2;
  --wa: #25D366;

  --ff: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-display: 'Cormorant', Georgia, serif;
  --max-w: 1312px;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  margin: 0;
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--creme);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--rose-700); text-decoration: none; }
a:hover { color: var(--rose-500); }
p { margin: 0 0 16px; }

h1, h2, h3 {
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: var(--rose-900);
  text-wrap: balance;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: #fff; color: var(--rose-900); padding: 12px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }

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

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}
.sub { color: var(--ink-soft); }
.nota { font-size: 13px; color: #A0898D; }
.display {
  font-family: var(--ff-display); font-style: italic; font-weight: 300;
  font-size: clamp(32px, 4vw, 46px); line-height: 1.16;
  letter-spacing: 0; color: var(--rose-900); margin-bottom: 20px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: var(--radius);
  font-family: var(--ff); font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid transparent; cursor: pointer;
  min-height: 48px; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn svg .fill { fill: currentColor; stroke: none; }

.btn-whatsapp { background: var(--wa); color: #fff; font-weight: 700; }
.btn-whatsapp:hover { background: #1FB855; color: #fff; }
.btn-outline { border-color: var(--rose-700); color: var(--rose-700); background: transparent; }
.btn-outline:hover { background: var(--rose-700); color: #fff; }
.btn-claro { background: #fff; color: var(--rose-700); }
.btn-claro:hover { background: var(--rose-50); color: var(--rose-700); }
.btn-alto-padrao {
  border-color: var(--rose-900); color: var(--rose-900);
  border-radius: 2px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
}
.btn-alto-padrao:hover { background: var(--rose-900); color: #fff; }
.btn-grande { font-size: 16px; padding: 18px 34px; }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--marca);
  transition: padding .25s ease, box-shadow .25s ease;
  padding: 14px 0;
}
.site-header.scrolled { padding: 8px 0; box-shadow: 0 6px 24px rgba(30, 8, 14, 0.28); }
.header-inner { display: flex; align-items: center; gap: 40px; }
.brand img { height: 68px; width: auto; transition: height .25s ease; }
.site-header.scrolled .brand img { height: 52px; }

.main-nav { display: flex; gap: 42px; flex: 1 1 auto; justify-content: center; }
.main-nav a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  padding-bottom: 5px; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.ativo { color: #fff; border-bottom-color: var(--gold); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 12px 6px; cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 640px; height: calc(100vh - 96px); max-height: 820px;
  display: flex; align-items: flex-end;
  background: #E2BFC3;
}
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-veu {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(233, 196, 199, 0.95) 0%,
    rgba(238, 209, 211, 0.88) 34%,
    rgba(240, 217, 217, 0.58) 60%,
    rgba(240, 220, 220, 0.24) 82%,
    rgba(240, 220, 220, 0.12) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end; gap: 24px;
}
.hero-texto { padding: 0 0 clamp(48px, 7vh, 96px); align-self: center; }
.eyebrow-hero { color: var(--rose-500); font-size: clamp(13px, 1.2vw, 17px); font-weight: 700; }
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); margin-bottom: 14px; }
.hero-lede {
  font-size: clamp(19px, 1.9vw, 25px); font-weight: 400; color: var(--rose-700);
  line-height: 1.35; max-width: 22ch; margin-bottom: 24px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 30px; }
.hero-tags li {
  font-size: clamp(11px, 1vw, 14px); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rose-700);
  border: 1px solid #D9B9BE; padding: 7px 14px; border-radius: 2px;
}
.hero-acoes { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-crm { margin: 26px 0 0; font-size: 14px; font-weight: 700; color: #5C1821; letter-spacing: 0.03em; }
.hero-retrato {
  align-self: end; justify-self: end;
  width: auto; height: min(78vh, 660px); max-width: 100%;
  object-fit: contain; object-position: bottom center;
  filter: drop-shadow(-18px 20px 38px rgba(94, 31, 45, 0.24));
}

/* ---------- Credenciais + painel de formação ---------- */
.credenciais {
  background: var(--rose-50);
  border-top: 1px solid rgba(198, 164, 92, 0.55);
  border-bottom: 1px solid rgba(198, 164, 92, 0.55);
}
.credenciais-linha {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding-top: 16px; padding-bottom: 16px;
}
.credenciais-texto { margin: 0; font-size: 13px; color: var(--rose-700); letter-spacing: 0.02em; }
.btn-linha {
  border: 1px solid var(--rose-700); color: var(--rose-700); background: transparent;
  border-radius: 2px; padding: 11px 20px; min-height: 44px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
}
.btn-linha:hover { background: var(--rose-700); color: #fff; }
.btn-linha svg { width: 15px; height: 15px; transition: transform .3s ease; }
.btn-linha[aria-expanded="true"] svg { transform: rotate(180deg); }

.formacao-painel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.formacao-painel.aberto { max-height: 900px; }
.formacao-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px;
  padding-top: 34px; padding-bottom: 44px; border-top: 1px solid #EFDCDC; margin-top: 6px;
}
.formacao-grid p { font-size: 15px; color: #4A3D40; margin-bottom: 12px; }
.formacao-grid strong { color: var(--rose-900); }

/* ---------- Seções ---------- */
.secao { padding: 88px 0; }
.secao-head { max-width: 68ch; margin: 0 auto 46px; }
.secao-head.center { text-align: center; }
.secao h2 { font-size: clamp(28px, 3.4vw, 40px); }
.especialidades { background: var(--creme); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Cards de especialidade ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card-espec {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--linha); border-radius: 4px;
}
.card-marca {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.52;
}
.card-espec::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(104deg, #fff 0%, rgba(255,255,255,0.93) 34%, rgba(255,255,255,0.66) 66%, rgba(255,255,255,0.30) 100%);
}
.card-corpo { position: relative; z-index: 2; padding: 34px 30px; }
.card-espec h3 { font-size: 21px; margin: 18px 0 12px; }
.card-espec p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.card-espec .ico { width: 28px; height: 28px; fill: none; stroke: var(--rose-700); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.card-espec .ico .fill { fill: var(--rose-700); stroke: none; }
.card-cta { background: var(--rose-700); border-color: var(--rose-700); display: flex; align-items: center; }
.card-cta::after { display: none; }
.card-cta h3 { color: #fff; }
.card-cta p { color: #EFD6DA; margin-bottom: 22px; }

/* ---------- Quiz ---------- */
.quiz-secao { background: var(--rose-50); }
.quiz-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.quiz-intro p { color: var(--ink-soft); }
.quiz-card {
  background: #fff; border: 1px solid #EFDCDC; border-radius: 5px;
  padding: 34px; box-shadow: 0 18px 40px rgba(94, 31, 45, 0.07);
}
.quiz-progresso { display: flex; align-items: center; justify-content: space-between; }
.quiz-progresso .eyebrow { color: var(--rose-500); margin: 0; font-size: 12px; letter-spacing: 0.14em; }
.quiz-progresso span { font-size: 12px; color: #B9A3A6; }
.quiz-barra { height: 3px; background: #F2E3E3; border-radius: 2px; margin: 14px 0 28px; }
.quiz-barra-fill { height: 3px; width: 0; background: var(--gold); border-radius: 2px; transition: width .3s ease; }
.quiz-pergunta { font-size: 22px; font-weight: 600; color: var(--rose-900); line-height: 1.35; margin-bottom: 10px; min-height: 90px; }
.quiz-dica { font-size: 14px; color: #8A7376; min-height: 42px; }
.quiz-opcoes { display: flex; flex-direction: column; gap: 12px; }
.quiz-opcao {
  text-align: left; background: #fff; border: 1px solid #E4CFD2; border-radius: 3px;
  padding: 15px 20px; font-family: var(--ff); font-size: 16px; font-weight: 500; color: var(--rose-900);
  min-height: 52px; cursor: pointer; transition: border-color .16s ease, background .16s ease;
}
.quiz-opcao:hover { border-color: var(--rose-500); background: #FDF7F7; }
.link-discreto {
  background: none; border: 0; padding: 10px 0 0; margin-top: 14px;
  font-family: var(--ff); font-size: 13px; color: #B9A3A6; cursor: pointer;
}
.link-discreto:hover { color: var(--rose-700); }

.resultado-titulo { font-size: 26px; font-weight: 800; color: var(--rose-900); margin-bottom: 10px; letter-spacing: -0.02em; }
.resultado-box { border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 26px; }
.resultado-box p { color: var(--ink-soft); margin: 0; }
.resumo { background: var(--rose-50); border-radius: 4px; padding: 20px 22px; margin-bottom: 24px; }
.resumo ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.resumo li { display: flex; gap: 10px; font-size: 14px; color: #4A3D40; }
.resumo .marca { font-weight: 700; }
.aviso { font-size: 13px; color: #8A7376; }

/* ---------- Simulador ---------- */
.simulador { background: #fff; border: 1px solid #EFDCDC; border-radius: 5px; padding: 28px; margin-top: 34px; }
.simulador h3 { font-size: 22px; margin: 0 0 10px; }
.simulador .eyebrow { color: var(--rose-500); letter-spacing: 0.14em; }
.lousa { background: #2F3A34; border: 10px solid #8A6A46; border-radius: 4px; padding: 26px 24px; margin-bottom: 20px; overflow: hidden; }
.lousa-conteudo { filter: blur(3.85px); transition: filter .12s linear; }
.lousa-conteudo strong { display: block; font-size: 26px; font-weight: 600; color: #F3F0E6; margin-bottom: 14px; }
.lousa-conteudo span { font-size: 18px; color: #DCE6D8; line-height: 1.7; }
input[type="range"] { width: 100%; height: 30px; accent-color: var(--rose-700); }
.simulador-legenda { display: flex; justify-content: space-between; font-size: 12px; color: #B9A3A6; }

/* ---------- Plástica ocular ---------- */
.plastica { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); background: #fff; }
.plastica-foto { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.plastica-texto { padding: 84px 56px; }
.plastica-texto p { color: var(--ink-soft); }
.plastica-texto .nota { margin-top: 14px; }

.jornada { margin: 30px 0 34px; border-bottom: 1px solid var(--linha); }
.jornada-passo { border-top: 1px solid var(--linha); }
.jornada-btn {
  width: 100%; display: flex; align-items: center; gap: 18px;
  background: none; border: 0; border-left: 2px solid transparent;
  padding: 22px 20px; text-align: left; cursor: pointer; font-family: var(--ff);
  transition: background .18s ease, border-color .18s ease;
}
.jornada-btn:hover { background: #FDFAF7; }
.jornada-passo.aberto .jornada-btn { background: #FCF9F6; border-left-color: var(--gold); }
.jornada-btn .num { font-family: var(--ff-display); font-size: 30px; color: #C4AFB3; min-width: 34px; }
.jornada-passo.aberto .jornada-btn .num { color: var(--rose-700); }
.jornada-btn .txt { flex: 1 1 auto; display: block; }
.jornada-btn .txt strong { display: block; font-size: 19px; font-weight: 600; color: var(--rose-900); letter-spacing: -0.01em; }
.jornada-btn .txt em { display: block; font-style: normal; font-size: 13px; color: #A0898D; margin-top: 3px; }
.jornada-btn svg { width: 18px; height: 18px; fill: none; stroke: #C4AFB3; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s ease; }
.jornada-passo.aberto .jornada-btn svg { transform: rotate(180deg); stroke: var(--rose-700); }
.jornada-corpo { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.jornada-corpo p { font-size: 15px; color: var(--ink-soft); padding: 0 20px 22px 72px; margin: 0; }
.jornada-passo.aberto .jornada-corpo { max-height: 320px; }

/* ---------- Vídeos ---------- */
.videos { background: var(--rose-50); }
.videos-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.videos-head h2 { margin-bottom: 10px; }
.videos-head .btn svg { width: 18px; height: 18px; }
.videos-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.video-card { position: relative; display: block; border-radius: 5px; overflow: hidden; background: #EADFDC; }
.video-card img { width: 100%; height: 420px; object-fit: cover; }
.video-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,15,22,0.84) 0%, rgba(45,15,22,0.2) 46%, rgba(45,15,22,0.05) 100%);
}
.video-card .play {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%); z-index: 2;
  width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
}
.video-card .play svg { width: 22px; height: 22px; fill: var(--rose-700); }
.video-card .dur {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(20,8,12,0.55); color: #fff; padding: 5px 9px; border-radius: 2px;
  font-size: 11px; font-weight: 600;
}
.video-card .titulo {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2;
  font-size: 15px; font-weight: 600; color: #fff; line-height: 1.35;
}
.videos-vazio { font-size: 14px; color: #A0898D; }

/* ---------- Consultórios ---------- */
.consultorios { background: #fff; border-top: 1px solid var(--linha); }
.consultorios-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.consultorio { border: 1px solid var(--linha); border-radius: 4px; overflow: hidden; }
.consultorio img { width: 100%; height: 300px; object-fit: cover; }
.consultorio-corpo { padding: 28px 30px; }
.consultorio h3 { font-size: 22px; margin-bottom: 12px; }
.consultorio p { font-size: 15px; color: var(--ink-soft); margin-bottom: 8px; }
.consultorio .nota { border-top: 1px solid #F2E6E6; padding-top: 16px; margin-top: 18px; }

/* ---------- CTA ---------- */
.cta-final { background: var(--rose-50); padding: 84px 0; border-top: 1px solid var(--linha); }
.cta-final h2 { font-size: clamp(28px, 3.6vw, 38px); }
.cta-final p { color: var(--ink-soft); max-width: 56ch; margin: 0 auto 30px; }

/* ---------- Rodapé ---------- */
.site-footer { background: #4A1724; padding: 30px 0 0; color: #E3C4C9; }
.footer-redes { display: flex; justify-content: flex-end; gap: 26px; }
.footer-redes a { color: #fff; }
.footer-redes svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-redes svg .fill { fill: currentColor; stroke: none; }
.footer-marca { text-align: center; padding: 8px 0 40px; }
.footer-marca img { height: 180px; width: auto; margin: 0 auto 24px; }
.footer-nome { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; color: #fff; text-transform: uppercase; line-height: 1.1; margin: 0; }
.footer-espec { font-size: clamp(15px, 1.9vw, 24px); font-weight: 300; color: #F0D9DC; text-transform: uppercase; margin: 6px 0 0; }
.footer-crm { font-size: 14px; margin: 20px 0 0; letter-spacing: 0.02em; }
.footer-copy { font-size: 14px; margin: 22px 0 0; }
.footer-base { border-top: 1px solid rgba(255,255,255,0.14); padding: 18px 0; text-align: center; }
.footer-base a { font-size: 14px; color: #F0D9DC; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-base a:hover { color: #fff; }

/* ---------- WhatsApp flutuante ---------- */
.wa-flutuante {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff; padding: 14px 20px; border-radius: 40px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
}
.wa-flutuante:hover { background: #1FB855; color: #fff; }
.wa-flutuante svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wa-flutuante svg .fill { fill: currentColor; stroke: none; }

/* ==========================================================
   Celular — 80% dos acessos
   ========================================================== */
@media (max-width: 1080px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .videos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .formacao-grid { grid-template-columns: 1fr; gap: 26px; }
  .plastica { grid-template-columns: 1fr; }
  .plastica-foto { height: 340px; object-position: 50% 18%; }
  .plastica-texto { padding: 56px 32px; }
  .quiz-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 88px; }
  .container { padding: 0 20px; }
  .site-header { padding: 10px 0; }
  .header-inner { gap: 12px; justify-content: space-between; }
  .brand img, .site-header.scrolled .brand img { height: 52px; }
  .nav-toggle { display: flex; }
  .header-inner > .btn-whatsapp { display: none; }

  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--marca); padding: 0 20px;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.aberto { max-height: 420px; padding-bottom: 18px; }
  .main-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .main-nav a:hover, .main-nav a.ativo { border-bottom-color: rgba(255,255,255,0.12); color: var(--gold); }

  .hero { height: auto; max-height: none; min-height: 0; padding-top: 34px; display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-texto { padding-bottom: 18px; }
  .hero-lede { max-width: none; }
  .hero-acoes { flex-direction: column; align-items: stretch; }
  .hero-acoes .btn { width: 100%; }
  .hero-crm { text-align: center; }
  .hero-retrato { justify-self: center; height: auto; width: min(300px, 78vw); }
  /* no celular o vídeo não roda: fica o pôster, para não pesar no 4G */
  .hero-bg-video { display: none; }
  .hero { background: #E2BFC3 url('assets/img/consultorio-01.webp') center/cover no-repeat; }
  .hero-veu {
    background: linear-gradient(168deg,
      rgba(240, 222, 222, 0.94) 0%,
      rgba(236, 209, 211, 0.9) 46%,
      rgba(232, 200, 203, 0.84) 100%);
  }

  .secao { padding: 56px 0; }
  .secao-head { margin-bottom: 30px; }
  .cards-grid, .consultorios-grid { grid-template-columns: 1fr; }

  .credenciais-linha { flex-direction: column; text-align: center; gap: 16px; }
  .credenciais-texto { font-size: 13px; line-height: 1.7; }
  .btn-linha { width: 100%; min-height: 48px; }

  .videos-head { flex-direction: column; align-items: stretch; }
  .videos-grid {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 8px; margin: 0 -20px; padding-left: 20px; padding-right: 20px;
  }
  .video-card { flex: 0 0 190px; scroll-snap-align: start; }
  .video-card img { height: 330px; }

  .quiz-card, .simulador { padding: 24px 20px; }
  .quiz-pergunta { font-size: 19px; min-height: 104px; }
  .jornada-corpo p { padding-left: 20px; }
  .consultorio img { height: 190px; }

  .footer-marca img { height: 128px; }
  .footer-redes { justify-content: center; }
  .footer-base { padding-bottom: 92px; }

  .wa-flutuante {
    left: 16px; right: 16px; bottom: 12px; justify-content: center;
    border-radius: 4px; padding: 16px 20px; min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lousa-conteudo, .formacao-painel, .jornada-corpo, .quiz-barra-fill { transition: none; }
}
