/* ============================================================
   _tokens.css — variáveis de design (escala Fibonacci)
   Márcia Fernandes · Sensitiva — redesign minimalista
   Paleta índigo preservada da marca original.
   ============================================================ */
:root {
  /* —— Paleta de marca (extraída do site atual) —— */
  --indigo-900: #2b3a63;
  --indigo-800: #384a7a;   /* navy escuro */
  --indigo-700: #485f9d;   /* BRAND principal (cor dominante) */
  --indigo-500: #5c8fc6;   /* azul médio */
  --indigo-400: #7892c2;   /* lavanda/azul */
  --indigo-200: #c3d0ea;
  --indigo-100: #eff2fa;   /* surface azul claro */
  --indigo-050: #f0f3f9;

  /* —— Neutros —— */
  --white: #ffffff;
  --paper: #fbfcfe;
  --ink-900: #1b2235;
  --ink-700: #333333;
  --ink-500: #5b6478;
  --ink-300: #9aa3b6;
  --line-soft: #e6eaf3;

  /* —— Acento místico (sutil, dourado astrológico) —— */
  --gold: #c9a14a;
  --gold-soft: #e9d9ad;

  /* —— Tokens semânticos (light) —— */
  --bg: var(--paper);
  --surface: var(--white);
  --surface-alt: var(--indigo-050);
  --ink: var(--ink-900);
  --ink-muted: var(--ink-500);
  --line: var(--line-soft);
  --brand: var(--indigo-700);
  --brand-strong: var(--indigo-800);
  --brand-soft: var(--indigo-100);
  --on-brand: #ffffff;
  --accent: var(--gold);

  /* —— Tipografia —— */
  --font-display: "Fahkwang", "Roboto Slab", Georgia, serif;
  --font-body: "Inter", "Open Sans", system-ui, -apple-system, sans-serif;

  /* Escala tipográfica (modular, base 1rem = 16px) */
  --t-xs: 0.79rem;
  --t-sm: 0.889rem;
  --t-base: 1rem;
  --t-md: 1.125rem;
  --t-lg: 1.424rem;
  --t-xl: 1.802rem;
  --t-2xl: 2.281rem;
  --t-3xl: 2.887rem;
  --t-4xl: 3.653rem;

  /* —— Espaçamento: escala Fibonacci (px) —— */
  --s-1: 5px;
  --s-2: 8px;
  --s-3: 13px;
  --s-4: 21px;
  --s-5: 34px;
  --s-6: 55px;
  --s-7: 89px;
  --s-8: 144px;
  --s-9: 233px;

  /* —— Raios (Fibonacci) —— */
  --r-sm: 8px;
  --r-md: 13px;
  --r-lg: 21px;
  --r-pill: 233px;

  /* —— Sombras —— */
  --shadow-sm: 0 1px 3px rgba(43, 58, 99, .06), 0 1px 2px rgba(43, 58, 99, .04);
  --shadow-md: 0 8px 21px rgba(43, 58, 99, .08), 0 2px 8px rgba(43, 58, 99, .05);
  --shadow-lg: 0 21px 55px rgba(43, 58, 99, .12);

  /* —— Layout —— */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --header-h: 89px;

  /* —— Transições —— */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .28s;
}

/* —— Dark mode: redefine só tokens semânticos —— */
[data-theme="dark"] {
  --bg: #11162a;
  --surface: #161d36;
  --surface-alt: #1c2542;
  --ink: #eef1f8;
  --ink-muted: #a6b0cc;
  --line: #283254;
  --brand: #7892c2;
  --brand-strong: #93a8d6;
  --brand-soft: #1c2542;
  --on-brand: #11162a;
  --accent: #e9d9ad;
  --paper: #11162a;
  --white: #161d36;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 8px 21px rgba(0,0,0,.35);
  --shadow-lg: 0 21px 55px rgba(0,0,0,.45);
}
/* ============================================================
   _base.css — reset leve + elementos base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: var(--t-4xl); }
h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-lg); }
h4 { font-size: var(--t-md); }

p { color: var(--ink-muted); max-width: 62ch; }

a { color: var(--brand); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--brand-strong); }

img, svg { display: block; max-width: 100%; height: auto; }

ul, ol { padding-left: var(--s-4); }
li { color: var(--ink-muted); margin-block: var(--s-1); }

strong { color: var(--ink); font-weight: 600; }

::selection { background: var(--brand); color: var(--on-brand); }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: var(--r-sm); }

hr { border: none; border-top: 1px solid var(--line); margin-block: var(--s-6); }

input, textarea, button, select { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
/* ============================================================
   _layout.css — container, grid, seções
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--s-4);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--s-8); }
.section--tight { padding-block: var(--s-6); }
.section--alt { background: var(--surface-alt); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--s-6);
}
.section-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--s-7);
  align-items: center;
}

.stack > * + * { margin-top: var(--s-3); }
.stack-lg > * + * { margin-top: var(--s-5); }

.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
/* ============================================================
   _components.css — componentes de UI
   ============================================================ */

/* —— Eyebrow / kicker —— */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-body);
  font-size: var(--t-sm); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: ""; width: 21px; height: 1px; background: var(--brand); opacity: .6;
}
.eyebrow--center { justify-content: center; }

.lead { font-size: var(--t-md); color: var(--ink-muted); max-width: 60ch; }

/* —— Botões —— */
.btn {
  --pad-y: var(--s-3); --pad-x: var(--s-5);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: var(--pad-y) var(--pad-x);
  font-weight: 600; font-size: var(--t-base); line-height: 1;
  border-radius: var(--r-pill); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brand); color: var(--on-brand); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--brand-strong); color: var(--on-brand); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); background: var(--brand-soft); }
.btn--wa { background: #1faa55; color: #fff; box-shadow: 0 8px 21px rgba(31,170,85,.25); }
.btn--wa:hover { background: #178c46; color: #fff; }
.btn--lg { --pad-y: var(--s-4); --pad-x: var(--s-6); font-size: var(--t-md); }
.btn--block { width: 100%; }

/* —— Header / nav —— */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(13px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; gap: var(--s-5);
  height: var(--header-h);
}
.nav__logo { margin-right: auto; display: flex; align-items: center; }
.nav__logo img { height: 30px; width: auto; }
[data-theme="dark"] .nav__logo img,
[data-theme="dark"] .footer__logo img { filter: brightness(0) invert(1); opacity: .92; }
.nav__menu { display: flex; align-items: center; gap: var(--s-5); list-style: none; padding: 0; margin: 0; }
.nav__menu a {
  font-size: var(--t-sm); font-weight: 500; color: var(--ink); position: relative;
  white-space: nowrap;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--brand); transition: width var(--dur) var(--ease);
}
.nav__menu a:hover::after, .nav__menu a[aria-current="page"]::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: var(--s-3); }

.icon-btn {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--surface);
  color: var(--ink); cursor: pointer; transition: all var(--dur) var(--ease);
}
.icon-btn:hover { border-color: var(--brand); color: var(--brand); }

.nav__toggle { display: none; }

/* —— Hero —— */
.hero { position: relative; padding-block: var(--s-8) var(--s-7); overflow: hidden; }
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { margin-top: var(--s-3); }
.hero .lead { margin-top: var(--s-4); }
.hero__cta { margin-top: var(--s-6); }
.hero__trust { margin-top: var(--s-6); display: flex; gap: var(--s-6); flex-wrap: wrap; }
.hero__trust strong { display: block; font-family: var(--font-display); font-size: var(--t-xl); color: var(--brand); }
.hero__trust span { font-size: var(--t-sm); color: var(--ink-muted); }

/* halo astrológico de fundo */
.astro-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.astro-bg::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--indigo-200), transparent 62%);
  opacity: .5; filter: blur(8px);
}
.astro-ring {
  position: absolute; border: 1px solid var(--indigo-200); border-radius: 50%; opacity: .4;
}

/* —— Cards —— */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-5);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--indigo-200); }
.card__icon {
  width: 55px; height: 55px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: var(--s-4);
  background: var(--brand-soft); color: var(--brand);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: var(--s-2); }
.card p { font-size: var(--t-sm); }
.card__link { margin-top: var(--s-4); font-weight: 600; font-size: var(--t-sm); display: inline-flex; gap: 6px; }
.card__link::after { content: "→"; transition: transform var(--dur) var(--ease); }
.card:hover .card__link::after { transform: translateX(4px); }

/* —— Pricing / atendimento —— */
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-6) var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3); position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.is-featured { border-color: var(--brand); box-shadow: var(--shadow-md); }
.price-card__tag {
  position: absolute; top: calc(-1 * var(--s-3)); left: 50%; transform: translateX(-50%);
  background: var(--brand); color: var(--on-brand); font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-pill);
}
.price-card h3 { font-size: var(--t-lg); }
.price-card__old { color: var(--ink-300); text-decoration: line-through; font-size: var(--t-sm); }
.price-card__now { font-family: var(--font-display); font-size: var(--t-3xl); color: var(--ink); line-height: 1; }
.price-card__now small { font-size: var(--t-md); color: var(--ink-muted); }
.price-card ul { list-style: none; padding: 0; margin: var(--s-2) 0; }
.price-card li { display: flex; gap: var(--s-2); align-items: flex-start; font-size: var(--t-sm); }
.price-card li::before { content: "✦"; color: var(--accent); flex: none; }
.price-card .btn { margin-top: auto; }

/* —— Depoimentos —— */
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-6); position: relative;
}
.quote::before {
  content: "“"; font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: var(--indigo-200); position: absolute; top: var(--s-2); left: var(--s-4);
}
.quote p { position: relative; z-index: 1; color: var(--ink); font-size: var(--t-md); }
.quote__author { margin-top: var(--s-4); font-weight: 600; color: var(--ink); font-size: var(--t-sm); }
.quote__author span { display: block; font-weight: 400; color: var(--ink-muted); }

/* —— Badge categorias —— */
.tag {
  display: inline-flex; padding: 8px 16px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: var(--t-sm); color: var(--ink); transition: all var(--dur) var(--ease);
}
.tag:hover { background: var(--brand); color: var(--on-brand); border-color: var(--brand); transform: translateY(-2px); }

/* —— Post card (blog/reflexões) —— */
.post {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post__media { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--indigo-500), var(--indigo-800)); position: relative; display: grid; place-items: center; }
.post__media i { font-size: var(--t-2xl); color: rgba(255,255,255,.92); }
.post__body { padding: var(--s-4) var(--s-5) var(--s-5); }
.post__meta { font-size: var(--t-xs); color: var(--brand); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.post h3 { font-size: var(--t-md); margin: var(--s-2) 0; }
.post p { font-size: var(--t-sm); }

/* —— CTA band —— */
.cta-band {
  background: linear-gradient(135deg, var(--indigo-800), var(--indigo-700));
  border-radius: var(--r-lg); padding: var(--s-7) var(--s-6); text-align: center;
  color: #fff; position: relative; overflow: hidden;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { margin-inline: auto; opacity: .9; }
.cta-band .btn { margin-top: var(--s-5); }
.cta-band::after {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); top: -120px; right: -80px;
}

/* —— Newsletter —— */
.newsletter { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.field {
  flex: 1 1 200px; padding: var(--s-3) var(--s-4);
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); color: var(--ink);
  transition: border-color var(--dur) var(--ease);
}
.field:focus { border-color: var(--brand); outline: none; }
textarea.field { width: 100%; resize: vertical; min-height: 130px; }

/* —— Sobre / perfil —— */
.profile-figure { position: relative; }
.profile-figure img, .profile-ph {
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%;
}
.profile-figure img {
  aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%; display: block;
}
.profile-ph {
  aspect-ratio: 4/5; background: linear-gradient(150deg, var(--indigo-500), var(--indigo-900));
  display: grid; place-items: center; color: rgba(255,255,255,.9); font-family: var(--font-display); font-size: var(--t-2xl); text-align: center; padding: var(--s-5);
}
.profile-badge {
  position: absolute; bottom: var(--s-4); left: calc(-1 * var(--s-4));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4); box-shadow: var(--shadow-md);
}
.profile-badge strong { font-family: var(--font-display); font-size: var(--t-xl); color: var(--brand); display: block; }
.profile-badge span { font-size: var(--t-xs); color: var(--ink-muted); }

/* —— Contato info —— */
.info-row { display: flex; gap: var(--s-3); align-items: flex-start; padding-block: var(--s-3); border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 21px; height: 21px; color: var(--brand); flex: none; margin-top: 3px; }
.info-row strong { display: block; color: var(--ink); }
.info-row span, .info-row a { font-size: var(--t-sm); color: var(--ink-muted); }

/* —— Footer —— */
.site-footer { background: var(--surface-alt); border-top: 1px solid var(--line); padding-block: var(--s-7) var(--s-5); margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); }
.footer__logo img { height: 30px; margin-bottom: var(--s-3); }
.footer__col h4 { font-family: var(--font-body); font-size: var(--t-sm); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: var(--s-3); }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-block: var(--s-2); }
.footer__col a { font-size: var(--t-sm); color: var(--ink); }
.footer__col a:hover { color: var(--brand); }
.footer__social { display: flex; gap: var(--s-2); margin-top: var(--s-3); }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); color: var(--ink); }
.footer__social a:hover { background: var(--brand); color: var(--on-brand); border-color: var(--brand); }
.footer__bottom { margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); font-size: var(--t-xs); color: var(--ink-muted); }

/* —— WhatsApp flutuante —— */
.wa-float {
  position: fixed; right: var(--s-4); bottom: var(--s-4); z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #1faa55; color: #fff;
  display: grid; place-items: center; box-shadow: 0 13px 34px rgba(31,170,85,.4);
  transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* —— Reveal on scroll (só quando há JS; sem JS, conteúdo visível) —— */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
/* ============================================================
   _utilities.css — utilitários
   ============================================================ */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.muted { color: var(--ink-muted); }
.brand { color: var(--brand); }
.full { width: 100%; }
.hide { display: none !important; }
.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;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff;
  padding: var(--s-2) var(--s-4); border-radius: var(--r-sm); z-index: 100;
}
.skip-link:focus { left: var(--s-3); top: var(--s-3); color: #fff; }
.divider-soft { height: 1px; background: var(--line); }
/* ============================================================
   _responsive.css — breakpoints 768 / 480 / 360
   ============================================================ */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .split { gap: var(--s-6); }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  h1 { font-size: var(--t-2xl); }
  h2 { font-size: var(--t-xl); }
  .section { padding-block: var(--s-7); }

  /* header cabe na tela: logo nunca empurra os botões pra fora */
  .nav { gap: var(--s-3); }
  .nav__logo { min-width: 0; }
  .nav__logo img { height: auto; max-height: 26px; max-width: 48vw; width: auto; }
  .nav__actions { gap: var(--s-2); flex: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .profile-figure { order: -1; max-width: 420px; margin-inline: auto; }

  /* nav mobile */
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: var(--s-4); box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform var(--dur) var(--ease);
    height: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu li { width: 100%; }
  .nav__menu a { display: block; padding: var(--s-3) 0; width: 100%; font-size: var(--t-md); }
  .nav__menu a::after { display: none; }
  .nav__toggle { display: inline-grid; }
  .nav__cta-desktop { display: none; }

  .profile-badge { left: var(--s-3); }
  .hero__trust { gap: var(--s-5); }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--s-3); }
  h1, .hero h1 { font-size: var(--t-lg); }
  .footer__grid { grid-template-columns: 1fr; }
  .btn--lg { --pad-x: var(--s-5); }
  .cta-band { padding: var(--s-6) var(--s-4); }
}

@media (max-width: 360px) {
  :root { --t-base: 0.95rem; }
  .hero__cta { display: flex; flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

/* —— Print (recibos / impressão de página) —— */
@media print {
  .site-header, .wa-float, .nav__actions, .cta-band, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .price-card { box-shadow: none; border: 1px solid #ccc; }
}
