:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #18181a;
  --surface-2: #202024;
  --border: #2a2a2e;
  --text: #f5f5f5;
  --muted: #8a8a90;
  --primary: #a8e60c;
  --primary-2: #c4f23d;
  --primary-dark: #7fb000;
  --accent: #a8e60c;
  --danger: #ff4757;
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* HERO */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(168,230,12,0.15), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(168,230,12,0.06), transparent 60%),
    var(--bg);
  padding-bottom: 80px;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; max-width: 1140px; margin: 0 auto;
}
.logo {
  font-weight: 800; font-size: 1.6rem; letter-spacing: -0.5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-wrap {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  text-decoration: none; line-height: 1;
}
.logo-tag {
  color: var(--primary); font-size: 0.55rem; font-weight: 700;
  letter-spacing: 2.5px; margin-top: 2px;
}
.lang-switch {
  display: flex; gap: 2px; padding: 4px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
}
.lang-switch a {
  font-size: 0.72rem; font-weight: 700; padding: 4px 8px; border-radius: 5px;
  color: var(--muted); transition: all .15s;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.on { background: var(--primary); color: #0a0a0a; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a:not(.btn):not(.lang-switch a) { color: var(--muted); font-size: 0.95rem; transition: color .2s; }
.nav-links a:not(.btn):hover { color: var(--text); }

.hero-content {
  max-width: 1140px; margin: 0 auto; padding: 60px 24px 0;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.badge {
  display: inline-block; padding: 6px 14px; border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.8rem; color: var(--muted);
  background: rgba(255,255,255,0.02); margin-bottom: 20px;
}
.hero-text h1 {
  font-size: 3.2rem; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.grad {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { color: var(--muted); font-size: 1.15rem; margin-bottom: 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 1.8rem; background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 800;
}
.hero-stats span { color: var(--muted); font-size: 0.85rem; }

/* phone mock */
.hero-visual { display: flex; justify-content: center; }
.phone-mock {
  width: 280px; height: 560px; background: #000; border-radius: 36px;
  border: 8px solid #1a1a1c; padding: 16px; position: relative;
  box-shadow: 0 30px 80px rgba(168,230,12,0.20), 0 0 0 1px var(--border);
}
.phone-mock::before {
  content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #000; border-radius: 100px;
}
.phone-screen {
  height: 100%; background: linear-gradient(160deg, #1a1a1c, #0a0a0a);
  border-radius: 24px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px; padding: 40px 20px;
}
.screen-logo {
  font-weight: 800; font-size: 1.4rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.big-button {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.5rem; color: #0a0a0a;
  box-shadow: 0 20px 50px rgba(168,230,12,0.45);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 20px 50px rgba(168,230,12,0.45); }
  50% { transform: scale(1.04); box-shadow: 0 25px 60px rgba(168,230,12,0.65); }
}
.screen-hint { color: var(--muted); font-size: 0.85rem; text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: 1px solid transparent;
  transition: all .2s; font-family: inherit;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0a0a0a; box-shadow: 0 8px 24px rgba(168,230,12,0.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(168,230,12,0.45); }
.btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { color: var(--muted); background: transparent; }
.btn-ghost:hover { color: var(--text); }

/* SECTIONS */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-2); }
.section-title {
  font-size: 2.4rem; font-weight: 800; text-align: center; letter-spacing: -1px;
  margin-bottom: 14px;
}
.section-sub {
  text-align: center; color: var(--muted); font-size: 1.1rem;
  max-width: 640px; margin: 0 auto 56px;
}

/* GRID CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all .25s;
}
.card:hover { border-color: var(--primary); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(168,230,12,0.15), rgba(168,230,12,0.04));
  border: 1px solid rgba(168,230,12,0.30);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--primary); font-size: 0.85rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; position: relative;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0a0a0a; display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* PLANS */
.plan {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; display: flex;
  flex-direction: column; gap: 20px; position: relative;
}
.plan h3 { font-size: 1.4rem; }
.price {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -1px;
}
.price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan li {
  color: var(--muted); font-size: 0.95rem; padding-left: 24px; position: relative;
}
.plan li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.plan-featured {
  border-color: var(--primary); transform: scale(1.05);
  background: linear-gradient(160deg, var(--surface), rgba(168,230,12,0.05));
  box-shadow: 0 20px 60px rgba(168,230,12,0.12);
}
.plan-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0a0a0a; font-size: 0.72rem; padding: 4px 14px; border-radius: 100px;
  font-weight: 700; letter-spacing: 0.5px;
}
.plan .btn { margin-top: auto; }

/* FORM */
.form-lead {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); padding: 11px 14px; border-radius: 8px;
  font-size: 0.95rem; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); }
.field textarea { resize: vertical; min-height: 80px; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-msg { display: none; padding: 12px 14px; border-radius: 8px; font-size: 0.9rem; }
.form-msg.ok { display: block; background: rgba(77,212,172,0.12); border: 1px solid var(--accent); color: var(--accent); }
.form-msg.err { display: block; background: rgba(255,71,87,0.12); border: 1px solid var(--danger); color: var(--danger); }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }

/* TESTIMONIALS */
.testimonials { gap: 20px; }
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; display: flex;
  flex-direction: column; gap: 16px; transition: all .25s;
}
.testimonial:hover { border-color: var(--primary); transform: translateY(-4px); }
.testimonial .stars { color: var(--primary); font-size: 1rem; letter-spacing: 2px; }
.testimonial p { color: var(--text); font-size: 1rem; font-style: italic; line-height: 1.6; flex: 1; }
.testimonial footer {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.testimonial footer strong { color: var(--text); font-size: 0.95rem; font-weight: 600; }
.testimonial footer span { color: var(--muted); font-size: 0.82rem; }

/* PLANS LINK */
.plans-link {
  text-align: center; color: var(--muted); margin-top: 32px; font-size: 0.95rem;
}
.plans-link a { color: var(--primary); font-weight: 600; }
.plans-link a:hover { text-decoration: underline; }

/* MAPA */
.map-box {
  height: 420px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.map-box .leaflet-container { background: var(--bg-2); }

/* MIDIA */
.media-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px; margin-top: 16px;
}
.media-pill {
  padding: 10px 20px; border: 1px solid var(--border); border-radius: 100px;
  background: var(--surface); color: var(--muted); font-weight: 600;
  font-size: 0.95rem; transition: all .2s;
}
.media-pill:hover { border-color: var(--primary); color: var(--primary); }

/* APP MOBILE */
.app-mobile {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.app-text .section-title.left { text-align: left; margin-bottom: 16px; }
.app-text .hero-sub { margin-bottom: 28px; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform .2s, box-shadow .2s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* FOOTER */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4,
.footer-grid .footer-h { font-size: 0.9rem; margin-bottom: 14px; color: var(--text); font-weight: 600; }
.footer-grid a { display: block; color: var(--muted); font-size: 0.9rem; padding: 4px 0; }
.footer-grid a:hover { color: var(--primary); }
.footer-grid p { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
.footer-base {
  text-align: center; color: var(--muted); font-size: 0.82rem;
  padding-top: 24px; border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .hero-content { grid-template-columns: 1fr; padding: 40px 24px 0; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-visual { order: -1; }
  .phone-mock { width: 220px; height: 440px; }
  .big-button { width: 140px; height: 140px; font-size: 1.2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .section { padding: 70px 0; }
  .section-title { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .app-mobile { grid-template-columns: 1fr; }
  .app-text .section-title.left { text-align: center; }
  .map-box { height: 320px; }
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}
@media (max-width: 500px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
