/* ============================================================
   1. TOKENS / PALETA
   ============================================================ */
:root {
  --brand: #e25cd3;          /* magenta principal */
  --brand-dark: #c33fb4;
  --turquoise: #5ce1e6;      /* detalhes */
  --lilac: #e7bef8;          /* fundos suaves */
  --cloud: #f0f0f0;          /* secoes alternadas */
  --white: #ffffff;
  --ink: #232026;            /* texto principal */
  --ink-soft: #5f5a63;       /* texto secundario */
  --line: #e6e2e8;
  --radius: 20px;
  --shadow-sm: 0 2px 10px rgba(35, 32, 38, 0.06);
  --shadow-md: 0 10px 30px rgba(226, 92, 211, 0.12);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* ============================================================
   2. BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
button { font-family: inherit; }

:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 3px; border-radius: 8px; }

.container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 56px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 84px 0; } }

.bg-cloud { background: var(--cloud); }

.text-center { text-align: center; }
.text-brand { color: var(--brand); }
.font-display { font-family: var(--font-display); }

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--ink);
}
@media (min-width: 768px) { .section-title { font-size: 2.35rem; } }

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--lilac);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  margin: 12px auto 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ============================================================
   3. BOTAO CTA
   ============================================================ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.cta-button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.cta-button:active { transform: translateY(0); }
.cta-wrap { margin-top: 36px; text-align: center; }
@media (max-width: 639px) { .cta-button { width: 100%; } }
@media (min-width: 640px) { .cta-button { min-width: 320px; } }

/* ============================================================
   4. HERO
   ============================================================ */
.hero-section {
  padding-bottom: 110px;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(231, 190, 248, 0.55) 0%, rgba(255, 255, 255, 0) 70%),
    var(--white);
}
.hero-title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.4rem; } }

.hero-sub {
  margin: 20px auto 0;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.25rem; } }
.hero-sub strong { color: var(--brand); font-weight: 600; }

.hero-image-wrap { margin: 32px auto 0; max-width: 560px; }
.hero-image-wrap img { width: 100%; object-fit: contain; }

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 90px;
  display: block;
}

/* ============================================================
   5. PROBLEMA
   ============================================================ */
.grid-2 { display: grid; gap: 12px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.thought-chip {
  height: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 1rem;
  font-style: italic;
}

.solution-card {
  margin-top: 40px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(231, 190, 248, 0.5), rgba(92, 225, 230, 0.18));
  border: 1px solid rgba(226, 92, 211, 0.18);
  text-align: center;
}
.solution-card h3 { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3; }
@media (min-width: 640px) { .solution-card h3 { font-size: 1.85rem; } }
.solution-card .strong { margin-top: 16px; font-size: 1.1rem; font-weight: 600; }
.solution-card .soft { margin-top: 8px; color: var(--ink-soft); }

/* ============================================================
   6. CARDS / ICONES
   ============================================================ */
.feature-card, .bonus-card, .receive-card, .trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  height: 100%;
}
.feature-card h3 { margin-top: 16px; font-size: 1.1rem; font-weight: 600; }
.feature-card p { margin-top: 8px; color: var(--ink-soft); font-size: 0.975rem; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(92, 225, 230, 0.22);
  color: var(--brand);
  font-size: 20px;
  flex: none;
}
.icon-badge-solid { background: var(--brand); color: #fff; }

/* O que voce vai receber */
.receive-card { display: flex; align-items: center; gap: 14px; }
.receive-card p { font-size: 0.975rem; }
.receive-card-featured {
  background: linear-gradient(135deg, rgba(226, 92, 211, 0.10), rgba(92, 225, 230, 0.12));
  border-color: rgba(226, 92, 211, 0.28);
}
.receive-card-featured p { font-size: 1.05rem; font-weight: 600; }
@media (min-width: 640px) { .receive-featured { grid-column: 1 / -1; } }

/* Bonus */
.bonus-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(92, 225, 230, 0.28);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bonus-card h3 { margin-top: 16px; font-family: var(--font-display); font-size: 1.25rem; }
.bonus-card p { margin-top: 8px; color: var(--ink-soft); font-size: 0.975rem; word-break: break-word; }
.grid-3 { display: grid; gap: 16px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   7. CARROSSEL DE NICHOS
   ============================================================ */
.carousel { position: relative; margin-top: 32px; }
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 62%;
  scroll-snap-align: center;
  text-align: center;
}
@media (min-width: 640px) { .carousel-slide { flex-basis: 34%; } }
@media (min-width: 1024px) { .carousel-slide { flex-basis: 25%; } }
.carousel-slide img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 16px;
}
.carousel-name {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.carousel-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(92, 225, 230, 0.6);
  background: #fff;
  color: var(--brand);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-btn:hover { background: rgba(92, 225, 230, 0.16); transform: translateY(-1px); }

/* ============================================================
   8. NICHOS E TEMAS (painel degrade)
   ============================================================ */
.niches-panel {
  margin-top: 32px;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #f6e9fd 0%, #e7bef8 55%, #f4d7fb 100%);
  border: 1px solid rgba(226, 92, 211, 0.18);
}
.niches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--ink);
}
@media (min-width: 640px) { .niche-item { font-size: 0.975rem; } }
.niche-dot {
  margin-top: 7px;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--brand);
  flex: none;
}
.niches-more { margin-top: 20px; text-align: center; font-weight: 600; color: var(--brand); }

/* ============================================================
   9. GALERIA
   ============================================================ */
.gallery-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .gallery-grid { gap: 20px; } }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 16px;
  background: var(--white);
}

/* ============================================================
   10. OFERTA
   ============================================================ */
.offer-intro {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 640px) { .offer-intro { font-size: 2.25rem; } }

.offer-card {
  padding: 32px 24px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--turquoise);
  box-shadow: 0 16px 40px rgba(226, 92, 211, 0.14);
  text-align: center;
}
.offer-old { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.offer-kicker { margin-top: 16px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); }
.offer-price { margin-top: 8px; font-family: var(--font-display); font-size: 3.5rem; line-height: 1; color: var(--brand); }
@media (min-width: 640px) { .offer-price { font-size: 4.25rem; } }
.offer-installments { margin-top: 12px; font-size: 1.1rem; font-weight: 600; }
.perks { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.perk-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(92, 225, 230, 0.2);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}
.offer-secure { margin-top: 24px; font-size: 0.875rem; color: var(--ink-soft); }

/* ============================================================
   11. FAQ
   ============================================================ */
.faq-list { margin-top: 32px; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-icon {
  flex: none;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(92, 225, 230, 0.28);
  color: var(--brand);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.28s ease; }
.faq-panel-open { grid-template-rows: 1fr; }
.faq-panel > div { overflow: hidden; }
.faq-panel-inner { padding: 0 20px 18px; color: var(--ink-soft); font-size: 0.975rem; }

/* ============================================================
   12. CTA FINAL / SEGURANCA / RODAPE
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, rgba(231, 190, 248, 0.45), rgba(92, 225, 230, 0.18));
}
.final-cta h2 { font-family: var(--font-display); font-size: 1.9rem; line-height: 1.2; }
@media (min-width: 640px) { .final-cta h2 { font-size: 2.4rem; } }
.final-cta p { margin: 16px auto 0; max-width: 36rem; color: var(--ink-soft); }

.trust-grid { display: grid; gap: 12px; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; font-size: 0.9rem; font-weight: 600; }
.trust-card .ico { color: var(--turquoise); font-size: 18px; }
.payment-list { margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.payment-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: 0.85rem; color: var(--ink-soft);
}

.site-footer { padding: 40px 0 48px; background: var(--white); border-top: 1px solid var(--line); }
.footer-link { color: var(--brand); text-decoration: none; font-weight: 600; }
.footer-link:hover { text-decoration: underline; }
.footer-nav { margin-top: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; font-size: 0.875rem; }
.footer-copy { margin-top: 24px; font-size: 0.75rem; color: var(--ink-soft); }

/* ============================================================
   13. PAGINAS INTERNAS (politica / termos)
   ============================================================ */
.legal-page { padding: 56px 0 72px; }
.legal-page h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 8px; }
.legal-page h2 { font-family: var(--font-display); font-size: 1.35rem; margin: 28px 0 8px; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: 10px; }
.legal-page ul { list-style: disc; padding-left: 20px; }
.legal-notice {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(92, 225, 230, 0.18);
  border: 1px solid rgba(92, 225, 230, 0.5);
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ============================================================
   14. ANIMACOES DE ENTRADA
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ------------------------------------------------------------------
 * ATUALIZACOES: faixa de topo, hero com preco, marquee do carrossel
 * ------------------------------------------------------------------ */

/* Faixa de topo */
.top-banner {
	width: 100%;
	background: linear-gradient(90deg, #E25CD3 0%, #ec6fdc 50%, #E25CD3 100%);
	padding: 10px 16px;
}
@media (min-width: 640px) { .top-banner { padding: 12px 16px; } }
.top-banner p {
	margin: 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.78rem;
	line-height: 1.25;
	letter-spacing: 0.02em;
}
@media (min-width: 640px) { .top-banner p { font-size: 0.9rem; } }
@media (min-width: 768px) { .top-banner p { font-size: 1rem; } }

/* Hero: imagem maior + preco em texto (sem cara de botao) */
.hero-image-wrap { margin: 24px auto 0; width: 92vw; max-width: 720px; }
@media (min-width: 768px) { .hero-image-wrap { width: 100%; max-width: 760px; } }

.hero-offer { margin-top: 20px; }
.hero-access { margin: 0; font-size: 1.0625rem; font-weight: 600; color: var(--ink); }
@media (min-width: 768px) { .hero-access { font-size: 1.125rem; } }
.hero-price { margin: 2px 0 0; font-size: 0.9375rem; color: var(--ink-soft); }
.hero-price-value {
	font-family: "DM Serif Display", Georgia, serif;
	color: var(--brand);
	font-size: 2.35rem;
	line-height: 1;
	display: inline-block;
	vertical-align: baseline;
	margin-left: 4px;
}
@media (min-width: 768px) { .hero-price-value { font-size: 2.75rem; } }

.secure-note {
	display: flex; align-items: center; justify-content: center; gap: 6px;
	margin: 12px 0 0; font-size: 0.875rem; color: var(--ink-soft);
}
.secure-note svg { color: #5CE1E6; width: 1em; height: 1em; }

.bonus-closing {
	font-family: "DM Serif Display", Georgia, serif;
	font-size: 1.35rem; color: var(--ink); margin: 0 0 16px;
}
@media (min-width: 640px) { .bonus-closing { font-size: 1.6rem; } }

/* Carrossel em marquee automatico (sem setas) */
.carousel-track { scroll-snap-type: none; cursor: grab; }
.carousel-nav { display: none; }
/* Correção da faixa de topo no celular */
@media (max-width: 768px) {

  .top-banner {
    width: 100% !important;
    background: #e45bd6 !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 14px 16px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .top-banner p {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
}