/* =====================================================================
   RESET & BASE
===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'ClashDisplay', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* =====================================================================
   CSS VARIABLES
===================================================================== */
:root {
  --bg-base:    #0a0a0a;
  --bg-alt:     #0f0f0f;
  --primary:    #9b2045;
  --accent:     #d63a6e;
  --card-bg:    #7a1a35;
  --text:       #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --border:     rgba(155, 32, 69, 0.4);
}

/* =====================================================================
   FONTES LOCAIS — ClashDisplay
===================================================================== */
@font-face {
  font-family: 'ClashDisplay';
  src: url('fonts/ClashDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ClashDisplay';
  src: url('fonts/ClashDisplay-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =====================================================================
   TIPOGRAFIA — ClashDisplay Semibold nos títulos, Regular no restante
===================================================================== */
h1, h2, h3 {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
}

/* =====================================================================
   ANIMATIONS
===================================================================== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 0 0   rgba(155, 32, 69, 0.7),
      0 0 20px 4px rgba(155, 32, 69, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(155, 32, 69, 0),
      0 0 32px 8px rgba(155, 32, 69, 0.65);
  }
}

@keyframes shine {
  0%   { transform: translateX(-150%) skewX(-15deg); }
  100% { transform: translateX(350%)  skewX(-15deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   INTERSECTION OBSERVER CLASSES
===================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible  { opacity: 1; transform: translateY(0); }
.fade-in.delay-1  { transition-delay: 0.1s; }
.fade-in.delay-2  { transition-delay: 0.2s; }
.fade-in.delay-3  { transition-delay: 0.3s; }
.fade-in.delay-4  { transition-delay: 0.4s; }

/* =====================================================================
   CTA BUTTON — global style
===================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9b2045 0%, #c2285a 100%);
  color: #ffffff;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 18px 52px;
  box-shadow: 0 0 22px 4px rgba(155, 32, 69, 0.5);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: shine 2.8s infinite;
}
.btn-cta:hover {
  filter: brightness(1.12);
  transform: scale(1.025);
  box-shadow: 0 0 32px 8px rgba(155, 32, 69, 0.7);
}

.btn-cta-lg {
  font-size: 18px;
  padding: 22px 64px;
  box-shadow: 0 0 30px 6px rgba(155, 32, 69, 0.6);
}

/* Accent text */
.accent { color: var(--accent); }

/* =====================================================================
   LOGO
===================================================================== */
.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(155,32,69,0.5));
}

/* =====================================================================
   SECTION 1 — HERO
===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: #111111;
  background-image: url('images/background.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.68) 50%,
    rgba(0,0,0,0.22) 100%
  );
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at right center,
    rgba(155,32,69,0.55) 0%,
    transparent 65%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 48px 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-headline {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
}



.hero-video-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 100px 80px 20px;
  gap: 16px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.75),
    0 0  40px rgba(155,32,69,0.22);
}
/* vídeo ocupa o wrapper, pointer-events none = sem clique nativo */
.local-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  pointer-events: none;
}

/* ── Overlay inicial (thumbnail + botão play) ── */
.vp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  z-index: 3;
  transition: opacity 0.35s ease;
}
.vp-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.vp-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 2.2s infinite;
  transition: transform 0.2s;
}
.vp-play-btn:hover { transform: scale(1.1); }
.vp-play-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  margin-left: 6px;
}

/* ── Barra de progresso customizada ── */
.vp-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.vp-controls.visible {
  opacity: 1;
  pointer-events: none; /* barra é visual, não interativa */
}

.vp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vp-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  overflow: hidden;
}
.vp-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  transition: width 0.8s linear;
}

.vp-time {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 36px;
  text-align: right;
}

.video-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
}

/* =====================================================================
   SECTION 2 — PROBLEMA / VIRADA
===================================================================== */
.section-problema {
  background: var(--bg-base);
  padding: 80px 100px;
}
.problema-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
}

.card-problema {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,32,69,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.card-problema h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.38;
  color: #ffffff;
}
.card-problema p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-virada {
  background: linear-gradient(135deg, #7a1a35 0%, #c2285a 100%);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.card-virada p {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.65;
}
.card-virada .virada-final {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}

/* =====================================================================
   SECTION 3 — O QUE É O CONTEÚDO CLUB
===================================================================== */
.section-oque {
  background: var(--bg-base);
  padding: 100px 100px;
}
.section-oque .sec-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-oque .sec-header h2 {
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-oque .sec-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.pilares-grid {
  max-width: 1100px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pilar-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pilar-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(214,58,110,0.28);
  transform: translateY(-5px);
}
.pilar-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.pilar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.cta-center { text-align: center; }

/* =====================================================================
   SECTION 4 — MÓDULOS + BÔNUS
===================================================================== */
.section-modulos {
  background: var(--bg-alt);
  padding: 100px 100px;
}
.section-modulos .sec-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-modulos .sec-header h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-modulos .sec-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.modulos-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.modulo-card {
  background: rgba(155,32,69,0.1);
  border: 1px solid rgba(155,32,69,0.3);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.modulo-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 14px rgba(155,32,69,0.32);
}
.modulo-ico { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.modulo-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.modulo-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.bonus-divider {
  max-width: 1100px;
  margin: 64px auto 44px;
  border: none;
  border-top: 1px solid rgba(155,32,69,0.4);
}

.bonus-wrapper { max-width: 1100px; margin: 0 auto; text-align: center; }
.bonus-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  margin-bottom: 32px;
}
.bonus-list {
  list-style: none;
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  text-align: left;
  width: 100%;
  max-width: 780px;
}
.bonus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}
.bchk { color: var(--accent); font-size: 18px; flex-shrink: 0; }

.section-modulos .cta-center { margin-top: 64px; }

/* =====================================================================
   SECTION 5 — QUEM É ANNA
===================================================================== */
/* ── Section Anna ── */
.section-anna {
  background: var(--bg-base);
  padding: 100px 100px;
  position: relative;
  overflow: hidden;
}
.section-anna::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(155,32,69,0.22) 0%, transparent 68%);
  pointer-events: none;
}

.anna-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Photo frame ── */
.anna-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 0 0 1px rgba(155,32,69,0.45),
    0 0 60px rgba(155,32,69,0.28),
    0 32px 80px rgba(0,0,0,0.7);
}
.anna-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.anna-photo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(155,32,69,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 50px;
}
.anna-photo-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
}
.anna-photo-name span {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.4px;
}

/* ── Text column ── */
.anna-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.anna-eyebrow {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.anna-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.anna-text h2 {
  font-size: clamp(32px, 3.2vw, 50px);
  color: #fff;
  line-height: 1.1;
}
.anna-text .anna-sub {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}
.anna-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}

.anna-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.anna-chip {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(214,58,110,0.38);
  background: rgba(155,32,69,0.1);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.anna-quote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 4px;
}
.anna-quote blockquote {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  margin-bottom: 10px;
}
.anna-quote .qa-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* =====================================================================
   SECTION 6 — PREÇO + GARANTIA + CTA FINAL
===================================================================== */
.section-preco {
  background: var(--bg-base);
  padding: 100px 100px;
}
.preco-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.section-preco h2 {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}
.preco-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: -16px;
}

.entregaveis {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  width: 100%;
  max-width: 580px;
}
.entregaveis li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: rgba(255,255,255,0.9);
}
.entregaveis .echk { color: var(--accent); font-size: 18px; flex-shrink: 0; }

.valor-percebido {
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.85;
}

.preco-box {
  background: rgba(155,32,69,0.08);
  border: 1px solid rgba(155,32,69,0.5);
  border-radius: 20px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 580px;
}
.preco-intro-text { font-size: 16px; color: rgba(255,255,255,0.8); }
.preco-parcelas {
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.preco-avista { font-size: 20px; color: rgba(255,255,255,0.72); }
.preco-note   { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: -4px; }

.garantia-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(155,32,69,0.3);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  width: 100%;
  max-width: 580px;
}
.garantia-ico { font-size: 52px; flex-shrink: 0; }
.garantia-text h3 { font-size: 20px; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
.garantia-text p  { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

.cta-final-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.btn-cta-final {
  width: 100%;
  max-width: 620px;
}
.cta-bottom-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

/* =====================================================================
   FITAS DECORATIVAS
===================================================================== */
@keyframes marquee-left  { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0);    } }

.fitas-section {
  background: var(--bg-base);
  overflow: hidden;
  padding: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.fita {
  overflow: hidden;
  padding: 13px 0;
  background: rgba(155, 32, 69, 0.1);
  border-top: 1px solid rgba(155, 32, 69, 0.38);
  border-bottom: 1px solid rgba(155, 32, 69, 0.38);
}
.fita-up   { transform: rotate(-4deg) scaleX(1.25); }
.fita-down { transform: rotate(4deg)  scaleX(1.25); }

.fita-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-left 22s linear infinite;
}
.fita-track.fita-reverse { animation: marquee-right 22s linear infinite; }

.fita-item {
  display: inline-block;
  padding: 0 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(214, 58, 110, 0.7);
  font-family: 'ClashDisplay', sans-serif;
}

/* =====================================================================
   PRICE DISPLAY — tipografia hierárquica
===================================================================== */
.pd-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.5);
  font-family: 'ClashDisplay', sans-serif;
}
.pd-main {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}
.pd-prefix {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  padding-bottom: 14px;
  font-family: 'ClashDisplay', sans-serif;
}
.pd-numero {
  font-family: 'ClashDisplay', sans-serif;
  font-size: clamp(72px, 12vw, 116px);
  font-weight: 800;
  color: var(--accent);
  line-height: 0.95;
}
.pd-centavos {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  padding-bottom: 12px;
  font-family: 'ClashDisplay', sans-serif;
}
.pd-avista {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-family: 'ClashDisplay', sans-serif;
}
.pd-note {
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  font-family: 'ClashDisplay', sans-serif;
}

/* =====================================================================
   SEÇÃO GARANTIA (wrapper standalone)
===================================================================== */
.section-garantia {
  background: var(--bg-base);
  padding: 80px 100px;
  display: flex;
  justify-content: center;
}

/* =====================================================================
   GARANTIA NOVA
===================================================================== */
.garantia-nova {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 860px;
  background: rgba(155,32,69,0.07);
  border: 1px solid rgba(155,32,69,0.28);
  border-radius: 20px;
  padding: 48px 44px;
}
.gn-moeda {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #c2285a 0%, #8a1e3c 45%, #3d0d1c 100%);
  box-shadow:
    0 0 0 3px rgba(214,58,110,0.45),
    0 0 0 9px rgba(155,32,69,0.14),
    0 0 44px rgba(155,32,69,0.55),
    inset 0 2px 10px rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gn-num {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 68px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 3px 10px rgba(0,0,0,0.45);
}
.gn-dias {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-family: 'ClashDisplay', sans-serif;
}
.gn-texto {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gn-badge {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 50px;
  border: 1px solid rgba(155,32,69,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  font-family: 'ClashDisplay', sans-serif;
  width: fit-content;
}
.gn-texto h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  color: #ffffff;
  line-height: 1.2;
}
.gn-texto p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

/* =====================================================================
   CARD DE PREÇO
===================================================================== */
.preco-card {
  background: rgba(8,8,8,0.95);
  border: 1px solid rgba(155,32,69,0.45);
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  text-align: center;
  box-shadow:
    0 0 80px rgba(155,32,69,0.15),
    0 32px 64px rgba(0,0,0,0.6);
}
.pc-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(155,32,69,0.45));
}
.pc-headline {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-family: 'ClashDisplay', sans-serif;
  max-width: 340px;
}
.pc-preco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid rgba(155,32,69,0.2);
  border-bottom: 1px solid rgba(155,32,69,0.2);
}
.pc-cta {
  width: 100%;
  max-width: 400px;
  font-size: 13px;
  padding: 18px 32px;
  letter-spacing: 1px;
}
.pc-pagamentos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
  width: 100%;
}
.pc-pagamentos span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.28);
  font-family: 'ClashDisplay', sans-serif;
}
.pc-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.pc-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-family: 'ClashDisplay', sans-serif;
}

/* =====================================================================
   FOOTER
===================================================================== */
.footer {
  background: var(--primary);
  padding: 28px 100px;
  text-align: center;
}
.footer p { font-size: 14px; color: rgba(255,255,255,0.8); }

/* =====================================================================
   RESPONSIVE — TABLET (≤ 1024px)
===================================================================== */
@media (max-width: 1024px) and (min-width: 768px) {
  .hero-content    { padding: 80px 36px 60px 48px; }
  .hero-video-col  { padding: 60px 48px 60px 16px; }
  .hero-headline   { font-size: clamp(24px, 3.2vw, 38px); }
  .pilares-grid    { grid-template-columns: repeat(2, 1fr); }
  .anna-inner      { grid-template-columns: 340px 1fr; gap: 48px; }
  .section-problema,
  .section-oque,
  .section-modulos,
  .section-anna,
  .section-preco,
  .section-garantia,
  .footer { padding-left: 48px; padding-right: 48px; }
}

/* =====================================================================
   RESPONSIVE — MOBILE (≤ 767px)
===================================================================== */
@media (max-width: 767px) {

  /* ── Hero: flex coluna única, video entre h1 e subtítulo ── */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background-image: url('images/mobile.webp');
    background-position: top center;
  }
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.40) 55%,
      rgba(0,0,0,0.30) 100%
    );
  }
  /* dissolve hero-content — filhos viram flex items diretos do hero */
  .hero-content {
    display: contents;
  }
  /* z-index 2 em cada filho para ficarem acima do overlay ::before */
  .hero-content > * {
    position: relative;
    z-index: 2;
  }
  /* ordem e espaçamento dos itens */
  .hero-content > :nth-child(1) { order: 1; padding: 72px 24px 0; text-align: center; } /* logo */
  .hero-content > :nth-child(2) { order: 2; padding: 12px 24px 0; text-align: center; font-size: clamp(26px, 7.5vw, 40px); } /* h1 */
  .hero-video-col                { order: 3; padding: 16px 20px; gap: 8px; position: relative; z-index: 2; } /* vídeo */
  .hero-content > :nth-child(3) { order: 4; padding: 0 24px; font-size: 15px; text-align: center; max-width: 100%; } /* subtítulo */
  .hero-content > :nth-child(4) { order: 5; align-self: center; width: auto; padding: 18px 48px; margin-top: 12px; margin-bottom: 56px; } /* botão */

  .logo-img { margin: 0 auto; }

  /* ── Botões ── */
  .btn-cta, .btn-cta-lg {
    width: 100%;
    padding: 18px 20px;
    font-size: 14px;
  }

  /* ── Padding lateral de todas as sections ── */
  .section-problema,
  .section-oque,
  .section-modulos,
  .section-anna,
  .section-preco,
  .section-garantia,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Section 2 — Problema / Virada ── */
  .section-problema { padding-top: 60px; padding-bottom: 60px; }
  .problema-grid  { grid-template-columns: 1fr; border-radius: 16px; }
  .card-problema  { padding: 40px 28px; text-align: center; }
  .card-virada    { padding: 40px 28px; text-align: center; }

  /* ── Section 3 — O que é ── */
  .section-oque { padding-top: 72px; padding-bottom: 72px; }
  .section-oque .sec-header { margin-bottom: 40px; }
  .pilares-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
  .pilar-card   { padding: 28px 14px; }

  /* ── Section 4 — Módulos / Bônus ── */
  .section-modulos { padding-top: 72px; padding-bottom: 72px; }
  .section-modulos .sec-header { margin-bottom: 40px; }
  .modulos-grid { grid-template-columns: 1fr; gap: 14px; }
  .modulo-card  { padding: 22px 20px; }
  .bonus-list   { grid-template-columns: 1fr; }
  .section-modulos .cta-center { margin-top: 48px; }

  /* ── Section Preço ── */
  .section-preco { padding-top: 72px; padding-bottom: 72px; }
  .preco-card    { padding: 36px 20px; }
  .pc-cta        { max-width: 100%; }

  /* ── Garantia ── */
  .section-garantia { padding-top: 60px; padding-bottom: 60px; }
  .garantia-nova {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
    gap: 28px;
  }
  .gn-moeda { margin: 0 auto; }
  .gn-badge { margin: 0 auto; }

  /* ── Section Anna ── */
  .section-anna { padding-top: 72px; padding-bottom: 72px; }
  .anna-inner   { grid-template-columns: 1fr; gap: 40px; }
  .anna-photo-frame { aspect-ratio: 3 / 4; max-width: 320px; margin: 0 auto; }
  .anna-text    { text-align: center; align-items: center; }
  .anna-eyebrow { justify-content: center; }
  .anna-eyebrow::after { display: none; }
  .anna-chips   { justify-content: center; gap: 8px; }
  .anna-quote   {
    text-align: left;
    max-width: 420px;
  }

  /* ── Footer ── */
  .footer { padding: 24px 20px; }
}
