/* Estilos base */
:root {
  /* Paleta roxa profissional */
  --bg: #f8f6ff;
  --card: #ffffff;
  --muted: #6b7280;
  --text: #1f2937;
  --brand: #7c3aed;
  --brand-2: #a855f7;
  --accent: #8b5cf6;
  --success: #10b981;
  --gradient-1: linear-gradient(135deg, #7c3aed, #a855f7);
  --gradient-2: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: radial-gradient(ellipse at top, rgba(124, 58, 237, 0.08), transparent),
              radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.05), transparent),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
}

/* Ticker topo */
.ticker { position: sticky; top: 0; z-index: 60; background: #7c3aed; color: #ffffff; border-bottom: 1px solid rgba(0,0,0,.06); overflow: hidden; }
.ticker-track { display: inline-flex; gap: 32px; padding: 6px 12px; white-space: nowrap; animation: tickerMove 20s linear infinite; font-weight: 800; letter-spacing: .02em; }
.ticker-item { opacity: .95; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-10%); } }

/* Ticker visível em todas as larguras */

.container {
  width: 100%;
  max-width: 480px; /* mobile-only */
  padding: 0 16px;
  margin: 0 auto;
  text-align: center;
}

/* Header removido */

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 12px; padding: 10px 16px; text-decoration: none; font-weight: 600; border: 1px solid transparent; }
.btn-primary { background: #7c3aed; color: #ffffff; box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4); border: none; }
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost { color: var(--text); border-color: rgba(124, 58, 237, 0.3); background: transparent; }
.btn-ghost:hover { border-color: rgba(124, 58, 237, 0.6); background: rgba(124, 58, 237, 0.05); }
.btn-lg { padding: 14px 22px; border-radius: 14px; }
.btn-xl { padding: 18px 26px; border-radius: 16px; font-size: 18px; }

/* Hero */
.hero { padding: 20px 0 8px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; }

/* Logo animada */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 8px;
}

.logo-static {
  width: 170px;
  height: auto;
  max-width: 70vw;
}
.eyebrow { color: #a855f7; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 8px; }
.eyebrow-after { margin-top: 8px; }
.hero h1 { font-size: 28px; line-height: 1.2; margin: 0 0 8px; font-weight: 800; }
.hero h1:nth-of-type(2) { color: #7c3aed; }
.hero .sub { font-size: 16px; color: var(--muted); margin: 0 0 10px; font-weight: 400; }
.cta-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 8px 0 8px; }
.trust { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 12px; }
.mockup { background: transparent; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.mockup img { width: 100%; display: block; border-radius: 0; }

/* Sections */
section { padding: 20px 0; }
h2 { font-size: 24px; margin: 0 0 12px; font-weight: 700; }
.lead { color: var(--muted); margin: 0 0 20px; font-size: 16px; font-weight: 400; }

/* Cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 10px; }
.card { background: var(--card); border: 1px solid rgba(124, 58, 237, 0.1); border-radius: 14px; padding: 12px; box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1); }
.card h3 { margin: 0 0 4px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Carrossel de Stories */
.carousel-container {
  width: 100%;
  overflow: hidden;
  margin: 12px 0;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.1s linear;
}

.carousel-item {
  flex-shrink: 0;
  width: 200px;
  height: 355px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 88, 174, 0.4);
  transition: transform 0.3s ease;
}

.story-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.carousel-item:hover {
  transform: scale(1.05);
}

/* Social proof */
.proof-carousel { position: relative; margin-top: 6px; }
.proof-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox: ocultar barra */
  -ms-overflow-style: none; /* IE/Edge antigo */
}
.proof-track::-webkit-scrollbar { display: none; }
.proof-slide { scroll-snap-align: start; display: grid; place-items: center; }
.proof-img {
  width: 100%;
  aspect-ratio: 4 / 3; /* retangular */
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.12);
}
.proof-dots { display:flex; justify-content:center; gap:8px; margin-top:10px; }
.proof-dot { width:8px; height:8px; border-radius:50%; background: rgba(124, 58, 237, 0.35); }
.proof-dot.active { background: #7c3aed; }

/* Bonuses */
.bonuses .info-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.info-box { background: linear-gradient(180deg, rgba(124, 58, 237, 0.05), rgba(168, 85, 247, 0.03)); border: 1px solid rgba(124, 58, 237, 0.22); border-radius: 14px; padding: 12px; box-shadow: 0 6px 16px rgba(124, 58, 237, 0.12); transition: transform .2s ease, box-shadow .2s ease; }
.info-box:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(124, 58, 237, 0.18); }
.box-title { margin: 0 0 8px; font-size: 16px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.check-list li { position: relative; padding-left: 26px; text-align: left; color: var(--text); }
.check-list li:before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 5px; background: #7c3aed; box-shadow: 0 2px 6px rgba(124, 58, 237, 0.35); }
.check-list li:after { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 3px; border: 2px solid #fff; border-top: 0; border-right: 0; transform: rotate(-45deg); }
/* Overrides específicos: Figurinhas do Pack (1º) e Bônus (2º) */
.bonuses .info-grid .info-box:nth-of-type(1) {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}
.bonuses .info-grid .info-box:nth-of-type(1) .box-title,
.bonuses .info-grid .info-box:nth-of-type(1) h3,
.bonuses .info-grid .info-box:nth-of-type(1) p,
.bonuses .info-grid .info-box:nth-of-type(1) li { color: #ffffff; }
.bonuses .info-grid .info-box:nth-of-type(1) .check-list { columns: 2; column-gap: 12px; }
.bonuses .info-grid .info-box:nth-of-type(1) .check-list li { break-inside: avoid; }
.bonuses .info-grid .info-box:nth-of-type(1) .check-list li:before { background: rgba(255,255,255,0.22); box-shadow: none; }
.bonuses .info-grid .info-box:nth-of-type(1) .check-list li:after { border-color: #fff; }

.bonuses .info-grid .info-box:nth-of-type(2) {
  background: #a855f7;
  border-color: #a855f7;
  color: #ffffff;
}
.bonuses .info-grid .info-box:nth-of-type(2) .box-title,
.bonuses .info-grid .info-box:nth-of-type(2) h3,
.bonuses .info-grid .info-box:nth-of-type(2) p,
.bonuses .info-grid .info-box:nth-of-type(2) li { color: #ffffff; }
.bonuses .info-grid .info-box:nth-of-type(2) .check-list { columns: 2; column-gap: 12px; }
.bonuses .info-grid .info-box:nth-of-type(2) .check-list li { break-inside: avoid; }
.bonuses .info-grid .info-box:nth-of-type(2) .check-list li:before { background: rgba(255,255,255,0.22); box-shadow: none; }
.bonuses .info-grid .info-box:nth-of-type(2) .check-list li:after { border-color: #fff; }

/* Content list */
.content-list { background: transparent; }
.content-list .container { color: inherit; }
.content-list h2 { color: inherit; }
.features { display: grid; gap: 8px; padding-left: 0; text-align: left; }
.features li { position: relative; color: var(--text); padding: 10px 12px 10px 34px; background: #ffffff; border: 1px solid #7c3aed; border-radius: 12px; }
.features li:before { content: ""; position: absolute; left: 12px; top: 12px; width: 14px; height: 14px; border-radius: 4px; background: #7c3aed; box-shadow: 0 2px 6px rgba(124, 58, 237, 0.3); }
.features li:after { content: ""; position: absolute; left: 16px; top: 16px; width: 6px; height: 3px; border: 2px solid #fff; border-top: 0; border-right: 0; transform: rotate(-45deg); }

/* Pricing */
.pricing .price-wrap { display: grid; grid-template-columns: 1fr; gap: 10px; align-items: start; }
.price-copy { background: #ffffff; border: 2px solid #7c3aed; border-radius: 16px; padding: 14px; box-shadow: 0 10px 24px rgba(124, 58, 237, 0.18); color: var(--text); }
.price-header { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 6px; }
.price-badge { background: #7c3aed; color: #fff; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.price-amount { font-size: 34px; font-weight: 900; color: #1f2937; margin: 4px 0; }
.price-amount small { font-size: 12px; font-weight: 600; color: var(--muted); }
.installments { background: rgba(124, 58, 237, 0.08); color: #1f2937; border: 1px solid rgba(124, 58, 237, 0.18); padding: 8px 10px; border-radius: 10px; display: inline-block; margin: 6px 0 8px; font-weight: 700; }
.pricing .btn-primary.btn-xl { width: 100%; margin-top: 8px; }
.bullets { margin: 6px 0 10px; padding-left: 18px; text-align: left; }
.guarantee { color: var(--muted); font-size: 14px; }
.card-inclui { background: var(--card); border: 1px solid rgba(124, 58, 237, 0.1); border-radius: 14px; padding: 14px; box-shadow: 0 2px 8px rgba(124, 58, 237, 0.05); }
.card-inclui h3 { margin-top: 0; }
.card-inclui ul { padding-left: 18px; color: var(--muted); text-align: left; }

/* FAQ */
.faq .accordion { display: grid; gap: 10px; }
.faq .item { background: var(--card); border: 1px solid rgba(255, 88, 174, 0.1); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(255, 88, 174, 0.05); }
.faq .question { width: 100%; text-align: left; padding: 14px 16px; background: transparent; color: var(--text); border: none; display:flex; align-items:center; justify-content: space-between; font-weight: 600; cursor: pointer; }
.faq .answer { padding: 0 16px 14px; color: var(--muted); }

/* Footer */
.site-footer { border-top: 1px solid rgba(255, 88, 174, 0.1); margin-top: 16px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 14px 0; }
.foot-brand { margin-bottom: 8px; }
.links { display: grid; gap: 8px; }
.links a { color: var(--muted); text-decoration: none; }
.links a:hover { color: var(--text); }
.copyright { border-top: 1px solid rgba(255, 88, 174, 0.1); padding: 10px 0; color: var(--muted); font-size: 14px; }

/* Responsive */
/* Mobile-only: não há breakpoints maiores; tudo já está em 1 coluna */

