/* ============================================================
   COOPERATIVA SUPORTE CERTO — styles.css
   Design system: DESIGN.md (clínico e sério, sênior-first)
   Base: 18px (html 112.5%) — TUDO em rem para o controle A/A+/A++
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

/* ---------- Fontes (auto-hospedadas em assets/fonts — sem chamadas a
   servidores externos: carrega mais rápido e funciona mesmo se o Google
   Fonts estiver fora do ar). Subset latin, cobre todo o português. ---------- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/poppins-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/poppins-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Semibold: os negritos do texto (strong, botões, rótulos) resolvem para
   este arquivo — sem ele o navegador "engrossaria" a Regular (fica feio) */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/poppins-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('assets/fonts/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 500 700;
  font-display: swap;
  src: url('assets/fonts/lora-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Roboto (arquivo variável, cobre os pesos 500-600): fonte de detalhe —
   eyebrows, etiquetas, escala da Linha do Cuidado, rótulos dos números */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('assets/fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  /* Cores da logo — usar exatamente estes hex */
  --navy:       #0F1E78;
  --navy-deep:  #0A1440;
  --navy-ink:   #070C2B;
  --cyan:       #0096E1;
  --cyan-deep:  #0072AD;
  --green:      #69B40F;
  --green-deep: #4D8709;
  --amber:      #D98E2B;
  --amber-deep: #B6721A;
  --wa:         #25D366;
  --paper:      #F7F9FC;
  --white:      #FFFFFF;
  --ink:        #12172B;
  --mute:       #4A4F63;
  --line:       #E1E5F2;

  /* Tipografia — escolha do dono (2026-07): SÓ 3 fontes.
     Títulos: Lora (Semibold/Bold). Corpo, menus e botões: Poppins
     (Regular 400 / Medium 500; Semibold 600 para negritos e CTAs).
     Detalhes (eyebrows, etiquetas, escalas): Roboto. */
  --f-display: 'Lora', Georgia, serif;
  --f-body:    'Poppins', system-ui, sans-serif;
  --f-detail:  'Roboto', Arial, sans-serif;

  /* Ritmo e superfície */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-1: 0 1px 2px rgba(15,30,120,.06), 0 8px 24px -12px rgba(15,30,120,.18);
  --shadow-2: 0 4px 16px rgba(15,30,120,.10), 0 24px 48px -20px rgba(15,30,120,.28);
  --container: 1180px;
  --header-h: 4.25rem; /* ~76px na base 18px; escala junto com a fonte */
}

/* ---------- Base ---------- */
html { font-size: 112.5%; scroll-behavior: smooth; } /* 1rem = 18px */
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--f-display); color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(2.3rem, 1.7rem + 2.4vw, 3.7rem); font-weight: 700; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 1.55rem + 1.2vw, 2.55rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; font-weight: 700; }
p  { max-width: 62ch; }

::selection { background: var(--navy); color: var(--white); }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 1.556rem; } /* 28px */

section { padding: 4.889rem 0; } /* ~88px de respiro */
.section-tight { padding: 3.556rem 0; } /* ~64px */

.eyebrow {
  font-family: var(--f-detail);
  font-size: 0.778rem; /* 14px */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  display: block;
  margin-bottom: 0.9rem;
  font-weight: 600;
}
/* Traço tricolor antes do eyebrow — assinatura dos 3 públicos
   (ciano = profissionais, âmbar = famílias, verde = instituições) */
.eyebrow::before {
  content: "";
  display: block;
  width: 2.4rem; height: 4px; border-radius: 2px;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg,
    var(--cyan) 0 33.4%, var(--amber) 33.4% 66.7%, var(--green) 66.7% 100%);
}
.section-head.center .eyebrow::before { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 2.4rem; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--mute); margin-top: 0.7rem; font-size: 1.05rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Link "Ir direto para o conteúdo": invisível até receber foco por Tab */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 100;
  background: var(--navy); color: var(--white);
  padding: 0.8rem 1.4rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600; text-decoration: none;
  box-shadow: var(--shadow-2);
}
.skip-link:focus { top: 0; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 249, 252, .97); /* SEM backdrop-filter (bug conhecido) */
  border-bottom: 1px solid var(--line);
  min-height: var(--header-h);
  display: flex; align-items: center;
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; width: 100%;
}
.brand { display: flex; align-items: center; text-decoration: none; }
/* Logo completa (logo-full.png, 442x96): a altura manda, a largura acompanha */
.brand img { height: 2.333rem; width: auto; } /* ~42px no mobile */

.nav-area { display: flex; align-items: center; gap: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 0.35rem; list-style: none; }
.nav-links a {
  display: inline-flex; align-items: center;
  min-height: 2.667rem; /* 48px de toque */
  padding: 0.35rem 0.85rem;
  text-decoration: none; font-weight: 500; font-size: 0.92rem; /* Poppins Medium */
  color: var(--ink); border-radius: 999px;
  white-space: nowrap; /* nunca quebrar em 2 linhas dentro do header */
  transition: background .15s ease;
}
header.site .brand, header.site .font-controls { flex-shrink: 0; }
header.site .btn { white-space: nowrap; flex-shrink: 0; }
.nav-links a:hover { background: var(--line); }
.nav-links a[aria-current="page"] { background: var(--navy); color: var(--white); }

/* Controle de fonte A / A+ / A++ */
.font-controls {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: var(--white); padding: 0.15rem; gap: 0.1rem;
}
.font-controls button {
  min-width: 2.667rem; min-height: 2.667rem; /* 48px de toque no mobile; o desktop sobrescreve em px */
  padding: 0.15rem 0.5rem;
  border: 0; background: transparent; border-radius: 999px;
  font-weight: 700; font-size: 0.85rem; color: var(--navy);
  cursor: pointer;
}
.font-controls button:hover { background: var(--line); }
.font-controls button[aria-pressed="true"] { background: var(--navy); color: var(--white); }

/* Hambúrguer — só no mobile */
.nav-toggle {
  display: none;
  width: 2.667rem; height: 2.667rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 0.28rem;
}
.nav-toggle span {
  display: block; width: 1.2rem; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(0.34rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-0.34rem) rotate(-45deg); }

/* ---------- Care-line (assinatura, abaixo do header) ----------
   Animada via transform (composição na GPU) — mais leve no celular
   do que animar background-position, que repinta a cada quadro. */
.care-line {
  height: 7px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.care-line::before {
  content: "";
  position: absolute; inset: 0;
  width: 200%;
  background: linear-gradient(90deg,
    var(--amber), var(--cyan), var(--navy), var(--navy), var(--amber));
  background-size: 50% 100%;
  background-repeat: repeat-x;
  animation: careflow 16s linear infinite;
}
@keyframes careflow {
  to { transform: translateX(-50%); }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.667rem; /* 48px */
  padding: 0.778rem 1.444rem; /* ~14px 26px */
  border-radius: 999px; border: 0;
  font-weight: 600; font-size: 1rem; text-decoration: none; /* Poppins Semibold */
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 8px 22px -8px rgba(77,135,9,.55), var(--shadow-1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(77,135,9,.6), var(--shadow-2);
  background: var(--green-deep);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255, 255, 255, .55);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-outline-navy {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ---------- Hero (Home) ---------- */
/* Linha de batimento (ECG) sutil no fundo — estática, só decorativa,
   remete à "linha do cuidado" que é a assinatura visual do site */
.hero, .subhero, .cta-band, .dial-panel {
  --ecg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 160' fill='none'%3E%3Cpath d='M0 80h260l25 0 12-42 14 84 12-42h217l25 0 12-50 16 100 12-50h255l25 0 12-36 14 72 12-36h277' stroke='%237CC7F2' stroke-opacity='.14' stroke-width='2.5' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
}
.hero {
  background-color: var(--navy-deep);
  /* camadas: ECG + grade "blueprint" sutil (papel milimetrado clínico) + brilhos */
  background-image: var(--ecg),
                    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
                    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0,150,225,.20), transparent 60%),
                    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(15,30,120,.5), transparent 70%);
  background-repeat: no-repeat, repeat, repeat, no-repeat, no-repeat;
  background-position: center bottom 1.2rem, 0 0, 0 0, 0 0, 0 0;
  background-size: 1200px auto, 56px 56px, 56px 56px, auto, auto;
  color: var(--white);
  padding: 6rem 0 5.5rem;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
/* Eyebrow do hero/subhero vira um selo-pílula */
.hero .eyebrow, .subhero .eyebrow {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.07);
  padding: 0.5rem 1.05rem;
  /* 1.3rem (e não 999px): vira pílula com 1 linha e cartão arredondado
     quando o texto quebra em 2 linhas no celular */
  border-radius: 1.3rem;
  margin-bottom: 1.4rem;
}
.hero .eyebrow::before, .subhero .eyebrow::before {
  display: inline-block; width: 1.5rem;
  margin: 0 0.55rem 0 0; vertical-align: 0.14em;
}
.hero .eyebrow { color: #7CC7F2; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
/* "folga" com marca-texto ciano — o destaque tipográfico do site */
.hero h1 em {
  font-style: italic; color: #A5D8F7;
  background: linear-gradient(180deg, transparent 66%, rgba(0,150,225,.42) 66%);
  padding: 0 0.08em; border-radius: 3px;
}
.hero-lead { color: rgba(255,255,255,.9); font-size: 1.17rem; margin-bottom: 1.9rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.6rem; }
.hero-ctas .btn { padding: 0.95rem 1.65rem; font-size: 1.06rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 2.2rem; }
/* Cada número com um filete na cor de um dos 3 públicos */
.hero-stats .stat { padding-left: 0.85rem; border-left: 3px solid var(--cyan); }
.hero-stats .stat:nth-child(2) { border-left-color: var(--amber); }
.hero-stats .stat:nth-child(3) { border-left-color: var(--green); }
.hero-stats .stat strong {
  display: block; font-family: var(--f-display); font-size: 2.15rem; line-height: 1.1;
  color: var(--white);
}
.hero-stats .stat span {
  font-family: var(--f-detail); font-size: 0.667rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,.65); text-transform: uppercase;
}

/* Card de vídeo */
.video-card { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.video-frame {
  /* vídeo vertical (9:16); largura limitada para a altura não estourar o hero */
  position: relative; width: 100%; max-width: 330px; aspect-ratio: 9 / 16;
  border-radius: var(--radius); overflow: hidden;
  /* anel gradiente com as cores da marca (borda transparente + 2 fundos:
     o de dentro no padding-box, o gradiente no border-box) */
  border: 3px solid transparent;
  background: linear-gradient(var(--navy), var(--navy)) padding-box,
              linear-gradient(150deg, var(--cyan), rgba(255,255,255,.25) 45%, var(--amber)) border-box;
  box-shadow: var(--shadow-2);
}
.video-poster {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  width: 100%; border: 0; cursor: pointer;
  background: radial-gradient(ellipse 90% 90% at 50% 40%, #14267E 0%, var(--navy-deep) 75%);
}
.video-poster img { width: 5.5rem; height: 5.5rem; object-fit: contain; opacity: .95; }
.video-poster .play {
  display: flex; align-items: center; justify-content: center;
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-2);
  transition: transform .15s ease;
}
.video-poster:hover .play { transform: scale(1.08); }
.video-poster .play svg { margin-left: 0.2rem; }
.video-frame video, .video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
/* contain (e não cover): o vídeo nunca é esticado nem cortado, em nenhuma
   proporção de tela; o JS ajusta a moldura à proporção real do arquivo */
.video-frame video { object-fit: contain; background: var(--navy-deep); }
.video-caption {
  font-family: var(--f-detail); font-size: 0.72rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,.7);
}

/* ---------- Linha do Cuidado (dial 24h) ---------- */
.dial-section { background: #FBF8F2; } /* off-white quente */
.dial-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem;
}
.dial-title { font-size: 1.7rem; } /* h2 semântico em escala intermediária */
.live-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-detail); font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--green-deep); font-weight: 600;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 0.4rem 0.9rem;
}
.live-badge .dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(105,180,15,.45); }
  50%      { box-shadow: 0 0 0 0.4rem rgba(105,180,15,0); }
}

/* Painel escuro — a barra de 24h vive num "monitor de plantão" */
.dial-panel {
  background-color: var(--navy-deep);
  background-image: var(--ecg),
                    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-repeat: no-repeat, repeat, repeat;
  background-position: center top 0.6rem, 0 0, 0 0;
  background-size: 1100px auto, 56px 56px, 56px 56px;
  border-radius: calc(var(--radius) + 6px);
  padding: 4rem 2.2rem 2rem; /* topo alto: é onde o rótulo "Agora HH:MM" flutua */
  box-shadow: var(--shadow-2);
}
.dial-track { position: relative; margin-top: 3.2rem; } /* SEM overflow — o rótulo vive aqui */
.dial-panel .dial-track { margin-top: 0; } /* o padding-top do painel já dá o respiro do rótulo */
.dial-bars {
  display: flex; height: 2.556rem; /* 46px */
  border-radius: 999px; overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(255,255,255,.22);
}
.dial-madrugada { flex: 7; background: #2C3DA6; }   /* 00h–07h (índigo visível no painel escuro) */
.dial-day       { flex: 12; background: var(--cyan); }  /* 07h–19h */
.dial-night     { flex: 5; background: #2C3DA6; }   /* 19h–24h */
.dial-panel .dial-scale { color: rgba(255,255,255,.78); }
.dial-panel .dial-legend { color: rgba(255,255,255,.92); }

.dial-marker {
  position: absolute; top: -0.4rem; bottom: -0.4rem; left: 50%;
  width: 3px; margin-left: -1.5px;
  background: var(--white); border-radius: 3px;
  box-shadow: 0 0 0 3px rgba(255,255,255,.35), 0 2px 10px rgba(7,12,43,.45);
  z-index: 2;
}
.dial-marker::after {
  content: attr(data-label);
  position: absolute; bottom: calc(100% + 0.55rem); left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--white); color: var(--navy);
  font-weight: 700; font-size: 0.85rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  box-shadow: var(--shadow-2);
  border: 1.5px solid var(--line);
}
/* Perto das bordas, o rótulo ancora no lado para nunca sair da tela */
.dial-track.edge-start .dial-marker::after { left: 0; transform: none; }
.dial-track.edge-end   .dial-marker::after { left: auto; right: 0; transform: none; }

.dial-scale {
  display: flex; justify-content: space-between;
  font-family: var(--f-detail); font-size: 0.72rem; color: var(--mute);
  margin-top: 0.7rem;
}
.dial-legend {
  display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.4rem;
  font-size: 0.9rem; color: var(--mute); font-weight: 600;
}
.dial-legend .swatch {
  display: inline-block; width: 0.85rem; height: 0.85rem;
  border-radius: 4px; margin-right: 0.45rem; vertical-align: -0.08rem;
}
.swatch-day { background: var(--cyan); }
.swatch-night { background: #2C3DA6; }

/* ---------- As 3 Portas ---------- */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.door {
  position: relative; display: flex; flex-direction: column; gap: 0.85rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  padding: 2rem 1.8rem 1.8rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.door::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.door:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.door-cyan:hover  { border-color: var(--cyan); }
.door-amber:hover { border-color: var(--amber); }
.door-green:hover { border-color: var(--green); }
.door-cyan::before  { background: var(--cyan); }
.door-amber::before { background: var(--amber); }
.door-green::before { background: var(--green); }
/* Etiqueta-chip no topo do card — reforça qual público é */
.door-kicker {
  display: inline-flex; align-self: flex-start; align-items: center;
  font-family: var(--f-detail); font-size: 0.667rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  color: var(--white);
  padding: 0.3rem 0.8rem; border-radius: 999px;
}
/* Fundos dos chips mais escuros que os tokens -deep: texto branco de 12px
   precisa de 4,5:1 (os -deep ficam em ~3,9 e ~4,4). Só aqui; os tokens
   globais seguem intactos para os demais usos. */
.door-cyan  .door-kicker { background: var(--cyan-deep); }
.door-amber .door-kicker { background: #9C5E12; }
.door-green .door-kicker { background: #44740A; }
.door-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3.9rem; height: 3.9rem; border-radius: 50%;
}
.door-icon svg { width: 1.8rem; height: 1.8rem; }
.door-cyan  .door-icon { background: #E3F3FC; color: var(--cyan-deep); box-shadow: 0 0 0 6px #E3F3FC66; }
.door-amber .door-icon { background: #FBEEDC; color: var(--amber-deep); box-shadow: 0 0 0 6px #FBEEDC66; }
.door-green .door-icon { background: #EDF7DF; color: var(--green-deep); box-shadow: 0 0 0 6px #EDF7DF66; }
.door h3 { font-size: 1.4rem; }
.door p { color: var(--mute); font-size: 0.95rem; flex: 1; }
/* Ação: texto forte na cor do público + seta num disco sólido que desliza
   no hover — afford de botão sem quebrar feio quando o rótulo é longo */
.door-action {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-weight: 700; font-size: 1.05rem; /* grande + bold: contraste AA de texto grande */
}
.door-action::after {
  content: "→";
  flex: none;
  display: flex; align-items: center; justify-content: center;
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  color: var(--white); font-size: 1.15rem;
  transition: transform .18s ease;
}
.door:hover .door-action::after { transform: translateX(0.35rem); }
.door-cyan  .door-action { color: var(--cyan-deep); }
.door-amber .door-action { color: var(--amber-deep); }
.door-green .door-action { color: var(--green-deep); }
.door-cyan  .door-action::after { background: var(--cyan-deep); }
.door-amber .door-action::after { background: var(--amber-deep); }
.door-green .door-action::after { background: var(--green-deep); }

/* ---------- Grades de cartões (por quê / benefícios / serviços / credenciais) ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: why; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.why-item, .service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  padding: 1.7rem 1.5rem;
}
/* Numeração editorial 01–04 em serifada, marca d'água no canto */
.why-item { position: relative; counter-increment: why; }
.why-item .tag { padding-right: 3rem; } /* etiqueta não corre por baixo do número */
.why-item::after {
  content: "0" counter(why);
  position: absolute; top: 1rem; right: 1.2rem;
  font-family: var(--f-display); font-weight: 700; font-size: 2.3rem;
  line-height: 1; color: var(--navy); opacity: .09;
  pointer-events: none;
}
.why-item .tag, .service-card .tag {
  display: block;
  font-family: var(--f-detail); font-size: 0.667rem; letter-spacing: 0.14em;
  color: var(--cyan-deep); font-weight: 600; margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.why-item h3, .service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.why-item p, .service-card p { color: var(--mute); font-size: 0.95rem; }

/* ---------- Perguntas frequentes ----------
   Sempre TUDO visível (lei sênior-first: nada escondido atrás de clique) */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.faq-item h3 {
  font-size: 1.15rem; margin-bottom: 0.55rem;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.faq-item h3::before {
  content: "?";
  flex: none;
  display: flex; align-items: center; justify-content: center;
  width: 1.7rem; height: 1.7rem; margin-top: 0.05rem;
  border-radius: 50%; background: #E3F3FC; color: var(--cyan-deep);
  font-family: var(--f-body); font-weight: 600; font-size: 1rem;
}
.faq-item p { color: var(--mute); font-size: 0.98rem; }
.faq-more {
  margin: 1.8rem auto 0; text-align: center; font-size: 1.05rem;
  color: var(--ink);
}
.faq-more a { color: var(--green-deep); font-weight: 600; }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ---------- Onde atuamos (cards de ambiente) ---------- */
.env-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #E3F3FC; color: var(--cyan-deep);
  margin-bottom: 1rem;
  box-shadow: 0 0 0 5px #E3F3FC66;
}
.env-icon svg { width: 1.7rem; height: 1.7rem; }

/* ---------- Faixa de ambientes (página B2B) ---------- */
.env-strip {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.env-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.7rem 1rem;
}
.env-strip-title {
  font-family: var(--f-detail); font-size: 0.778rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mute); font-weight: 600;
  margin-right: 0.4rem;
}
.env-strip-pills { justify-content: center; }

/* ---------- Faixa CTA (cartão marinho) ---------- */
.cta-band {
  background-color: var(--navy);
  background-image: var(--ecg),
                    radial-gradient(ellipse 70% 100% at 85% 0%, rgba(0,150,225,.25), transparent 60%);
  background-repeat: no-repeat;
  background-position: left -10rem bottom 0.4rem, 0 0;
  background-size: 1200px auto, auto;
  border-radius: calc(var(--radius) + 6px);
  color: var(--white);
  padding: 3.6rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  box-shadow: var(--shadow-2);
}
.cta-band h3 { color: var(--white); font-size: clamp(1.6rem, 1.35rem + 0.9vw, 2rem); margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255,255,255,.85); }

/* ---------- Subhero (páginas internas) ---------- */
.subhero {
  background-color: var(--navy-deep);
  background-image: var(--ecg),
                    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
                    radial-gradient(ellipse 75% 80% at 15% 0%, rgba(0,150,225,.18), transparent 60%);
  background-repeat: no-repeat, repeat, repeat, no-repeat;
  background-position: right -6rem bottom 1rem, 0 0, 0 0, 0 0;
  background-size: 1200px auto, 56px 56px, 56px 56px, auto;
  color: var(--white);
  padding: 4.8rem 0;
}
.subhero .breadcrumb {
  font-family: var(--f-detail); font-size: 0.72rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,.6); margin-bottom: 1.6rem;
}
.subhero .breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.subhero .breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.subhero .eyebrow { color: #7CC7F2; }
.subhero .eyebrow.eyebrow-green { color: #A8D96A; }
.subhero .eyebrow.eyebrow-amber { color: #F0BE7E; }
.subhero h1 { color: var(--white); max-width: 21ch; margin-bottom: 1.2rem; }
.subhero p { color: rgba(255,255,255,.88); font-size: 1.11rem; margin-bottom: 1.8rem; }
.subhero .hero-ctas { margin-bottom: 0; }

/* ---------- Pílulas (funções) ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.pill {
  display: inline-flex; align-items: center;
  min-height: 2.667rem;
  padding: 0.5rem 1.2rem;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  box-shadow: var(--shadow-1);
}
.pill-mail {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.1rem; margin-top: 1rem;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; color: var(--navy);
  box-shadow: var(--shadow-1);
}
.pill-mail:hover { border-color: var(--cyan); }

/* ---------- Duas colunas / checks / citação ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.4rem; }
.checks li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink); }
.checks li .check {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 1.7rem; height: 1.7rem; margin-top: 0.1rem;
  border-radius: 50%; background: #EDF7DF; color: var(--green-deep);
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 0 0 4px #EDF7DF66;
}
.quote {
  position: relative;
  border-left: 5px solid var(--amber);
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
  padding: 2.6rem 1.9rem 1.8rem;
  font-family: var(--f-display); font-size: 1.25rem; font-style: italic;
  color: var(--navy); line-height: 1.45;
}
/* Aspas decorativas grandes em serifada */
.quote::before {
  content: "\201C";
  position: absolute; top: 0.4rem; left: 1.4rem;
  font-size: 3.4rem; line-height: 1; font-style: normal;
  color: var(--amber); opacity: .55;
  pointer-events: none;
}
.quote-green::before { color: var(--green); }
.quote-green { border-left-color: var(--green); }
.quote footer {
  margin-top: 1rem;
  font-family: var(--f-body); font-style: normal;
  font-size: 0.85rem; color: var(--mute); font-weight: 600;
}

/* ---------- Passos numerados ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: passo; }
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  padding: 1.7rem 1.5rem;
  counter-increment: passo;
}
.step::before {
  content: counter(passo);
  display: flex; align-items: center; justify-content: center;
  width: 2.7rem; height: 2.7rem; margin-bottom: 0.9rem;
  border-radius: 50%; background: var(--navy); color: var(--white);
  font-family: var(--f-display); font-weight: 700; font-size: 1.25rem;
  box-shadow: 0 0 0 5px #E1E5F266;
}
/* Desktop: linha tracejada ligando os números — reforça que é uma sequência */
@media (min-width: 921px) {
  .step { position: relative; }
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(1.7rem + 1.35rem); /* centro do círculo numerado */
    left: calc(1.5rem + 2.7rem + 0.9rem); /* depois do círculo */
    right: -1.3rem; /* atravessa o vão entre os cards */
    border-top: 2px dashed #C7CEE6;
  }
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { color: var(--mute); font-size: 0.95rem; }

/* ---------- Formulários ---------- */
.form-section { padding-bottom: 7.5rem; } /* respiro extra pro fab não cobrir o botão */
.form-intro .checks { margin-top: 1.6rem; }
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-2);
  padding: 2.2rem 2rem;
  /* filete superior na cor do público da página */
  border-top: 6px solid var(--navy);
}
#form-trabalhe { border-top-color: var(--cyan); }
#form-familia  { border-top-color: var(--amber); }
#form-homecare { border-top-color: var(--green); }
.form-card .field { margin-bottom: 1.25rem; }
.form-card label {
  display: block; font-weight: 600; font-size: 0.95rem;
  margin-bottom: 0.4rem; color: var(--ink);
}
.form-card label .req { color: var(--amber-deep); font-weight: 700; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font-size: 1rem;
  /* borda mais escura que a --line decorativa: o limite do campo precisa de
     contraste 3:1 (WCAG 1.4.11) para quem enxerga pouco achar onde digitar */
  border: 1.5px solid #848DA9; border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color .15s ease, background .15s ease;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--cyan); background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,150,225,.15);
}
.form-card textarea { min-height: 6.5rem; resize: vertical; }
.form-card .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card .btn { width: 100%; margin-top: 0.4rem; }
/* Aviso fixo ANTES do botão: prepara a pessoa para o passo final no WhatsApp.
   Cartão branco + filete verde + disco de ícone — mesma linguagem das portas. */
.form-aviso {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem 1rem 1.35rem;
  box-shadow: var(--shadow-1);
  position: relative; overflow: hidden;
}
.form-aviso::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 4px;
  background: var(--wa);
}
.form-aviso-icon {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  background: #EDF7DF; color: var(--green-deep);
  box-shadow: 0 0 0 5px #EDF7DF66;
}
.form-aviso-icon svg { width: 1.5rem; height: 1.5rem; }
.form-aviso-text { font-size: 0.98rem; line-height: 1.55; color: var(--mute); }
.form-aviso-text strong { font-weight: 600; color: var(--navy); }
/* Reforço DEPOIS do clique: mesmo cartão do aviso, com filete âmbar de atenção */
.form-success {
  display: none;
  margin-top: 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem 1rem 1.35rem;
  box-shadow: var(--shadow-1);
  position: relative; overflow: hidden;
  font-size: 0.98rem; line-height: 1.55; color: var(--mute);
}
.form-success::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 4px;
  background: var(--amber);
}
.form-success strong { font-weight: 600; color: var(--navy); }
.form-success.show { display: block; }

/* ---------- Rodapé ---------- */
footer.site {
  background: var(--navy-ink); color: rgba(255,255,255,.82);
  /* base extra em px: zona onde o botão flutuante de WhatsApp paira,
     para ele nunca cobrir o texto da última linha */
  padding: 4rem 0 104px;
  margin-top: 0;
  /* faixa-assinatura estática no topo do rodapé — fecha a página com o
     mesmo motivo da care-line que a abre */
  border-top: 7px solid var(--navy);
  border-image: linear-gradient(90deg,
    var(--amber), var(--cyan), var(--navy), var(--navy), var(--amber)) 1;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.footer-brand img { width: 2.111rem; height: 2.111rem; object-fit: contain; }
.footer-brand strong { font-family: var(--f-display); font-size: 1.15rem; color: var(--white); }
.footer-grid p { font-size: 0.9rem; color: rgba(255,255,255,.65); }
.footer-grid h3 {
  font-family: var(--f-detail); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 1rem; font-weight: 600;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-grid ul a {
  color: rgba(255,255,255,.85); text-decoration: none; font-size: 0.95rem;
  display: inline-flex; min-height: 1.8rem; align-items: center;
}
.footer-grid ul a:hover { color: var(--white); text-decoration: underline; }
.footer-grid ul li { font-size: 0.95rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.85rem; color: rgba(255,255,255,.55);
}

/* ---------- Botão flutuante de WhatsApp ---------- */
/* Tamanhos em PX de propósito: o botão flutuante não deve crescer com o
   controle A/A+/A++ nem escapar da tela em janelas menores. */
.fab-whats {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  max-width: calc(100vw - 40px);
}
.fab-whats .fab-label {
  background: var(--white); color: var(--ink);
  font-weight: 700; font-size: 16px;
  padding: 10px 18px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-2); border: 1px solid var(--line);
}
.fab-whats .fab-bubble {
  flex: none;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--wa); color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35), var(--shadow-1);
  transition: transform .15s ease;
}
.fab-whats:hover .fab-bubble { transform: scale(1.07); }
.fab-whats .fab-bubble svg { width: 32px; height: 32px; }

/* ---------- Responsividade ---------- */

/* HEADER NO DESKTOP: medidas em PX de propósito.
   O header precisa caber SEMPRE numa linha; se escalasse com o A/A+/A++
   (rem), o botão verde sairia da tela. O conteúdo das páginas escala
   normalmente — só a moldura de navegação fica estável. */
@media (min-width: 921px) {
  header.site { min-height: 76px; }
  header.site .wrap { gap: 16px; }
  .brand img { height: 44px; width: auto; }
  .nav-area { gap: 14px; }
  .nav-links { gap: 4px; }
  .nav-links a { font-size: 15.5px; padding: 6px 11px; min-height: 48px; }
  .font-controls button { min-width: 40px; min-height: 41px; font-size: 15px; }
  header.site .btn { font-size: 16.5px; padding: 12px 18px; min-height: 48px; }
}
/* Entre 921 e 1080px o header fica apertado: o complemento " e Instituições"
   do menu some (o rótulo completo aparece em telas largas e no menu mobile) */
@media (min-width: 921px) and (max-width: 1080px) {
  .nav-links .nav-ext { display: none; }
}
/* Desktop intermediário: aperta progressivamente para continuar cabendo */
@media (min-width: 921px) and (max-width: 1280px) {
  .nav-area { gap: 8px; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 14px; padding: 4px 7px; }
  .font-controls button { min-width: 36px; min-height: 38px; font-size: 14px; }
  header.site .btn { font-size: 15px; padding: 10px 14px; }
}
@media (min-width: 921px) and (max-width: 1080px) {
  .nav-area { gap: 9px; }
  .nav-links { gap: 3px; }
  .nav-links a { font-size: 14.5px; padding: 5px 8px; }
  .font-controls button { min-width: 34px; min-height: 36px; font-size: 13.5px; }
  header.site .btn { font-size: 15px; padding: 10px 14px; }
  .brand img { height: 40px; }
}
@media (min-width: 921px) and (max-width: 1000px) {
  header.site .wrap { padding: 0 16px; gap: 8px; }
  .nav-area { gap: 6px; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 14px; padding: 4px 6px; }
  .font-controls { padding: 2px; }
  .font-controls button { min-width: 30px; min-height: 34px; font-size: 13px; }
  header.site .btn { font-size: 14.5px; padding: 9px 12px; }
  .brand img { height: 36px; }
}

@media (max-width: 920px) {
  /* Navegação vira hambúrguer */
  .nav-toggle { display: flex; }
  .nav-area {
    position: fixed; inset: var(--header-h) 0 0 0;
    z-index: 60;
    background: var(--paper); /* 100% OPACO — regra crítica */
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0;
    padding: 1.4rem 1.556rem 2rem;
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-0.5rem);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-area.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0.3rem; }
  .nav-links a {
    min-height: 2.667rem; font-size: 1.1rem; padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-area .font-controls { margin: 1.2rem 0 0.4rem; align-self: flex-start; }
  .nav-area .btn { margin-top: 0.8rem; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.2rem; }
  .doors { grid-template-columns: 1fr; }
  .hero .wrap { grid-template-columns: 1fr; gap: 2.6rem; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 1.111rem; } /* 20px */
  section { padding: 3.556rem 0; }
  .dial-panel { padding: 4rem 1.2rem 1.6rem; }
  .grid-4, .grid-3, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .form-card .field-row { grid-template-columns: 1fr; }
  .cta-band { padding: 2.4rem 1.6rem; }
  .fab-whats .fab-label { display: none; } /* mobile: só a bolha (64px, bem tocável) */
  .hero { padding: 4rem 0; }
  .hero-stats { gap: 1.4rem; }
}

/* ---------- Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .care-line::before { animation: none; }
  .live-badge .dot { animation: none; }
}

/* ---------- Impressão ----------
   Muita gente 55+ imprime a página com telefone e horários. Por padrão o
   navegador NÃO imprime fundos: sem estas regras, os painéis escuros sairiam
   com texto branco sobre papel branco (invisível). */
@media print {
  .fab-whats, .nav-toggle, .font-controls, .care-line, .skip-link,
  .video-card, .live-badge { display: none !important; }
  header.site { position: static; }
  .hero, .subhero, .cta-band, .dial-panel, footer.site {
    background: var(--white) !important; box-shadow: none !important;
  }
  .hero *, .subhero *, .cta-band *, .dial-panel *, footer.site * {
    color: var(--ink) !important;
  }
  .hero h1 em { background: none; }
  .btn { box-shadow: none !important; }
  .btn-ghost { border-color: var(--navy); }
}

