/* ===== Tokens ===== */
:root {
  --sky: #6EC6E8;
  --sky-dark: #2F97C4;
  --sun: #FFC93C;
  --sun-dark: #F2A93C;
  --leaf: #8BC34A;
  --leaf-dark: #6FA134;
  --cream: #FFF8E7;
  --cream-deep: #FCEFC7;
  --orange: #F2994A;
  --orange-dark: #DD7A2A;
  --ink: #2B2118;
  --ink-soft: #5B4C3C;
  --white: #FFFFFF;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 14px 30px -12px rgba(43, 33, 24, 0.25);
  --shadow-sm: 0 6px 16px -8px rgba(43, 33, 24, 0.25);
  --wa: #25D366;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
}

p { line-height: 1.6; margin: 0; }

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}

section { position: relative; padding: 78px 0; overflow: hidden; }

/* ===== Icon system ===== */
.icon {
  width: 1em; height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon--solid { fill: currentColor; stroke: none; }

.icon-badge {
  width: 60px; height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
}
.icon-badge svg { width: 30px; height: 30px; }
.icon-badge.tone-sky { background: var(--sky); color: var(--white); }
.icon-badge.tone-sun { background: var(--sun); color: var(--ink); }
.icon-badge.tone-leaf { background: var(--leaf); color: var(--white); }
.icon-badge.tone-orange { background: var(--orange); color: var(--white); }
.icon-badge.tone-cream { background: var(--white); color: var(--orange-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--white);
  border: 2px solid var(--orange);
  padding: 7px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.eyebrow svg { width: 14px; height: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 18px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 0 0 #1AA553, var(--shadow);
}
.btn svg { width: 20px; height: 20px; }

.btn--wa { background: var(--wa); color: var(--white); }
.btn--wa:hover { transform: translateY(-3px); }
.btn--wa:active { transform: translateY(2px); box-shadow: 0 4px 0 0 #1AA553; }

.micro-trust {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.micro-trust svg { width: 16px; height: 16px; color: var(--orange-dark); }

/* ===== Decorative floats ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}
.floaty { animation: float 6s ease-in-out infinite; }
.floaty.delay-1 { animation-delay: 0.8s; }
.floaty.delay-2 { animation-delay: 1.6s; }

.sparkle {
  position: absolute;
  color: var(--sun-dark);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}
.sparkle svg { width: 100%; height: 100%; }

/* ===== Wave dividers ===== */
.wave { position: absolute; left: 0; width: 100%; height: 54px; display: block; z-index: 1; }
.wave--top { top: -1px; transform: scaleY(-1); }
.wave--bottom { bottom: -1px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--cream-deep);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img { height: 46px; width: auto; display: block; }
.site-header .btn { padding: 12px 20px; font-size: 0.92rem; box-shadow: 0 6px 0 0 #1AA553; }

/* ===== Hero ===== */
.hero { padding-top: 56px; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 16px 0; color: var(--ink); position: relative; z-index: 2; }
.hero h1 .hl { color: var(--sky-dark); }
.hero-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; position: relative; z-index: 2; }
.hero-price {
  margin: 26px 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative; z-index: 2;
}
.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sun);
  color: var(--ink);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
}
.launch-pill svg { width: 15px; height: 15px; }

.price-tag {
  background: var(--white);
  border: 3px dashed var(--orange);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
}
.price-tag .from { font-size: 0.85rem; text-decoration: line-through; color: var(--ink-soft); opacity: 0.7; }
.price-tag .to { font-family: 'Baloo 2', sans-serif; font-size: 2rem; font-weight: 800; color: var(--orange-dark); }
.hero > .wrap > .reveal { position: relative; z-index: 2; }
.hero-art { position: relative; z-index: 1; }
.hero-art .art-slot--cover { max-width: 340px; margin: 0 auto; transform: rotate(-3deg); position: relative; z-index: 1; }
.hero-deco { position: absolute; inset: -10% -12%; z-index: 0; pointer-events: none; }
.hero-deco img { width: 100%; opacity: 0.9; }

/* ===== Art placeholders ===== */
.art-slot {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.art-slot img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; opacity: 0; transition: opacity .25s ease; }
.art-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  background: repeating-linear-gradient(135deg, var(--cream-deep), var(--cream-deep) 10px, #fff 10px, #fff 20px);
  border: 3px dashed var(--sky-dark);
  border-radius: var(--radius-sm);
  color: var(--sky-dark);
  padding: 18px;
}
.art-placeholder svg { width: 2.2rem; height: 2.2rem; }
.art-placeholder small { font-family: 'Courier New', monospace; font-size: 0.72rem; background: var(--white); padding: 3px 8px; border-radius: 6px; color: var(--ink-soft); }

.art-slot--cover { aspect-ratio: 3 / 4.4; box-shadow: var(--shadow); border-radius: 18px; }
.art-slot--icon {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
/* Some generated badges came with an opaque square background instead of
   transparency — cover + circular crop isolates just the round badge. */
.art-slot--icon img { object-fit: cover; }
.art-slot--icon .art-placeholder { border-radius: 50%; }
.art-slot--icon .art-placeholder svg { width: 1.7rem; height: 1.7rem; }
.art-slot--banner { aspect-ratio: 2.3 / 1; max-width: 520px; margin: 0 auto 28px; }
.art-slot--wide { aspect-ratio: 16/10; }

/* ===== Trust bar ===== */
.trust-bar { background: var(--sky); padding: 56px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative; z-index: 2;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--white); }
.trust-item .art-slot--icon { width: 62px; }
.trust-item .art-placeholder { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.15); }
.trust-item span { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.92rem; }

/* ===== Section heading ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; position: relative; z-index: 2; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { margin-top: 10px; color: var(--ink-soft); font-size: 1.05rem; }

/* ===== Contents grid ===== */
.contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative; z-index: 2;
}
.content-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 3px solid transparent;
  transition: transform 0.2s ease, border-color .2s ease;
}
.content-card:hover { transform: translateY(-4px) rotate(-0.6deg); border-color: var(--sun); }
.content-card h3 { font-size: 1.05rem; margin: 14px 0 6px; }
.content-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Preview ===== */
.preview-wrap { display: grid; grid-template-columns: 1fr; gap: 18px; position: relative; z-index: 2; }
.preview-video {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: block;
}
.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.preview-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.preview-caption { text-align: center; font-weight: 700; color: var(--ink-soft); max-width: 50ch; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 8px; }
.preview-caption svg { width: 18px; height: 18px; color: var(--orange-dark); flex-shrink: 0; }

/* ===== Brindes ===== */
.brindes { background: var(--leaf); border-radius: 40px; margin: 0 22px; }
.brindes .wrap { padding: 56px 22px; }
.brinde-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 10px; position: relative; z-index: 2; }
.brinde-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.brinde-card .art-slot--cover { max-width: 190px; margin: 0 auto 14px; }
.brinde-card h3 { font-size: 1.05rem; }
.brinde-card p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 6px; }
.brinde-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.brinde-tag svg { width: 13px; height: 13px; }
.brindes .section-head h2, .brindes .section-head p { color: var(--white); }

/* ===== Como funciona ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
.step { text-align: center; position: relative; padding-top: 6px; }
.step .num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.faq-q .chev { transition: transform 0.2s ease; color: var(--orange-dark); flex-shrink: 0; width: 18px; height: 18px; }
.faq-item.open .faq-q .chev { transform: rotate(135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 18px; }
.faq-a p { color: var(--ink-soft); font-size: 0.94rem; }

/* ===== CTA final ===== */
.cta-final {
  text-align: center;
  background: var(--white);
  border-radius: 40px;
  margin: 0 22px;
  padding: 60px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.cta-final h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); max-width: 30ch; margin: 0 auto 14px; position: relative; z-index: 2; }
.cta-final > .btn, .cta-final > p { position: relative; z-index: 2; }

/* ===== Footer ===== */
footer { text-align: center; padding: 46px 22px 110px; color: var(--ink-soft); font-size: 0.86rem; }
footer strong { color: var(--ink); }

/* ===== Sticky mobile bar ===== */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--white);
  border-top: 3px solid var(--cream-deep);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .price { font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--orange-dark); font-size: 1.15rem; }
.sticky-bar .btn { padding: 12px 20px; font-size: 0.92rem; box-shadow: 0 5px 0 0 #1AA553; white-space: nowrap; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Confetti ===== */
.confetti-piece {
  position: fixed;
  top: -20px;
  width: 8px; height: 14px;
  z-index: 200;
  pointer-events: none;
  border-radius: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contents-grid { grid-template-columns: repeat(2, 1fr); }
  .brinde-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  section { padding: 56px 0; }
  .brindes { margin: 0 12px; }
  .cta-final { margin: 0 12px; padding: 44px 20px; }
}
@media (max-width: 520px) {
  .contents-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-price { flex-wrap: wrap; }
}
