/* =========================================================
   V6 — V5 + elementos astrológicos (roda zodiacal, signos,
   símbolos planetários flutuantes, constelações)
   Base: paleta + fonte + copy da V5
   ========================================================= */

:root {
  /* Opta por NÃO permitir o escurecimento automático do navegador (Auto Dark
     Theme do Chrome Android / Samsung Internet). O keyword "only" desativa a
     inversão de cores que deixava o site escuro e sem cor no celular. */
  color-scheme: only light;

  --bg: #fafaff;
  --bg-alt: #f3f0ff;
  --surface: #ffffff;
  --ink: #15132b;
  --ink-deep: #0a0e27;
  --ink-soft: #4a4566;
  --ink-muted: #8884a0;
  --line: #e8e4f3;

  --indigo: #6366f1;
  --indigo-deep: #4f46e5;
  --violet: #8b5cf6;
  --violet-deep: #5b3aa3;
  --pink: #ec4899;
  --emerald: #10b981;
  --gold: #d4af37;
  --gold-soft: #e8c875;

  --grad-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 45%, #ec4899 100%);
  --grad-gold: linear-gradient(135deg, #d4af37 0%, #e8c875 100%);
  --grad-soft: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);

  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;

  --shadow-1: 0 4px 14px rgba(99, 102, 241, 0.08);
  --shadow-2: 0 12px 40px rgba(99, 102, 241, 0.14);
  --shadow-3: 0 24px 60px -10px rgba(139, 92, 246, 0.22);
  --shadow-gold: 0 10px 30px -8px rgba(212, 175, 55, 0.35);

  --maxw: 1200px;
  --maxw-narrow: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.container.narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }

/* =========================================================
   ASTROLOGY DECORATIONS
   ========================================================= */

/* ---- Constelação pontilhada de fundo (toda a página) ---- */
.constellation-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(139, 92, 246, 0.55), transparent 50%),
    radial-gradient(1px 1px at 28% 36%, rgba(212, 175, 55, 0.5), transparent 50%),
    radial-gradient(1.2px 1.2px at 46% 12%, rgba(99, 102, 241, 0.45), transparent 50%),
    radial-gradient(1px 1px at 64% 28%, rgba(236, 72, 153, 0.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 82% 22%, rgba(212, 175, 55, 0.55), transparent 50%),
    radial-gradient(1px 1px at 14% 62%, rgba(99, 102, 241, 0.4), transparent 50%),
    radial-gradient(1.4px 1.4px at 38% 78%, rgba(168, 85, 247, 0.5), transparent 50%),
    radial-gradient(1px 1px at 58% 88%, rgba(212, 175, 55, 0.45), transparent 50%),
    radial-gradient(1.2px 1.2px at 78% 72%, rgba(139, 92, 246, 0.5), transparent 50%),
    radial-gradient(1px 1px at 92% 54%, rgba(236, 72, 153, 0.35), transparent 50%);
  background-repeat: repeat;
  background-size: 1200px 900px;
  opacity: 0.6;
  animation: constellation-drift 60s linear infinite;
}
@keyframes constellation-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 1200px 900px; }
}

/* ---- Símbolos planetários flutuando como decoração ----
   Posicionados nas bordas/cantos (longe do centro) pra não competir com a leitura.
*/
.floating-symbols {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-sym {
  position: absolute;
  font-family: var(--font-serif);
  font-style: normal;
  color: var(--gold);
  opacity: 0.05;
  font-weight: 400;
  user-select: none;
}
.sym-1 { font-size: 220px; top: 6%;  left: -80px;  color: var(--violet);   animation: float-slow 22s ease-in-out infinite; }
.sym-2 { font-size: 170px; top: 36%; right: -70px; color: var(--gold);    animation: float-slow 26s ease-in-out infinite reverse; }
.sym-3 { font-size: 200px; top: 62%; left: -80px;  color: var(--indigo);  animation: float-slow 30s ease-in-out infinite; }
.sym-4 { font-size: 150px; top: 80%; right: -60px; color: var(--pink);    animation: float-slow 24s ease-in-out infinite reverse; }
.sym-5 { font-size: 130px; top: 8%;  right: -50px; color: var(--gold);    animation: float-slow 28s ease-in-out infinite; opacity: 0.04; }
.sym-6 { font-size: 150px; top: 92%; left: -50px;  color: var(--violet);  animation: float-slow 32s ease-in-out infinite reverse; opacity: 0.05; }

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(20px, -30px) rotate(8deg); }
}

/* ---- Roda zodiacal SVG no hero ----
   Aumentada e mascarada com radial-gradient para que o CENTRO da roda
   (onde está o texto) fique transparente. Só o anel externo com os
   signos do zodíaco aparece nas bordas, sem competir com a leitura.
*/
.zodiac-wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(720px, 95vw, 1100px);
  height: clamp(720px, 95vw, 1100px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  /* fade do centro pra fora: 0% (transparente) → 55% (transparente) → 78% (opaco) → 100% */
  -webkit-mask-image: radial-gradient(circle, transparent 0%, transparent 50%, black 78%, black 100%);
          mask-image: radial-gradient(circle, transparent 0%, transparent 50%, black 78%, black 100%);
}
.zodiac-wheel svg {
  width: 100%;
  height: 100%;
  animation: wheel-rotate 140s linear infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.18));
}
@keyframes wheel-rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Halo de leitura: gradiente radial atrás do conteúdo do hero,
   garantindo um "respiro" claro entre o texto e os elementos decorativos. */
.hero-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 120%;
  background: radial-gradient(ellipse at center,
    rgba(250, 250, 255, 0.92) 0%,
    rgba(250, 250, 255, 0.7) 35%,
    rgba(250, 250, 255, 0.25) 60%,
    transparent 80%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

/* ---- Cinta zodiacal infinita ---- */
.zodiac-ticker {
  background: linear-gradient(90deg, rgba(91, 58, 163, 0.06), rgba(212, 175, 55, 0.08), rgba(236, 72, 153, 0.06));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: ticker-scroll 80s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--violet-deep);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ticker-track span:nth-child(even) {
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Símbolos gigantes de fundo em algumas seções ---- */
.bg-symbol {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--violet);
  opacity: 0.05;
  font-size: 480px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.bg-symbol-1 { top: -60px; left: -80px; color: var(--violet-deep); }
.bg-symbol-2 { bottom: -80px; right: -80px; color: var(--gold); font-size: 380px; }
.bg-symbol-3 { top: 50%; right: -100px; transform: translateY(-50%); color: var(--indigo); font-size: 420px; }
.bg-symbol-4 { top: -50px; right: -40px; color: var(--pink); font-size: 320px; opacity: 0.06; }

/* ---- Divisor celestial entre seções ---- */
.celestial-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 24px 0;
  position: relative;
  z-index: 2;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.divider-symbol {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

/* =========================================================
   NAV (igual V5)
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250, 250, 255, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  white-space: nowrap; /* impede "Mapa Natal" de quebrar linha em telas estreitas */
}
/* Tamanho do texto da logo do nav — em CSS (e não inline) pra poder
   encolher nos breakpoints e nunca quebrar linha. */
.logo-text {
  font-size: 25px;
  font-weight: 900;
}
.logo-orbit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.logo-orbit.small { width: 18px; height: 18px; }
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.55);
}
.logo-orbit.small .logo-dot { width: 8px; height: 8px; }

/* =========================================================
   BUTTONS (igual V5)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-pill { border-radius: 999px; }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-gradient {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-2);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

.btn-ghost {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--bg-alt);
}

/* =========================================================
   CTA FLUTUANTE — acompanha o scroll (position: fixed) e some
   na seção de pagamento. Necessário porque o sticky da navbar
   é quebrado pelo overflow-x:hidden do html/body.
   ========================================================= */
.float-cta {
  position: fixed;
  top: 14px;
  right: 24px;
  z-index: 60; /* acima da nav (50) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-3);
}
.float-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* No mobile vira uma barra inferior de largura quase total, padrão de
   CTA fixo que não cobre o conteúdo nem briga com o topo. */
@media (max-width: 768px) {
  .float-cta {
    top: 10px;
    right: 16px;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 90px 0 110px;
  text-align: center;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.55), transparent 70%);
  top: -80px; left: -120px;
}
.blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4), transparent 70%);
  top: 100px; right: -160px;
}
.blob-gold {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.32), transparent 70%);
  bottom: -120px; left: 50%; transform: translateX(-50%);
  opacity: 0.4;
}

.hero-inner { position: relative; z-index: 3; max-width: 900px; margin: 0 auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-1);
  margin-bottom: 28px;
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: var(--ink-deep);
}
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-p strong { color: var(--ink-deep); font-weight: 700; }

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(16, 185, 129, 0.3);
  margin-bottom: 40px;
}
.price-old {
  font-size: 16px;
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-color: var(--pink);
}
.price-now {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-deep);
}
.badge-soft {
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.trust {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust > div {
  padding: 18px 24px;
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  gap: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.trust > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  border-radius: 12px;
}
.trust-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.trust-icon-pix {
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
}
.trust-icon-time {
  color: var(--violet);
  background: rgba(139, 92, 246, 0.1);
}
.trust-icon-shield {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}
.trust strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-deep);
  letter-spacing: -0.005em;
}
.trust span {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-with-orbit { overflow: hidden; }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-deep);
  background: rgba(91, 58, 163, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--ink-deep);
}
.h2.center { text-align: center; }

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.lead.center { max-width: 640px; margin: 0 auto; text-align: center; }
.lead em { color: var(--violet-deep); font-style: normal; font-weight: 600; }

.head-block {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 760px;
}

/* =========================================================
   STORY (agitação de padrões — antes do "por que faz sentido")
   ========================================================= */
.story { overflow: hidden; }
.story .h2 { margin-bottom: 30px; }
.story-body { max-width: 680px; margin: 0 auto; }
.story-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.story-body p:last-child { margin-bottom: 0; }
.accent-gold { color: var(--gold); font-style: italic; font-weight: 600; }
.story-close {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
  color: var(--violet-deep);
  margin: 40px 0 0;
}
.bg-symbol-story { top: -40px; right: -60px; color: var(--gold); font-size: 300px; opacity: 0.05; }
.bg-symbol-quem { top: -30px; left: -70px; color: var(--violet-deep); font-size: 300px; opacity: 0.05; }

/* =========================================================
   MODULES GRID (uniforme, igual V5, ícones reforçados)
   ========================================================= */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.module-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(212, 175, 55, 0.45);
}
.module-card:hover::before { opacity: 1; }

.module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--violet-deep);
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  position: relative;
}
.module-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  pointer-events: none;
}
.module-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
}
.module-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   HOW TO (igual V5)
   ========================================================= */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}
.how-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.how-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--grad-gold);
  color: var(--ink-deep);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
}
.how-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   DUAL (scarcity + guarantee)
   ========================================================= */
.dual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}
.dual-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.dual-card.highlight {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 92, 246, 0.08));
  border-color: rgba(212, 175, 55, 0.45);
}
.dual-emoji { font-size: 30px; display: block; margin-bottom: 12px; }
.dual-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
}
.dual-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   TESTIMONIALS — Prova social
   Estilo alinhado à V6: cards brancos com border + shadow,
   gift card destacado com o mesmo gradiente de .dual-card.highlight,
   aspas em gradiente violeta, fonte serif itálico no quote.
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(139, 92, 246, 0.3);
}

/* Card destacado: o do presente — mesma lógica visual do .dual-card.highlight */
.testimonial-card.gift {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 92, 246, 0.08));
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-gold);
}

.testimonial-card.gift:hover {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 18px 44px -10px rgba(212, 175, 55, 0.4);
}

.testimonial-card.gift::after {
  content: "🎁 presente perfeito";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(212, 175, 55, 0.45);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.5;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 16px;
  height: 26px;
  opacity: 0.75;
}

.testimonial-card.gift .testimonial-quote-mark {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
  flex: 1;
}

.testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-deep);
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}

.testimonial-meta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}

/* =========================================================
   FAQ (igual V5)
   ========================================================= */
.faq {
  display: grid;
  gap: 10px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.faq details {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  padding: 20px 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq details[open] {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-1);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink-deep);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink-deep);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* =========================================================
   CHECKOUT
   ========================================================= */
.checkout { padding-bottom: 130px; position: relative; overflow: hidden; }
.checkout-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.order-form {
  margin-top: 40px;
  padding: 40px;
  background: white;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  position: relative;
  z-index: 2;
}
.form-row { margin-bottom: 18px; }
.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0; /* permite o campo encolher dentro dos grids (two/three-cols) */
}
.form-field > span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-deep);
}
.form-field input,
.form-field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
  box-sizing: border-box; /* padding/borda contam dentro da largura — evita estouro */
  width: 100%;
  max-width: 100%;
}
.form-field input::placeholder { color: var(--ink-muted); }

/* Seta de dropdown no <select> (necessária porque appearance: none remove a nativa) */
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='8'%20viewBox='0%200%2012%208'%20fill='none'%3E%3Cpath%20d='M1%201.5%206%206.5%2011%201.5'%20stroke='%238884a0'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px; /* espaço pra seta não sobrepor o texto */
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: white; /* background-color (não shorthand) pra não apagar a seta do select */
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] { border-color: var(--pink); }
.form-field .hint, .form-field .muted {
  font-size: 12px;
  color: var(--ink-muted);
}
.form-field .error-msg {
  font-size: 12px;
  color: var(--pink);
  min-height: 14px;
  font-weight: 500;
}

/* ── Data de nascimento: 3 campos (dia / mês / ano) + botão de calendário ── */
.dob-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dob-field .dob-part {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}
.dob-field .dob-year { flex: 1.5 1 0; }
.dob-sep {
  flex: 0 0 auto;
  color: var(--ink-muted);
  font-weight: 700;
  user-select: none;
}
.date-toggle {
  flex: 0 0 auto;
  width: 50px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  color: var(--violet-deep);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.date-toggle:hover { color: var(--gold); border-color: var(--gold); }
.date-toggle svg { width: 20px; height: 20px; }
/* âncora invisível só pra posicionar o calendário do flatpickr */
.dob-fp-anchor {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

/* Tema do flatpickr alinhado ao V6 (violeta/dourado, Manrope) */
.flatpickr-calendar {
  font-family: var(--font-display);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month input.cur-year,
.flatpickr-monthDropdown-months,
.flatpickr-weekday {
  color: var(--ink-deep);
  fill: var(--ink-deep);
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg { fill: var(--violet-deep); }
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--gold); }
.flatpickr-day:hover,
.flatpickr-day:focus { background: var(--bg-alt); border-color: var(--bg-alt); }
.flatpickr-day.today { border-color: var(--gold); }
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: var(--violet-deep);
  border-color: var(--violet-deep);
  color: #fff;
}

.order-form .btn-gradient { margin-top: 12px; }

.form-foot {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-muted);
}

/* ── Toggle PIX/Cartão ─────────────────────────────────────────── */
.payment-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.payment-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.payment-option:hover {
  border-color: var(--violet);
  background: white;
}

.payment-toggle input[type="radio"]:checked + .payment-option {
  border-color: var(--gold);
  background: white;
  box-shadow: var(--shadow-gold);
}

.payment-toggle input[type="radio"]:focus-visible + .payment-option {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.payment-option-icon {
  font-size: 26px;
  line-height: 1;
}

.payment-option-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-deep);
}

.payment-option-hint {
  font-size: 12px;
  color: var(--ink-muted);
}

/* ── Bloco condicional de cartão ──────────────────────────────── */
.card-fields {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}

.card-fields.hidden { display: none; }

.card-section-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 4px 0 14px;
}

.card-section-title:not(:first-of-type) {
  margin-top: 24px;
}

.card-section-hint {
  display: block;
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

/* ── Grid 3 colunas (validade / CVV / parcelas) ───────────────── */
.form-row.three-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 16px;
}

@media (max-width: 540px) {
  .form-row.three-cols {
    grid-template-columns: 1fr 1fr;
  }
  .form-row.three-cols > label:last-child {
    grid-column: 1 / -1;
  }
  .payment-option {
    padding: 14px 12px;
  }
  .payment-option-icon { font-size: 22px; }
}

.order-success {
  margin-top: 40px;
  padding: 50px 32px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 92, 246, 0.08));
  border-radius: var(--r-xl);
  border: 1px solid rgba(212, 175, 55, 0.4);
  text-align: center;
  position: relative;
  z-index: 2;
}
.order-success.hidden { display: none; }
.order-success .success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink-deep);
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-gold);
}
.order-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink-deep);
  letter-spacing: -0.015em;
}
.order-success p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}
.order-success em { font-style: italic; color: var(--ink-muted); font-size: 13px; }

/* ---- Bloco PIX (QR Code + copia/cola) ---- */
.pix-box {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
  text-align: left;
}
.pix-qr-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pix-qr-img {
  width: 100%;
  height: auto;
  max-width: 220px;
  display: block;
}
.pix-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pix-copy-wrap label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.pix-copy-paste {
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink-deep);
  resize: none;
  width: 100%;
  word-break: break-all;
}
.pix-copy-paste:focus {
  outline: none;
  border-color: var(--violet);
}
.pix-copy-btn {
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 13px;
}
.pix-foot {
  margin-top: 20px !important;
  font-size: 13.5px !important;
  color: var(--ink-soft) !important;
  line-height: 1.6;
}
.pix-foot strong { color: var(--ink-deep); font-weight: 700; }
.pix-foot em {
  display: inline-block;
  margin-top: 6px;
  font-size: 12.5px !important;
  color: var(--ink-muted);
}

/* Status "aguardando pagamento" com bolinha pulsante */
.pix-foot-waiting {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 18px !important;
  margin-top: 22px !important;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 999px;
  color: var(--violet-deep) !important;
  font-weight: 500;
}
.pix-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.55);
  animation: pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}

/* Variantes do success-mark (pago / cancelado) */
.success-mark-paid {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%) !important;
  color: white !important;
  box-shadow: 0 10px 30px -8px rgba(16, 185, 129, 0.45) !important;
  animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-mark-canceled {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%) !important;
  color: white !important;
  box-shadow: 0 10px 30px -8px rgba(236, 72, 153, 0.4) !important;
}
@keyframes success-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* (regras responsivas do PIX foram movidas pra seção RESPONSIVE no fim do arquivo) */

/* =========================================================
   FOOTER com banda zodiacal
   ========================================================= */
.foot {
  border-top: 1px solid var(--line);
  background: var(--ink-deep);
  color: #c8c2b6;
  padding: 0 0 36px;
  position: relative;
  z-index: 2;
}
.foot-zodiac {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(91, 58, 163, 0.4), rgba(212, 175, 55, 0.3), rgba(91, 58, 163, 0.4));
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 36px;
}
.foot-zodiac span {
  font-size: 22px;
  color: var(--gold-soft);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.foot-zodiac span:hover {
  opacity: 1;
  transform: scale(1.2);
}
.foot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #f5f1e8;
  margin-bottom: 6px;
}
.foot p { margin: 0; font-size: 13px; color: #c8c2b6; }
.foot .muted { color: #8a8497; font-size: 12px; }

/* =========================================================
   RESPONSIVE — refeito com 3 breakpoints claros
   - 1024px: ajustes pequenos (tablet wide)
   - 768px:  layout 1 coluna, esconde decorações pesadas
   - 480px:  mobile real, tipografia compacta
   =========================================================
   Estratégia: a partir de 768px pra baixo, escondemos as
   decorações grandes (roda zodiacal, símbolos flutuantes,
   símbolos gigantes de fundo). Em mobile esses elementos
   atrapalham mais do que decoram — geram bugs de carregamento
   e overflow horizontal. A constelação pontilhada do fundo
   permanece como única decoração ambient.
   ========================================================= */

/* Tudo: garante que nada estoure horizontalmente */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }

/* ---- Tablet wide (até 1024px) ---- */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .head-block { margin: 0 auto 48px; }

  /* Roda menor + máscara mais agressiva pra não competir com texto */
  .zodiac-wheel {
    width: clamp(640px, 110vw, 900px);
    height: clamp(640px, 110vw, 900px);
    opacity: 0.35;
    -webkit-mask-image: radial-gradient(circle, transparent 0%, transparent 55%, black 82%, black 100%);
            mask-image: radial-gradient(circle, transparent 0%, transparent 55%, black 82%, black 100%);
  }
  .float-sym { opacity: 0.04 !important; }

  /* Testimonials: 4 -> 2 colunas */
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ---- Mobile / tablet small (até 768px) ---- */
@media (max-width: 768px) {

  /* Esconde decorações pesadas: roda zodiacal, símbolos flutuantes,
     símbolos gigantes de fundo. Em mobile elas estouravam layout
     e geravam o bug de "tela em branco no carregamento". */
  .zodiac-wheel,
  .floating-symbols,
  .bg-symbol,
  .hero-inner::before { display: none; }

  /* Reduz blobs do hero pra evitar overflow horizontal */
  .blob-1 { width: 280px; height: 280px; top: -60px; left: -100px; }
  .blob-2 { width: 280px; height: 280px; top: 80px; right: -100px; }
  .blob-gold { width: 220px; height: 220px; bottom: -80px; }

  /* Safety net: se o AOS bugar, garante que os elementos apareçam */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Container com padding lateral menor */
  .container { padding: 0 16px; }

  /* Nav menor */
  .nav-inner { padding: 12px 16px; gap: 10px; }
  .logo { font-size: 15px; gap: 8px; }
  .logo-orbit { width: 20px; height: 20px; }
  .logo-dot { width: 9px; height: 9px; }

  /* Botão do header: padding menor pra não espremer o logo */
  .nav .btn-pill {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Hero */
  .hero { padding: 40px 0 60px; }
  .hero-h1 {
    font-size: clamp(30px, 8.5vw, 44px);
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .hero-p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .badge {
    font-size: 12px;
    padding: 7px 14px;
    margin-bottom: 22px;
  }

  /* Hero CTAs empilhados, largura total */
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-cta .btn { width: 100%; }
  .btn-lg { padding: 16px 24px; font-size: 15px; }

  /* Hero price com wrap se precisar */
  .hero-price {
    padding: 10px 18px;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .price-old, .price-now { font-size: 15px; }
  .badge-soft { font-size: 11px; }

  /* Trust cards: 3 em fila estreita */
  .trust {
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
  }
  .trust > div {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 90px;
    padding: 12px 8px;
    gap: 2px;
  }
  .trust-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 4px;
    border-radius: 10px;
  }
  .trust-icon svg { width: 22px; height: 22px; }
  .trust strong { font-size: 13px; }
  .trust span { font-size: 11px; line-height: 1.3; }

  /* Seções gerais */
  .section { padding: 56px 0; }
  .h2 {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.15;
  }
  .lead { font-size: 16px; }
  .head-block { margin: 0 auto 32px; }
  .kicker { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }

  /* Module cards */
  .modules-grid { gap: 14px; }
  .module-card { padding: 22px 18px; border-radius: 20px; }
  .module-card::before { display: none; }
  .module-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 14px;
  }
  .module-icon::before { display: none; }
  .module-card h3 { font-size: 17px; margin-bottom: 6px; }
  .module-card p { font-size: 14px; line-height: 1.55; }

  /* How cards */
  .how-grid { gap: 14px; }
  .how-card { padding: 24px 20px; }
  .how-num {
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin-bottom: 12px;
    border-radius: 12px;
  }
  .how-card h3 { font-size: 17px; }
  .how-card p { font-size: 14px; }

  /* Dual cards */
  .dual-grid { gap: 14px; }
  .dual-card { padding: 28px 22px; }
  .dual-card h3 { font-size: 19px; }
  .dual-card p { font-size: 14.5px; }
  .dual-emoji { font-size: 26px; margin-bottom: 8px; }

  /* Testimonials: empilha em coluna única */
  .testimonial-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 26px 22px 22px; }
  .testimonial-quote-mark { font-size: 56px; margin-bottom: 12px; height: 22px; }
  .testimonial-text { font-size: 15px; line-height: 1.55; margin-bottom: 20px; }
  .testimonial-author { font-size: 14.5px; }
  .testimonial-meta { font-size: 11.5px; }
  .testimonial-card.gift::after { font-size: 10px; padding: 5px 11px; }

  /* FAQ */
  .faq { gap: 8px; margin-top: 28px; }
  .faq details { padding: 16px 18px; border-radius: 14px; }
  .faq summary { font-size: 15px; padding-right: 30px; }
  .faq summary::after { width: 22px; height: 22px; font-size: 14px; }
  .faq details p { font-size: 14px; margin-top: 12px; }

  /* Checkout / form */
  .checkout { padding-bottom: 80px; }
  .order-form {
    padding: 24px 18px;
    border-radius: 24px;
    margin-top: 28px;
  }
  .form-row.two-cols { grid-template-columns: 1fr; gap: 14px; }
  .form-row { margin-bottom: 14px; }
  .checkout-price { gap: 8px; margin: 10px 0 14px; }

  /* PIX box (sucesso) */
  .pix-box { grid-template-columns: 1fr; gap: 18px; }
  .pix-qr-wrap { max-width: 240px; margin: 0 auto; padding: 12px; }
  .pix-copy-btn { align-self: stretch; }
  .order-success { padding: 32px 20px; border-radius: 24px; }
  .order-success h3 { font-size: 22px; }

  /* Ticker (cinta zodiacal) menor */
  .zodiac-ticker { padding: 14px 0; }
  .ticker-track { gap: 24px; animation-duration: 60s; }
  .ticker-track span { font-size: 14px; }
  .ticker-track span:nth-child(even) { font-size: 16px; }

  /* Divisor celestial menor */
  .celestial-divider { padding: 24px 16px 0; gap: 14px; }
  .divider-symbol { font-size: 22px; }

  /* Footer zodiac compacto */
  .foot-zodiac {
    padding: 12px 10px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .foot-zodiac span { font-size: 14px; }
  .foot { padding-bottom: 28px; }
  .foot-inner { padding: 0 16px; }
  .foot-logo { font-size: 14px; }
  .foot p { font-size: 12px; line-height: 1.5; }
  .foot .muted { font-size: 11px; }

  /* Reduz animação do background pra economizar bateria */
  .constellation-bg {
    opacity: 0.4;
    animation: none;
  }
}

/* ---- Mobile pequeno (até 480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Hero ainda menor */
  .hero { padding: 28px 0 48px; }
  .hero-h1 { font-size: clamp(26px, 8.5vw, 34px); }
  .hero-p { font-size: 15px; }

  /* Logo: simplificar */
  .nav-inner { padding: 10px 14px; }
  .logo { font-size: 14px; gap: 6px; }
  .logo-text { font-size: 19px; }
  .nav .btn-pill { padding: 9px 13px; font-size: 12.5px; }

  /* Hero price: empilha valor antigo/atual em coluna */
  .hero-price {
    gap: 4px;
    padding: 12px 18px;
    text-align: center;
  }

  /* Trust: cada card numa linha (3 linhas em vez de 1) — fica mais legível */
  .trust > div {
    flex: 1 1 100%;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 10px 14px;
    gap: 12px;
  }
  .trust-icon { margin-bottom: 0; flex-shrink: 0; }
  .trust > div > strong,
  .trust > div > span { text-align: left; }

  /* H2 menor */
  .h2 { font-size: clamp(22px, 7vw, 28px); }

  /* Seções */
  .section { padding: 44px 0; }
  .head-block { margin: 0 auto 24px; }

  /* Module cards: mais compactos */
  .module-card { padding: 18px 16px; border-radius: 18px; }

  /* Esconde divisor celestial em telas muito pequenas */
  .celestial-divider { display: none; }
}

/* ---- Fallback ultra-pequeno (até 360px) ---- */
@media (max-width: 360px) {
  .hero-h1 { font-size: 24px; }
  .nav .btn-pill { padding: 8px 11px; font-size: 12px; }
  .logo-text { font-size: 16px; }
}
