/* ============== TRIPALERT LANDING — STYLES ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #1B8C3A;
  --green-d: #146B2B;
  --green2:  #E8F5E9;
  --amber:   #E67E00;
  --red:     #D32F2F;
  --blue:    #1565C0;
  --dark:    #0B0B0B;
  --card:    #161616;
  --card2:   #1E1E1E;
  --line:    #232323;
  --text:    #EEEEEE;
  --muted:   #8A8A8A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; display: block; }

section { padding: 56px 24px; max-width: 720px; margin: 0 auto; }
h2 {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: -.01em;
}
h2 + .h2-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ─── HEADER NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.site-logo {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.site-logo span { color: var(--green); }
.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.site-nav-links a {
  font-size: 14px;
  color: #BBB;
  font-weight: 500;
  transition: color .15s;
}
.site-nav-links a:hover { color: #fff; }
.site-nav-links a.active { color: #fff; font-weight: 600; }
.site-nav-cta { padding: 9px 18px !important; font-size: 14px !important; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(11,11,11,.98);
  border-bottom: 1px solid var(--line);
  padding: 8px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: #DDD;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; padding-top: 18px; }
.mobile-menu a.active { color: var(--green); font-weight: 700; }
.mobile-menu .btn { display: block; text-align: center; margin-top: 16px; }

@media (max-width: 1024px) {
  .site-nav-links { display: none; }
  .btn.site-nav-cta { display: none; }
  .hamburger { display: flex; }
  .site-header-inner { grid-template-columns: auto auto; justify-content: space-between; }
}

/* ─── BANDA PROMO ─── */
.promo-bar {
  background: linear-gradient(90deg, #1B8C3A 0%, #146B2B 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.promo-bar strong { font-weight: 800; }
.promo-bar .pill {
  display: inline-block;
  background: rgba(0,0,0,.25);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  margin-left: 6px;
  font-weight: 700;
}
.promo-bar a { text-decoration: underline; margin-left: 6px; }

/* ─── BOTONES ─── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s, opacity .15s, box-shadow .15s;
  border: none;
  font-family: inherit;
}
.btn:hover { opacity: .92; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(27,140,58,.35); }
.btn-green:hover { background: var(--green-d); }
.btn-amber { background: var(--amber); color: #fff; box-shadow: 0 4px 16px rgba(230,126,0,.35); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid #2E2E2E; }
.btn-outline:hover { border-color: #4A4A4A; }
.btn-full { display: block; width: 100%; text-align: center; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ─── HERO ─── */
.hero {
  padding: 48px 24px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hero-short { padding: 36px 24px 24px; }
.badge-top {
  display: inline-block;
  background: var(--green2);
  color: var(--green-d);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--green); }
.hero .lead {
  font-size: 17px;
  color: #C8C8C8;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta { display: flex; flex-direction: column; gap: 10px; max-width: 380px; margin: 0 auto 16px; }
.hero-trust {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.hero-trust span { margin: 0 8px; }

/* ─── VIDEO ─── */
.video-wrap {
  position: relative;
  max-width: 320px;
  margin: 32px auto 0;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  background: #000;
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}
.video-caption {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* ─── HISTORIA / POR QUÉ ─── */
.why {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  margin-top: 12px;
}
.why .author-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
}
.why .author-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.why p {
  font-size: 15px;
  color: #CFCFCF;
  margin-bottom: 12px;
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
}
.why p:last-child { margin-bottom: 0; }

/* ─── CALCULADORA ─── */
.calc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
}
.calc label {
  display: block;
  font-size: 14px;
  color: #BBB;
  margin-bottom: 12px;
  font-weight: 600;
}
.calc .slider-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.calc input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  background: #2A2A2A;
  border-radius: 3px;
  outline: none;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(27,140,58,.5);
}
.calc input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.calc .slider-val {
  min-width: 40px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}
.calc-result {
  background: linear-gradient(135deg, #0d1f12 0%, #112519 100%);
  border: 1px solid rgba(27,140,58,.4);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  margin-top: 12px;
}
.calc-result .lbl {
  font-size: 13px;
  color: #9FCBA8;
  margin-bottom: 4px;
}
.calc-result .val {
  font-size: 30px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.01em;
}
.calc-result .val span { font-size: 16px; color: #9FCBA8; font-weight: 500; }
.calc-foot { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.5; }

/* ─── 3 CARDS VEREDICTO ─── */
.verdicts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .verdicts { grid-template-columns: 1fr 1fr 1fr; }
}
.verdict-card {
  background: #F5FFFFFF;
  color: #111;
  border-radius: 14px;
  padding: 16px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  overflow: hidden;
}
.verdict-card .accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px;
}
.verdict-card.tomar .accent { background: var(--green); }
.verdict-card.evaluar .accent { background: var(--amber); }
.verdict-card.pasar .accent { background: var(--red); }
.verdict-card .lbl {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.verdict-card.tomar .lbl { background: #E8F5E9; color: var(--green-d); border: 1px solid var(--green); }
.verdict-card.evaluar .lbl { background: #FFF3E0; color: #B85C00; border: 1px solid var(--amber); }
.verdict-card.pasar .lbl { background: #FFEBEE; color: #B71C1C; border: 1px solid var(--red); }
.verdict-card .ratio {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}
.verdict-card.tomar .ratio { color: var(--green-d); }
.verdict-card.evaluar .ratio { color: #B85C00; }
.verdict-card.pasar .ratio { color: #B71C1C; }
.verdict-card .meta {
  font-size: 12px;
  color: #555;
  margin-top: 6px;
  line-height: 1.5;
}

/* ─── PASOS ─── */
.steps { display: flex; flex-direction: column; gap: 18px; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.step-body h3 { font-size: 16px; margin-bottom: 4px; color: #fff; }
.step-body p { font-size: 14px; color: #999; line-height: 1.5; }

/* ─── PRIVACIDAD ─── */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.privacy-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.privacy-card .ico {
  width: 36px; height: 36px;
  background: rgba(27,140,58,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 20px;
}
.privacy-card h4 { font-size: 14px; margin-bottom: 4px; color: #fff; font-weight: 700; }
.privacy-card p { font-size: 12px; color: #888; line-height: 1.4; }

/* ─── COMPARATIVA ─── */
.compare {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare th, .compare td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare th { background: var(--card2); color: #fff; font-weight: 700; font-size: 13px; }
.compare th.us { color: var(--green); }
.compare td { color: #BBB; }
.compare td.us { color: var(--green); font-weight: 600; }
.compare td.ok::before { content: "✓ "; color: var(--green); font-weight: 700; }
.compare td.no::before { content: "✗ "; color: #555; font-weight: 700; }
.compare tr:last-child td { border-bottom: none; }

/* ─── PRECIOS ─── */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-card {
  background: var(--card);
  border: 2px solid #2A2A2A;
  border-radius: 14px;
  padding: 26px 22px;
  position: relative;
}
.plan-card.launch {
  border-color: var(--amber);
  background: linear-gradient(180deg, #1A1410 0%, #161616 60%);
  box-shadow: 0 8px 32px rgba(230,126,0,.18);
}
.plan-card.featured { border-color: var(--green); }
/* Cards con sello: el grillete sobresale arriba-izquierda, padding extra para que no toque el título */
.plan-card.launch, .plan-card.featured { padding-top: 40px; }
.plan-card .label {
  position: absolute;
  top: -12px; right: 16px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.plan-card.launch .label { background: var(--amber); }

/* Sello circular esquina superior izquierda — sobresale del card sin tapar título */
.plan-seal {
  position: absolute;
  top: -26px; left: -18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  border: 3px solid #0B0B0B;
  transform: rotate(-12deg);
  z-index: 2;
  line-height: 1;
}
.plan-seal.seal-amber { background: var(--amber); }
.plan-seal.seal-green { background: var(--green); }
.plan-seal .seal-num {
  font-size: 18px;
  letter-spacing: -.02em;
}
.plan-seal .seal-txt {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: .95;
}
.plan-card h3 { font-size: 18px; margin-bottom: 6px; color: #fff; }
.plan-card .price {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.plan-card .price s {
  font-size: 17px;
  color: #555;
  font-weight: 500;
  margin-right: 8px;
}
.plan-card .price span {
  font-size: 15px;
  font-weight: 400;
  color: #888;
}
.plan-card .saving {
  font-size: 13px;
  color: var(--green);
  margin: 4px 0 18px;
  font-weight: 600;
}
.plan-card.launch .saving { color: var(--amber); }
.plan-card .cupos {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: rgba(230,126,0,.2);
  border: 1px solid rgba(230,126,0,.5);
  padding: 3px 10px;
  border-radius: 12px;
  margin: 6px 0 12px;
  font-weight: 700;
}
.plan-card .features {
  list-style: none;
  margin-bottom: 22px;
  font-size: 14px;
  color: #BBB;
}
.plan-card .features li { padding: 5px 0; }
.plan-card .features li::before { content: "✓  "; color: var(--green); font-weight: 700; }
.plan-card.launch .features li::before { color: var(--amber); }
.plan-card .features li.feature-bonus {
  color: #fff;
  font-weight: 700;
  background: rgba(230,126,0,.12);
  border: 1px dashed rgba(230,126,0,.45);
  border-radius: 8px;
  padding: 6px 10px;
  margin: 6px 0;
}
.plan-card .features li.feature-bonus::before { content: ""; }

/* ─── GARANTÍA ─── */
.guarantee {
  background: linear-gradient(135deg, #0d1f12 0%, #112519 100%);
  border: 1px solid rgba(27,140,58,.4);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}
.guarantee .ico { font-size: 32px; margin-bottom: 8px; }
.guarantee h3 { font-size: 17px; color: #fff; margin-bottom: 6px; }
.guarantee p { font-size: 14px; color: #BBB; line-height: 1.6; }

/* ─── FAQ ─── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-group { margin-bottom: 28px; }
.faq-group h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
summary {
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #DDD;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 20px; color: var(--muted); flex-shrink: 0; }
details[open] summary::after { content: "−"; }
details p {
  margin-top: 12px;
  font-size: 14px;
  color: #999;
  line-height: 1.7;
}

/* ─── ANATOMIA DEL OVERLAY ─── */
.anatomy-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 720px) {
  .anatomy-wrap { grid-template-columns: 320px 1fr; gap: 36px; }
}

.anatomy-overlay {
  position: relative;
  background: #FFFFFF;
  color: #111;
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 16px 18px 14px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  max-width: 320px;
  margin: 0 auto;
  overflow: visible;
}
.anatomy-overlay .ao-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--green);
  border-radius: 16px 0 0 16px;
}
.anatomy-overlay .ao-close {
  position: absolute;
  top: 6px; right: 6px;
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #999;
  cursor: default;
  line-height: 1;
}
.anatomy-overlay .ao-row1 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding-right: 28px;
  position: relative;
}
.anatomy-overlay .ao-badge {
  display: inline-block;
  background: #E8F5E9;
  color: var(--green-d);
  border: 1px solid var(--green);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .04em;
}
.anatomy-overlay .ao-ratio {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  letter-spacing: -.01em;
}
.anatomy-overlay .ao-row2 {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.anatomy-overlay .ao-row2 .ao-neto {
  color: var(--green-d);
  font-weight: 800;
}
.anatomy-overlay .ao-row3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.anatomy-overlay .ao-accept {
  flex: 1;
  background: #16A34A;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: default;
}
.anatomy-overlay .ao-thresh {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-left: 2px solid rgba(0,0,0,.08);
  padding-left: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.anatomy-overlay .ao-thresh-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.1;
}
.anatomy-overlay .ao-thresh-lbl {
  font-size: 8px;
  font-weight: 600;
  color: #888;
  letter-spacing: .04em;
}
.anatomy-overlay .ao-thresh-val {
  font-size: 12px;
  font-weight: 800;
  color: #111;
}
.anatomy-overlay .ao-thresh-suffix {
  font-size: 7px;
  font-weight: 500;
  color: #888;
  letter-spacing: .04em;
  margin-top: 2px;
}
.anatomy-overlay .ao-sep { color: #BBB; font-weight: 400; }

/* Callout numbers (círculos numerados sobre el mock) */
.ao-callout {
  position: absolute;
  width: 22px; height: 22px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  z-index: 2;
  border: 2px solid #fff;
}
.ao-c1 { top: 12px; left: -10px; }
.ao-c2 { top: 12px; right: 36px; }
.ao-c3 { top: 50%; left: -10px; transform: translateY(-50%); }
.ao-c4 { bottom: 8px; left: -10px; }

.anatomy-legend {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}
.anatomy-legend li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #BBB;
  line-height: 1.5;
}
.anatomy-legend .al-num {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.anatomy-legend strong { color: #fff; font-weight: 700; }

/* ─── TARIFA ─── */
.tariff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .tariff-grid { grid-template-columns: 1fr 1fr; }
}
.tariff-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.tariff-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(21,101,192,.18);
  color: #5BA0E6;
  border: 1px solid rgba(21,101,192,.4);
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.tariff-tag.tag-bonus {
  background: rgba(230,126,0,.18);
  color: #FFB561;
  border-color: rgba(230,126,0,.4);
}
.tariff-line {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.tariff-line em {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.tariff-card p {
  font-size: 14px;
  color: #BBB;
  line-height: 1.6;
  margin-bottom: 14px;
}
.tariff-card strong { color: #fff; }
.tariff-eg {
  background: #0B0B0B;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #CCC;
  line-height: 1.7;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.tariff-eg strong { color: var(--green); }

/* ─── KILOMETROS ─── */
.km-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  .km-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.km-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}
.km-ico {
  font-size: 26px;
  margin-bottom: 8px;
}
.km-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.km-card p {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}
.km-card strong { color: #fff; }
.km-formula {
  background: linear-gradient(135deg, #0d1f12 0%, #112519 100%);
  border: 1px solid rgba(27,140,58,.4);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  font-size: 15px;
  color: #DDD;
  line-height: 1.7;
}
.km-formula strong { color: var(--green); font-weight: 800; }
.km-formula span {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.6;
}

/* ─── NETO ─── */
.neto-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
}
.neto-formula {
  background: #0B0B0B;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  color: var(--green);
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.neto-desc {
  font-size: 14px;
  color: #BBB;
  line-height: 1.6;
  margin-bottom: 16px;
}
.neto-desc strong { color: #fff; }
.neto-eg {
  background: #0B0B0B;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.neto-eg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #BBB;
  padding: 6px 0;
}
.neto-eg-row strong { color: #fff; font-weight: 700; }
.neto-eg-out {
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  margin-top: 6px;
}
.neto-eg-out strong { color: var(--green); font-size: 17px; }
.neto-foot {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ─── BONUS DE LANZAMIENTO ─── */
.bonus-card {
  background: linear-gradient(180deg, #1A1410 0%, #161616 60%);
  border: 2px solid var(--amber);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 8px 32px rgba(230,126,0,.12);
}
.bonus-tag {
  display: inline-block;
  background: rgba(230,126,0,.18);
  color: var(--amber);
  border: 1px solid rgba(230,126,0,.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.bonus-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 800;
}
.bonus-lead {
  font-size: 15px;
  color: #C8C8C8;
  line-height: 1.6;
  margin-bottom: 16px;
}
.bonus-list {
  list-style: none;
  margin-bottom: 18px;
  padding: 0;
}
.bonus-list li {
  font-size: 14px;
  color: #BBB;
  padding: 6px 0;
  line-height: 1.5;
}
.bonus-list li::before {
  content: "✓  ";
  color: var(--amber);
  font-weight: 700;
}
.bonus-list strong { color: #fff; }
.bonus-warn {
  background: #0B0B0B;
  border: 1px dashed rgba(230,126,0,.4);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #AAA;
  line-height: 1.6;
}
.bonus-warn strong { color: var(--amber); }
.bonus-warn a { color: var(--green); font-weight: 600; }

/* ─── QUE HACE / NO HACE ─── */
.does-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .does-grid { grid-template-columns: 1fr 1fr; }
}
.does-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.does-card.yes { border-left: 4px solid var(--green); }
.does-card.no  { border-left: 4px solid #555; }
.does-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 700;
}
.does-card.yes h4 { color: var(--green); }
.does-card ul { list-style: none; }
.does-card li {
  font-size: 14px;
  color: #CCC;
  padding: 6px 0;
  line-height: 1.5;
}
.does-card.yes li::before { content: "✓  "; color: var(--green); font-weight: 700; }
.does-card.no li::before { content: "✗  "; color: #555; font-weight: 700; }

/* ─── CTA FINAL ─── */
.cta-final {
  text-align: center;
  padding: 56px 24px 80px;
  background: linear-gradient(180deg, #0B0B0B 0%, #0d1f12 100%);
}
.cta-final h2 { font-size: clamp(22px, 5vw, 28px); margin-bottom: 12px; }
.cta-final p { color: #999; margin-bottom: 28px; font-size: 15px; }
.cta-final-buttons { max-width: 360px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.divider {
  text-align: center;
  color: #444;
  font-size: 12px;
  margin: 4px 0;
}
.cta-final .wa {
  margin-top: 24px;
  font-size: 13px;
  color: #666;
}
.cta-final .wa a { color: var(--green); font-weight: 600; }

/* ─── FOOTER ─── */
footer {
  text-align: center;
  padding: 24px 24px 100px;
  font-size: 13px;
  color: #555;
  border-top: 1px solid var(--line);
}
footer a { color: #777; }
.footer-play {
  text-align: center;
  margin-bottom: 18px;
}
.footer-play a {
  display: inline-block;
  line-height: 0;
}
.footer-play .play-badge {
  height: 56px;
  width: auto;
  display: block;
}
.footer-play .play-note {
  font-size: 12px;
  color: #888;
  margin: 10px auto 0;
  max-width: 320px;
  line-height: 1.4;
}

