* {
  box-sizing: border-box;
}
:root {
  --primary:     #25D366;
  --primary-dk:  #128C7E;
  --accent:      #FACC15;
  --bg:          #FFFFFF;
  --bg-sec:      #F8FAFC;
  --text:        #111827;
  --text-sec:    #6B7280;
  --border:      #E5E7EB;
  --success:     #16A34A;
  --danger:      #DC2626;
}

body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--bg); }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar { background: #fff; border-bottom: 1px solid var(--border); }
.navbar-brand { font-weight: 800; font-size: 1.25rem; color: var(--primary-dk) !important; }
.navbar-brand span { color: var(--primary); }
.btn-primary-brand {
  background: var(--primary); border: none; color: #fff; font-weight: 600;
  border-radius: 8px; padding: .45rem 1.1rem;
}
.btn-primary-brand:hover { background: var(--primary-dk); color: #fff; }
.btn-outline-brand {
  border: 2px solid var(--primary); color: var(--primary-dk); font-weight: 600;
  border-radius: 8px; padding: .4rem 1.1rem; background: transparent;
}
.btn-outline-brand:hover { background: var(--primary); color: #fff; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  color: #fff; padding: 80px 0 60px;
}
.hero-badge {
  display: inline-block; background: var(--accent); color: var(--text);
  font-weight: 700; font-size: .85rem; padding: .3rem .9rem;
  border-radius: 999px; margin-bottom: 1.2rem; letter-spacing: .5px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; }
.hero p  { font-size: 1.15rem; opacity: .92; max-width: 520px; }
.hero-checks { font-size: .92rem; opacity: .88; }
.hero-checks i { color: var(--accent); }

.btn-hero-primary {
  background: var(--accent); color: var(--text); font-weight: 800;
  font-size: 1.05rem; border: none; border-radius: 10px;
  padding: .75rem 2rem; transition: all .2s;
}
.btn-hero-primary:hover { background: #f0b800; color: var(--text); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

.btn-hero-secondary {
  background: rgba(255,255,255,.18); color: #fff; font-weight: 600;
  font-size: 1rem; border: 2px solid rgba(255,255,255,.5); border-radius: 10px;
  padding: .7rem 1.8rem; transition: all .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.28); color: #fff; }

/* hero mock card */
.hero-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  color: var(--text); box-shadow: 0 20px 60px rgba(0,0,0,.25);
  max-width: 340px;
}
.hero-card .team-badge {
  background: var(--bg-sec); border-radius: 8px; padding: .5rem .8rem;
  font-weight: 700; font-size: .95rem; text-align: center; flex: 1;
}
.hero-card .vs { font-weight: 900; color: var(--text-sec); font-size: 1.1rem; }
.hero-card .stat-pill {
  background: var(--bg-sec); border-radius: 8px; padding: .4rem .9rem;
  font-size: .82rem; color: var(--text-sec);
}
.hero-card .stat-pill strong { color: var(--primary-dk); }

/* ── PALPITE ROW ────────────────────────────────────── */
.palpite-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .45rem 0; border-bottom: 1px solid var(--border); font-size: .88rem;
}
.palpite-row:last-child { border-bottom: none; }
.badge-pago   { background: #dcfce7; color: var(--success); font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; }
.badge-pend   { background: #fee2e2; color: var(--danger);  font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; }

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.stat-item { text-align: center; }
.stat-item .number { font-size: 1.8rem; font-weight: 900; color: var(--primary-dk); line-height: 1; }
.stat-item .label  { font-size: .83rem; color: var(--text-sec); margin-top: .2rem; }

/* ── COMO FUNCIONA ──────────────────────────────────── */
.how-section { background: var(--bg-sec); padding: 80px 0; }
.step-card {
  background: #fff; border-radius: 16px; padding: 2rem 1.5rem;
  border: 1px solid var(--border); text-align: center; height: 100%;
  transition: box-shadow .2s;
}
.step-card:hover { box-shadow: 0 8px 32px rgba(37,211,102,.15); }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.step-card h5 { font-weight: 800; font-size: 1.1rem; margin-bottom: .5rem; }
.step-card p  { color: var(--text-sec); font-size: .93rem; margin: 0; }
.step-icon { font-size: 2rem; margin-bottom: .75rem; }

/* ── BENEFITS ───────────────────────────────────────── */
.benefits-section { padding: 80px 0; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 10px; background: #dcfce7;
  color: var(--primary-dk); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.benefit-item h6 { font-weight: 700; margin-bottom: .2rem; }
.benefit-item p  { color: var(--text-sec); font-size: .9rem; margin: 0; }

/* phone mockup */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-frame {
  background: var(--bg-sec); border: 2px solid var(--border);
  border-radius: 20px; padding: 1.5rem; max-width: 320px; width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.phone-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; font-size: .88rem; }
.phone-row .label { color: var(--text-sec); }
.phone-row .val   { font-weight: 700; }
.countdown-box {
  background: var(--primary-dk); color: #fff; border-radius: 10px;
  text-align: center; padding: .8rem; margin: .8rem 0;
}
.countdown-box .time { font-size: 1.6rem; font-weight: 900; letter-spacing: 2px; }
.countdown-box .lbl  { font-size: .72rem; opacity: .8; margin-top: .1rem; }
.total-box {
  background: #dcfce7; border-radius: 10px; text-align: center; padding: .8rem;
  margin-bottom: .8rem;
}
.total-box .val { font-size: 1.6rem; font-weight: 900; color: var(--success); }
.total-box .lbl { font-size: .75rem; color: var(--success); }

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section { background: var(--bg-sec); padding: 80px 0; }
.testi-card {
  background: #fff; border-radius: 16px; padding: 1.75rem;
  border: 1px solid var(--border); height: 100%;
}
.testi-card .stars { color: var(--accent); font-size: .9rem; margin-bottom: .75rem; }
.testi-card p { color: var(--text); font-size: .95rem; font-style: italic; margin-bottom: 1rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-role { color: var(--text-sec); font-size: .8rem; }

/* ── CTA FINAL ──────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  color: #fff; padding: 80px 0; text-align: center;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; }
.cta-section p  { font-size: 1.1rem; opacity: .9; }

/* ── FOOTER ─────────────────────────────────────────── */
footer { background: var(--text); color: rgba(255,255,255,.7); padding: 2rem 0; font-size: .88rem; }
footer .brand { color: var(--primary); font-weight: 800; font-size: 1rem; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; }
footer a:hover { color: var(--primary); }

/* ── UTILS ──────────────────────────────────────────── */
.section-tag {
  display: inline-block; background: #dcfce7; color: var(--primary-dk);
  font-size: .8rem; font-weight: 700; padding: .3rem .9rem;
  border-radius: 999px; margin-bottom: 1rem; letter-spacing: .5px; text-transform: uppercase;
}
.section-title { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 900; }

/* ── HERO CODE ENTRY ─────────────────────────────────── */
.hero-code-entry { margin-top: 1.5rem; }

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.code-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
}

.code-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  font-family: monospace;
  letter-spacing: 1px;
  transition: border-color 0.2s, background 0.2s;
}
.code-input::placeholder { color: rgba(255, 255, 255, 0.38); font-family: inherit; letter-spacing: 0; }
.code-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.btn-code-submit {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-code-submit:hover {
  background: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 576px) {
  .code-form { max-width: 100%; }
}
