:root {
  --bg: #070807;
  --bg-2: #0d120e;
  --bg-card: #121812;
  --ink: #f4f7f0;
  --muted: #a8b4a0;
  --line: rgba(142, 211, 50, 0.16);
  --lime: #8ed322;
  --lime-2: #b6f04a;
  --lime-dark: #1f3d12;
  --forest: #163016;
  --orange: #f0a020;
  --orange-2: #ffc45a;
  --char: #2f332f;
  --whatsapp: #25d366;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fredoka", "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(142, 211, 50, 0.16), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(240, 160, 32, 0.12), transparent 50%),
    var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 80;
  background: var(--lime);
  color: #111;
  padding: 8px 12px;
  border-radius: 10px;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 7, 0.78);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  flex-wrap: nowrap;
}

.brand { flex: 0 0 auto; }
.brand img { height: 36px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav a:hover { color: var(--lime-2); }
.nav a.nav-extra { display: none; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.nav-actions .btn {
  white-space: nowrap;
  padding: 10px 16px;
}

.lang {
  display: flex;
  background: #101510;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.78rem;
}
.lang button.is-on {
  background: var(--lime);
  color: #13200a;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #101510;
  color: var(--ink);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lime {
  background: linear-gradient(180deg, var(--lime-2), var(--lime));
  color: #13200a;
  box-shadow: 0 10px 30px rgba(142, 211, 50, 0.28);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-orange {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #2a1a00;
}

.hero {
  padding: 56px 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

h1, h2, h3 { font-family: var(--display); margin: 0; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); line-height: 1.02; margin: 14px 0 16px; }
h1 em { font-style: normal; color: var(--lime); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 52ch; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.stat {
  background: rgba(18, 24, 18, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
}
.stat b { display: block; font-size: 1.35rem; color: var(--lime-2); }
.stat span { color: var(--muted); font-size: 0.82rem; }

.stage {
  position: relative;
  min-height: 520px;
}
.blob {
  position: absolute;
  inset: 40px 20px auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(142,211,50,.35), transparent 68%);
  filter: blur(8px);
  animation: float 6s ease-in-out infinite;
}
.mascot {
  position: absolute;
  width: 210px;
  right: -6px;
  top: 18px;
  z-index: 2;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.5));
  animation: float 5.2s ease-in-out infinite;
}
.phone {
  position: relative;
  z-index: 3;
  width: min(340px, 100%);
  background: #0b120c;
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #152016;
  border-bottom: 1px solid var(--line);
}
.phone-bar img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: #000; }
.phone-bar strong { display: block; font-size: 0.92rem; }
.phone-bar small { color: var(--whatsapp); font-size: 0.74rem; }
.chat {
  padding: 16px;
  min-height: 340px;
  background:
    radial-gradient(circle at 20% 0%, rgba(142,211,50,.08), transparent 40%),
    #0a100b;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bubble {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.92rem;
  animation: pop .35s ease;
}
.bubble.in { background: #1b2a1c; border-bottom-left-radius: 6px; }
.bubble.out {
  margin-left: auto;
  background: linear-gradient(180deg, #9ae03a, #78c21a);
  color: #13200a;
  border-bottom-right-radius: 6px;
  font-weight: 600;
}
.wa-thread { min-height: 380px; }
.wa-day {
  margin: 0 auto 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.wa-promo {
  max-width: 100%;
  font-weight: 500;
  padding: 0 0 10px;
  overflow: hidden;
}
.wa-media {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
  margin-bottom: 10px;
}
.wa-promo p, .wa-promo .wa-cta, .wa-promo time { padding-left: 12px; padding-right: 12px; }
.wa-promo p { margin: 0 0 8px; }
.wa-head {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px !important;
}
.wa-foot {
  font-size: 0.78rem;
  opacity: 0.75;
}
.wa-cta {
  display: block;
  text-align: center;
  background: #13200a;
  color: var(--lime-2);
  border-radius: 12px;
  padding: 8px 10px;
  margin: 10px 0 8px;
  font-weight: 800;
}
.wa-promo time {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.7;
}
.typing {
  width: 54px;
  display: flex;
  gap: 4px;
  padding: 10px 12px;
}
.typing i {
  width: 7px; height: 7px; border-radius: 50%; background: #8aa087; animation: blink 1s infinite;
}
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0 40px;
  color: #6f7a6c;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.logos span {
  border: 1px dashed var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}

.section { padding: 72px 0; }
.section.alt {
  background: linear-gradient(180deg, rgba(18,24,18,.55), transparent);
  border-block: 1px solid var(--line);
}
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 100%;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); }
.icon {
  width: 46px; height: 46px; border-radius: 16px;
  display: grid; place-items: center;
  background: #1a2a14;
  color: var(--lime);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.steps { counter-reset: step; }
.step { position: relative; padding-left: 8px; }
.step b {
  display: inline-flex;
  width: 32px; height: 32px; border-radius: 50%;
  place-items: center; display: grid;
  background: var(--lime); color: #13200a;
  font-family: var(--display);
  margin-bottom: 12px;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price.featured {
  border-color: rgba(142,211,50,.5);
  box-shadow: 0 0 0 1px rgba(142,211,50,.25), var(--shadow);
  transform: translateY(-6px);
}
.price .tag { color: var(--orange); font-weight: 800; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.price .amount { font-size: 2.2rem; font-family: var(--display); }
.price .amount span { font-size: 1rem; color: var(--muted); }
.price ul { margin: 8px 0 16px; padding: 0; list-style: none; color: var(--muted); }
.price li { padding: 7px 0 7px 22px; position: relative; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); }

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 18px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin: 10px 0 4px; }

.cta-band {
  background:
    radial-gradient(500px 180px at 20% 0%, rgba(240,160,32,.25), transparent),
    linear-gradient(180deg, #152016, #0e160f);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

form.contact {
  display: grid;
  gap: 12px;
}
form.contact input, form.contact textarea, form.contact select {
  width: 100%;
  background: #0b120c;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 16px;
  padding: 12px 14px;
}
form.contact textarea { min-height: 120px; resize: vertical; }
.form-ok { display: none; color: var(--lime-2); font-weight: 700; }
.form-ok.show { display: block; }

footer {
  padding: 36px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.foot nav { display: flex; gap: 16px; }

.legal { padding: 48px 0 80px; }
.legal h1 { font-size: 2.4rem; margin-bottom: 12px; }
.legal p, .legal li { color: var(--muted); }

.fine { color: var(--muted); font-size: 0.88rem; max-width: 62ch; margin-top: 18px; }
.ex { color: var(--orange); font-weight: 700; }
.campaign {
  position: relative;
  z-index: 3;
  width: min(380px, 100%);
  background: #0b120c;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.campaign-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #152016;
  border-bottom: 1px solid var(--line);
}
.campaign-bar em {
  color: var(--orange);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.campaign-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 16px 18px 8px;
}
.campaign-meta div { display: grid; gap: 2px; }
.campaign-meta dt { color: var(--muted); font-size: 0.75rem; }
.campaign-meta dd { margin: 0; font-weight: 700; }
.campaign-label { padding: 0 18px; color: var(--muted); font-size: 0.82rem; }
.bars { list-style: none; margin: 0; padding: 0 18px 18px; }
.bars li { margin: 10px 0; color: var(--muted); font-size: 0.82rem; }
.bars i {
  display: block;
  height: 8px;
  margin-top: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--lime), var(--orange));
  width: var(--w);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 48px 0 72px;
  align-items: start;
}
.side-panel h2 { margin-bottom: 12px; }
.ticks { margin: 0 0 16px; padding: 0; list-style: none; color: var(--muted); }
.ticks li { padding: 7px 0 7px 22px; position: relative; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); }
.check { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 0.92rem; }
.check input { margin-top: 4px; }
.pass-row { display: flex; gap: 8px; }
.pass-row input { flex: 1; }
.form-errors { color: #ffb4a8; }
.form-errors li { margin: 4px 0; }
label { font-weight: 700; font-size: 0.88rem; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  padding-bottom: 12px;
}
.foot-grid nav { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.foot-tag { color: var(--ink); font-weight: 700; }
.legal-note { font-size: 0.82rem; padding-bottom: 28px; }
.form-ok { color: var(--lime-2); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pop { from { transform: translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }

@media (max-width: 1080px) {
  .hero, .cta-band, .grid-3, .grid-4, .grid-2, .split, .foot-grid { grid-template-columns: 1fr; }
  .price.featured { transform: none; }
  .mascot { width: 120px; right: 8px; top: -28px; }
  .stage { min-height: auto; padding-top: 36px; }
  .phone, .campaign { margin: 0 auto; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #0b120c;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
    align-items: flex-start;
    gap: 14px;
    z-index: 45;
  }
  .nav.open a.nav-extra { display: inline; }
  .menu-btn { display: grid; place-items: center; }
}
@media (max-width: 640px) {
  .nav-actions .btn-ghost { display: none; }
}
