/* ============================================================
   Stronger — Landing page
   Paleta de marca: azul marino #1a2a4a · acento dorado/naranja #f4a261
   ============================================================ */

:root {
  --navy: #1a2a4a;
  --navy-deep: #12203a;
  --navy-2: #223761;
  --navy-3: #2c4272;
  --accent: #f4a261;
  --accent-2: #f6b57e;
  --text: #eef2f8;
  --muted: #a9b7ce;
  --white: #ffffff;
  --radius: 16px;
  --max: 1140px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--navy-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; text-decoration: none;
  border-radius: 12px; padding: 12px 22px; cursor: pointer;
  border: 2px solid transparent; transition: transform .12s ease, background .18s ease, box-shadow .18s ease;
  font-size: 15px;
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 17px; }
.btn-block { display: flex; width: 100%; }
.btn-accent { background: var(--accent); color: var(--navy); box-shadow: 0 8px 22px rgba(244,162,97,.28); }
.btn-accent:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18, 32, 58, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo img { height: 34px; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 15px; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.btn { color: var(--navy); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(244,162,97,.16), transparent 60%),
    linear-gradient(160deg, #1d2f52 0%, var(--navy) 55%, var(--navy-deep) 100%);
  padding: 84px 0 90px;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero-eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 2px; font-size: 13px; }
.hero-text h1 { font-size: 54px; line-height: 1.05; font-weight: 900; margin: 14px 0 18px; letter-spacing: -1px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 560px; }
.hero-sub strong { color: var(--text); }
.hero-cta { display: flex; gap: 14px; margin: 28px 0 22px; flex-wrap: wrap; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: 14px; }

.hero-art { display: flex; justify-content: center; }
.hero-shield {
  width: 300px; height: 300px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(244,162,97,.25), transparent 60%);
  animation: float 6s ease-in-out infinite;
}
.hero-shield img { width: 240px; height: 240px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.45)); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Promesa ---------- */
.promise { background: var(--accent); color: var(--navy); text-align: center; padding: 26px 0; }
.promise p { font-size: 21px; font-weight: 800; font-style: italic; }

/* ---------- Secciones ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--navy); }
.section-title { font-size: 36px; font-weight: 800; text-align: center; letter-spacing: -.5px; }
.section-title.left { text-align: left; }
.section-lead { text-align: center; color: var(--muted); font-size: 18px; margin: 12px 0 46px; }

/* ---------- Pasos ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 34px 26px; text-align: center;
}
.step-num {
  width: 52px; height: 52px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--navy);
  border-radius: 50%; font-weight: 900; font-size: 22px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Características ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 28px 24px; transition: transform .15s ease, border-color .15s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(244,162,97,.5); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---------- Precios ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 860px; margin: 0 auto; }
.plan {
  position: relative; background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.08); border-radius: 20px;
  padding: 34px 30px; display: flex; flex-direction: column;
}
.plan-featured { border-color: var(--accent); box-shadow: var(--shadow); transform: scale(1.03); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--navy); font-weight: 800; font-size: 12px;
  padding: 6px 16px; border-radius: 20px; letter-spacing: .5px; white-space: nowrap;
}
.plan-tag { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.plan h3 { font-size: 24px; margin: 6px 0 14px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 20px; }
.plan-price .currency { font-size: 24px; font-weight: 700; color: var(--muted); }
.plan-price .amount { font-size: 52px; font-weight: 900; line-height: 1; }
.plan-price .period { font-size: 15px; color: var(--muted); margin-left: 6px; }
.plan-list { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-list li { color: var(--text); font-size: 15px; }
.pricing-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 26px; }

/* ---------- Testimonios ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.06);
  border-left: 4px solid var(--accent); border-radius: 12px; padding: 26px 24px;
}
.testimonial p { font-size: 16px; font-style: italic; }
.testimonial footer { margin-top: 14px; color: var(--accent); font-weight: 600; font-size: 14px; }

/* ---------- Misión ---------- */
.mission { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); }
.mission-text > p { color: var(--muted); font-size: 18px; max-width: 720px; margin: 16px 0 34px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 22px; }
.value h4 { color: var(--accent); font-size: 17px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 6px 20px;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px; padding: 14px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 24px; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding: 0 0 16px; font-size: 15px; }

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center; padding: 84px 0;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(244,162,97,.16), transparent 70%),
    var(--navy);
}
.cta-final h2 { font-size: 38px; font-weight: 900; letter-spacing: -.5px; }
.cta-final p { color: var(--muted); font-size: 18px; margin: 14px 0 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.06); padding-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; }
.footer-brand img { height: 30px; margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 15px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--muted); font-size: 13px; max-width: var(--max); margin: 0 auto;
}
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Concepto: el embudo ---------- */
.funnel { display: flex; align-items: stretch; justify-content: center; gap: 12px; flex-wrap: wrap; }
.funnel-step {
  flex: 1; min-width: 200px; max-width: 240px;
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
}
.funnel-step-end { border-color: rgba(244,162,97,.45); }
.funnel-emoji { font-size: 34px; margin-bottom: 12px; }
.funnel-step h3 { font-size: 18px; margin-bottom: 8px; }
.funnel-step p { color: var(--muted); font-size: 14px; }
.funnel-arrow { display: flex; align-items: center; color: var(--accent); font-size: 30px; font-weight: 800; }
.concept-punch {
  max-width: 760px; margin: 40px auto 0; text-align: center;
  color: var(--muted); font-size: 18px;
}
.concept-punch strong { color: var(--accent); display: block; font-size: 22px; margin-bottom: 8px; }

/* ---------- Etapas (escudo completo) ---------- */
.stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stage {
  position: relative; background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 34px 26px 30px; transition: transform .15s ease, border-color .15s ease;
}
.stage:hover { transform: translateY(-4px); border-color: rgba(244,162,97,.5); }
.stage-badge {
  display: inline-block; background: var(--accent); color: var(--navy);
  font-weight: 800; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.stage-icon { font-size: 40px; margin-bottom: 12px; }
.stage h3 { font-size: 22px; margin-bottom: 10px; }
.stage p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.stage-nets { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.stage-nets li {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  color: var(--text); font-size: 13px; font-weight: 600;
  padding: 5px 11px; border-radius: 20px;
}
.shield-banner {
  margin-top: 34px; text-align: center; font-size: 17px; color: var(--text);
  background: rgba(244,162,97,.10); border: 1px solid rgba(244,162,97,.35);
  border-radius: var(--radius); padding: 20px 24px;
}
.shield-banner strong { color: var(--accent); }

/* ---------- Cobertura (redes + capas) ---------- */
.coverage-title { text-align: center; font-size: 22px; font-weight: 800; margin: 54px 0 22px; }
.coverage { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.coverage-group {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 20px 22px; min-width: 240px;
}
.coverage-label { display: block; color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  color: var(--text); font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 20px;
}
.honesty-note {
  max-width: 720px; margin: 34px auto 0; text-align: center;
  color: var(--muted); font-size: 14px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px; padding: 16px 20px;
}
.honesty-note strong { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-art { order: -1; }
  .hero-shield { width: 220px; height: 220px; }
  .hero-shield img { width: 170px; height: 170px; }
  .steps, .features, .testimonials, .values { grid-template-columns: 1fr; }
  .stages { grid-template-columns: 1fr; }
  .funnel { flex-direction: column; align-items: center; }
  .funnel-step { max-width: 420px; width: 100%; }
  .funnel-arrow { transform: rotate(90deg); }
  .pricing { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .hero-text h1 { font-size: 40px; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.08); padding: 10px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; width: 100%; }
  .nav-links a.btn { margin: 8px 24px; width: auto; }
  .nav-toggle { display: block; }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .hero-text h1 { font-size: 34px; }
}


/* ============================================================
   Páginas legales (privacidad, términos, reembolsos, contacto)
   ============================================================ */
.legal { padding: 56px 0 40px; }
.legal-head { max-width: 820px; margin: 0 auto 8px; }
.legal-head h1 { font-size: 34px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-size: 14px; }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 22px; font-weight: 700; margin: 34px 0 12px; color: var(--white); }
.legal-body h3 { font-size: 17px; font-weight: 600; margin: 22px 0 8px; }
.legal-body p { color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.legal-body ul { color: var(--muted); line-height: 1.7; margin: 0 0 14px 20px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--accent); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-back { display: inline-block; margin-bottom: 28px; color: var(--accent); text-decoration: none; font-weight: 600; }
.legal-back:hover { text-decoration: underline; }
.pricing-note a { color: var(--accent); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }
.contact-card { background: var(--navy-2); border-radius: var(--radius); padding: 28px 32px; margin: 8px 0 20px; }
.contact-card a { color: var(--accent); font-weight: 700; text-decoration: none; font-size: 18px; }
.contact-card a:hover { text-decoration: underline; }
