/* ===========================
   Tinki Cel — Estilos base
   =========================== */
:root {
  --navy: #0E1A6B;
  --navy-deep: #08124A;
  --orange: #F94F1E;
  --orange-soft: #FF7849;
  --sky: #3A8FE3;
  --cream: #FFF8F2;
  --paper: #FFFFFF;
  --ink: #0B1133;
  --ink-soft: #5A607F;
  --line: #EDE3D7;
  --line-strong: #D9CBB8;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 44px;

  --shadow-card: 0 18px 40px -22px rgba(14,26,107,.28);
  --shadow-soft: 0 8px 24px -14px rgba(14,26,107,.22);

  --font-display: "Caveat Brush", system-ui, sans-serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: .01em; line-height: 1; }

/* Force weight 400 on every display element — Caveat Brush only ships at 400 */
.h-section, .hero h1, .plan-name, .phone-name, .recharge-total .val,
.coverage-list .num, .num-block .big, .mp-title, .cta-final h2,
.map-card .head, .map-card .badge .big, .phone-card .gb, .mp-big .gb,
.cta-final .dec, .sparkle {
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
}
.h-section {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.04;
  color: var(--navy);
  margin: 0 0 8px;
}
.h-section .accent { color: var(--orange); }
.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}
.center { text-align: center; }

/* Container */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; position: relative; }
section.compact { padding: 64px 0; }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(249,79,30,.65);
}
.btn-primary:hover { background: #ff5a2a; box-shadow: 0 18px 36px -14px rgba(249,79,30,.7); }
.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover { background: var(--navy-deep); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-link {
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* ===========================
   Promo banner
   =========================== */
.promo {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  letter-spacing: .02em;
}
.promo .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: inline-block; }
.promo a { text-decoration: underline; text-underline-offset: 3px; font-weight: 700; color: #FFD9C5; }

/* ===========================
   Header
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 242, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color .18s ease;
}
.nav a:hover { color: var(--orange); }
.nav a.has-badge { margin-right: 22px; }
.nav a.has-badge::after {
  content: attr(data-badge);
  position: absolute;
  top: -8px;
  right: -34px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: .08em;
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  color: var(--navy);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.icon-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===========================
   Hero
   =========================== */
.hero { padding-top: 60px; padding-bottom: 80px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(58px, 8.5vw, 124px);
  line-height: 1.02;
  color: var(--navy);
  margin: 18px 0 30px;
  padding-bottom: 8px;
}
.hero h1 .orange { color: var(--orange); }
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 4px;
  height: 14px;
  background: var(--orange);
  opacity: .22;
  border-radius: 999px;
  z-index: -1;
}
.hero-lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -10px;
  display: inline-block;
  background-size: cover;
  background-position: center;
}
.avatars span:first-child { margin-left: 0; }

/* Phone mockup */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}
.phone {
  width: 290px;
  height: 580px;
  background: var(--navy);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 80px -30px rgba(14,26,107,.55), inset 0 0 0 2px rgba(255,255,255,.06);
  position: relative;
  z-index: 2;
  transform: rotate(-4deg);
}
.phone-screen {
  background: linear-gradient(180deg, #FFF8F2 0%, #FFE7D8 100%);
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 22px 6px;
  font-size: 8px;
  font-weight: 700;
  color: var(--navy);
}
.phone-content {
  padding: 28px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-hello {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.phone-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
  margin-top: 2px;
}
.phone-card {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 18px;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.phone-card::after {
  content: "";
  position: absolute;
  right: -50px; top: -50px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: .55;
}
.phone-card .lbl { font-size: 11px; opacity: .7; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.phone-card .gb { font-family: var(--font-display); font-size: 56px; line-height: 1; margin-top: 6px; }
.phone-card .bar { height: 6px; background: rgba(255,255,255,.15); border-radius: 99px; margin-top: 14px; overflow: hidden; }
.phone-card .bar > span { display: block; height: 100%; width: 62%; background: var(--orange); border-radius: 99px; }
.phone-card .meta { display: flex; justify-content: space-between; font-size: 11px; margin-top: 8px; opacity: .85; }
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.phone-tile {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid var(--line);
}
.phone-tile .ico { width: 32px; height: 32px; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--orange); margin-bottom: 8px; }
.phone-tile .ttl { font-size: 12px; font-weight: 700; color: var(--navy); }
.phone-tile .sub { font-size: 10.5px; color: var(--ink-soft); margin-top: 2px; }

.phone-tab {
  position: absolute;
  bottom: 16px; left: 24px; right: 24px;
  background: var(--navy);
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 4;
}
.phone-tab span { width: 22px; height: 22px; border-radius: 8px; background: rgba(255,255,255,.1); }
.phone-tab span.active { background: var(--orange); }

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
}
.blob.b1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle at 30% 30%, var(--orange) 0%, transparent 65%);
  opacity: .35;
  top: -20px; right: -40px;
}
.blob.b2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle at 50% 50%, var(--sky) 0%, transparent 60%);
  opacity: .3;
  bottom: 20px; left: -30px;
}
.sparkle {
  position: absolute;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 36px;
  z-index: 4;
  pointer-events: none;
}
.sparkle.s1 { top: 30px; left: 0; color: var(--sky); transform: rotate(-12deg); }
.sparkle.s2 { bottom: 30px; right: 10px; color: var(--orange); transform: rotate(8deg); }

/* ===========================
   Strip de beneficios
   =========================== */
.strip {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.strip-item .ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.strip-item small { display: block; color: rgba(255,255,255,.6); font-size: 11.5px; font-weight: 500; letter-spacing: .04em; }

/* ===========================
   Planes
   =========================== */
.plans-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}
.plans-header h2 { max-width: 12ch; text-align: left; margin: 0; }
.plans-header p { max-width: 36ch; text-align: left; margin: 0; }

.tab-row {
  display: inline-flex;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 36px;
  box-shadow: var(--shadow-soft);
}
.tab-row button {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all .2s ease;
}
.tab-row button.active {
  background: var(--navy);
  color: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.plan-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--line);
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--orange);
}
.plan-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.03);
}
.plan-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(14,26,107,.6);
}
.plan-card .tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--navy);
  line-height: 1;
}
.plan-card.featured .plan-name { color: var(--orange); }
.plan-desc { font-size: 13px; color: var(--ink-soft); margin: 4px 0 22px; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,.7); }
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.plan-price .cur { font-size: 18px; font-weight: 700; color: var(--ink-soft); }
.plan-card.featured .plan-price .cur { color: rgba(255,255,255,.7); }
.plan-price .num { font-size: 56px; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.plan-card.featured .plan-price .num { color: #fff; }
.plan-price .unit { font-size: 14px; color: var(--ink-soft); }
.plan-card.featured .plan-price .unit { color: rgba(255,255,255,.7); }

.plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px dashed var(--line-strong);
  border-bottom: 1px dashed var(--line-strong);
}
.plan-card.featured .plan-stats {
  border-color: rgba(255,255,255,.18);
}
.plan-stats div .big {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
}
.plan-card.featured .plan-stats div .big { color: #fff; }
.plan-stats div .lbl {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}
.plan-card.featured .plan-stats div .lbl { color: rgba(255,255,255,.6); }

.plan-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink);
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,.92); }
.plan-features svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.plan-card .btn { width: 100%; justify-content: center; }

/* ===========================
   Recarga
   =========================== */
.recharge {
  background: linear-gradient(135deg, #FFEAD9 0%, #FFD7BD 100%);
  border-radius: 36px;
  padding: 56px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.recharge::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
  opacity: .2;
}
.recharge h2 { text-align: left; margin-bottom: 14px; }
.recharge p { color: var(--ink); max-width: 38ch; margin: 0; font-size: 16px; }

.recharge-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 60px -30px rgba(14,26,107,.4);
  position: relative;
  z-index: 2;
}
.recharge-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.recharge-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  border: 2px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.recharge-input:focus { border-color: var(--orange); background: #fff; }
.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 24px;
}
.amount-btn {
  padding: 14px 6px;
  border: 2px solid var(--line);
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  transition: all .18s ease;
}
.amount-btn:hover { border-color: var(--orange); color: var(--orange); }
.amount-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.amount-btn small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: .7;
  margin-top: 2px;
  letter-spacing: .04em;
}
.recharge-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px dashed var(--line-strong);
  margin: 6px 0 18px;
}
.recharge-total .lbl { font-size: 13px; color: var(--ink-soft); }
.recharge-total .val {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--navy);
  line-height: 1;
}

/* ===========================
   Cobertura
   =========================== */
.coverage-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.coverage-info h2 { text-align: left; margin-bottom: 14px; }
.coverage-info > p { max-width: 44ch; color: var(--ink-soft); margin: 0 0 32px; }
.coverage-list { list-style: none; padding: 0; margin: 0 0 32px; }
.coverage-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.coverage-list li:last-child { border-bottom: none; }
.coverage-list .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
  min-width: 60px;
}
.coverage-list .ttl { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 2px; }
.coverage-list .desc { font-size: 13.5px; color: var(--ink-soft); }

.map-card {
  background: var(--navy);
  border-radius: 32px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.map-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 28%, rgba(249,79,30,.55) 0%, transparent 12%),
    radial-gradient(circle at 55% 38%, rgba(249,79,30,.45) 0%, transparent 9%),
    radial-gradient(circle at 38% 60%, rgba(249,79,30,.5) 0%, transparent 11%),
    radial-gradient(circle at 70% 70%, rgba(58,143,227,.5) 0%, transparent 10%),
    radial-gradient(circle at 80% 25%, rgba(58,143,227,.4) 0%, transparent 8%);
}
.map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.1) 1.2px, transparent 1.5px);
  background-size: 14px 14px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.map-pin {
  position: absolute;
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(249,79,30,.25), 0 0 0 12px rgba(249,79,30,.12);
  animation: pulse 2.4s infinite ease-out;
}
.map-pin.p1 { top: 34%; left: 28%; }
.map-pin.p2 { top: 56%; left: 48%; animation-delay: .8s; }
.map-pin.p3 { top: 42%; left: 72%; animation-delay: 1.6s; background: var(--sky); box-shadow: 0 0 0 6px rgba(58,143,227,.3), 0 0 0 12px rgba(58,143,227,.15); }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.map-card .badge {
  position: absolute;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.4);
  z-index: 2;
}
.map-card .badge .big { font-family: var(--font-display); font-size: 24px; color: var(--orange); line-height: 1; display: block; margin-bottom: 2px; }
.map-card .badge.b1 { top: 36px; left: 36px; }
.map-card .badge.b2 { bottom: 36px; right: 36px; }
.map-card .head {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: .95;
  max-width: 8ch;
}

/* ===========================
   Numbers
   =========================== */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 56px;
  background: #fff;
  border-radius: 32px;
  border: 1.5px solid var(--line);
}
.num-block {
  text-align: center;
  border-right: 1px dashed var(--line-strong);
  padding: 0 12px;
}
.num-block:last-child { border-right: none; }
.num-block .big { font-family: var(--font-display); font-size: 76px; color: var(--navy); line-height: 1; }
.num-block .big .accent { color: var(--orange); }
.num-block .lbl { font-size: 13px; color: var(--ink-soft); margin-top: 6px; font-weight: 500; }

/* ===========================
   App
   =========================== */
.app-section {
  background: var(--navy);
  color: #fff;
  border-radius: 36px;
  padding: 72px 56px;
  margin: 0 28px;
  position: relative;
  overflow: hidden;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.app-section .eyebrow { color: var(--orange-soft); }
.app-section h2 { color: #fff; text-align: left; margin-bottom: 14px; }
.app-section h2 .accent { color: var(--orange); }
.app-section p { color: rgba(255,255,255,.75); max-width: 42ch; margin: 0 0 32px; font-size: 16px; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy);
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(0,0,0,.25); }
.store-btn small { display: block; font-size: 10px; font-weight: 500; opacity: .7; letter-spacing: .08em; text-transform: uppercase; }
.store-btn b { font-size: 15px; font-weight: 800; display: block; line-height: 1; margin-top: 2px; }
.qr {
  width: 92px; height: 92px;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.qr-inner {
  width: 100%; height: 100%;
  background-image:
    linear-gradient(45deg, var(--navy) 25%, transparent 25%),
    linear-gradient(-45deg, var(--navy) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--navy) 75%),
    linear-gradient(-45deg, transparent 75%, var(--navy) 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0;
  border-radius: 6px;
  position: relative;
}
.qr-inner::before, .qr-inner::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border: 4px solid var(--navy);
  border-radius: 3px;
}
.qr-inner::before { top: 0; left: 0; }
.qr-inner::after { top: 0; right: 0; }

.app-phones {
  position: relative;
  height: 480px;
}
.app-phones .phone {
  position: absolute;
  width: 240px;
  height: 480px;
  background: #08124A;
  border-radius: 36px;
  padding: 10px;
  transform: unset;
}
.app-phones .phone .phone-screen { border-radius: 26px; }
.app-phones .ph-a { left: 0; top: 20px; transform: rotate(-6deg); }
.app-phones .ph-b { right: 0; top: 0; transform: rotate(4deg); }
.app-section::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -160px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
  opacity: .25;
  z-index: 1;
}

/* Mini phones content */
.mp-content { padding: 22px 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.mp-title { font-family: var(--font-display); color: var(--navy); font-size: 24px; line-height: 1; }
.mp-row {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.mp-row .ic { width: 30px; height: 30px; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.mp-row .t { font-size: 11px; font-weight: 700; color: var(--navy); }
.mp-row .s { font-size: 9.5px; color: var(--ink-soft); margin-top: 1px; }
.mp-row .v { margin-left: auto; font-family: var(--font-display); font-size: 18px; color: var(--orange); }
.mp-big {
  background: var(--orange);
  color: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.mp-big .lbl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.mp-big .gb { font-family: var(--font-display); font-size: 44px; line-height: 1; margin: 4px 0; }
.mp-big .sub { font-size: 10px; opacity: .85; }

/* ===========================
   FAQ
   =========================== */
.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.faq-grid h2 { text-align: left; }
.faq-grid > div:first-child p { color: var(--ink-soft); max-width: 30ch; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--navy); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.faq-q .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background .2s ease, transform .35s ease;
  flex-shrink: 0;
}
.faq-item.open .plus { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 22px; }

/* ===========================
   CTA Final
   =========================== */
.cta-final {
  text-align: center;
  background: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 110px);
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 18px;
}
.cta-final p { font-size: 18px; color: var(--ink-soft); margin: 0 0 32px; }
.cta-final .ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-final .dec {
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  opacity: .04;
  color: var(--navy);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.cta-final .dec.l { left: -10px; top: 30px; transform: rotate(-8deg); }
.cta-final .dec.r { right: -10px; bottom: 30px; transform: rotate(6deg); }
.cta-final .wrap { position: relative; z-index: 1; }

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 6px 0; font-size: 14px; }
.footer ul li a { transition: color .18s ease; }
.footer ul li a:hover { color: var(--orange); }
.footer-brand img { height: 60px; background: #fff; padding: 8px; border-radius: 14px; width: auto; }
.footer-brand p { margin: 18px 0 24px; font-size: 14px; max-width: 32ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s ease;
}
.socials a:hover { background: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { transition: color .18s ease; }
.footer-bottom a:hover { color: var(--orange); }

/* ===========================
   Compatibilidad IMEI
   =========================== */
.compat {
  position: relative;
}
.compat-card {
  background: linear-gradient(135deg, #EAF2FF 0%, #D8E7FF 100%);
  border-radius: 36px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.compat-card::before {
  content: "";
  position: absolute;
  left: -120px; bottom: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--sky) 0%, transparent 65%);
  opacity: .25;
}
.compat-card h2 { text-align: left; margin-bottom: 14px; }
.compat-card > div:first-child > p { color: var(--ink); max-width: 42ch; margin: 0 0 24px; font-size: 16px; }
.compat-tips { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.compat-tips li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.compat-tips li code {
  background: #fff; padding: 4px 10px; border-radius: 8px;
  font-family: ui-monospace, monospace; font-size: 13px;
  border: 1px solid var(--line-strong); color: var(--orange);
}
.compat-form {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 60px -30px rgba(14,26,107,.35);
  position: relative;
  z-index: 2;
}
.compat-form label {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.compat-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  font-family: ui-monospace, "SF Mono", monospace;
  font-weight: 600;
  letter-spacing: .04em;
  border: 2px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.compat-input:focus { border-color: var(--sky); background: #fff; }
.compat-hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 8px 0 18px;
}
.compat-btn {
  width: 100%;
  padding: 16px;
  justify-content: center;
}
.compat-result {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.compat-result .ic { flex-shrink: 0; margin-top: 2px; }
.compat-result.success {
  background: rgba(46, 160, 67, .12);
  color: #1F7A35;
  border: 1px solid rgba(46, 160, 67, .3);
}
.compat-result.error {
  background: rgba(249, 79, 30, .1);
  color: #B5340D;
  border: 1px solid rgba(249, 79, 30, .3);
}
.compat-result.warning {
  background: rgba(245, 158, 11, .12);
  color: #92400E;
  border: 1px solid rgba(245, 158, 11, .3);
}
.compat-result.info,
.compat-result.incomplete {
  background: rgba(58, 143, 227, .1);
  color: var(--navy);
  border: 1px solid rgba(58, 143, 227, .3);
}
.compat-result a { text-decoration: underline; font-weight: 700; color: inherit; }
.compat-result strong { font-weight: 800; }
.compat-result br + strong { display: inline-block; margin-top: 4px; }
.compat-result .ic {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  background: currentColor;
}
.compat-result .ic > * { color: #fff; }
.compat-result .ic svg { stroke: #fff; }
.compat-result.success .ic { color: #1F7A35; }
.compat-result.error .ic { color: #B5340D; }
.compat-result.warning .ic { color: #92400E; }
.compat-result.info .ic, .compat-result.incomplete .ic { color: var(--navy); }
.compat-result .ic-letter { color: #fff; }

/* Loading spinner */
.compat-btn.loading { opacity: .7; pointer-events: none; }
.compat-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: compat-spin .7s linear infinite;
  display: inline-block;
}
@keyframes compat-spin { to { transform: rotate(360deg); } }

/* ===========================
   Responsive
   =========================== */

/* ---- Tablet (≤ 1100px): tighten gaps & 4-col plans → 2-col ---- */
@media (max-width: 1100px) {
  .plans-grid[style] { grid-template-columns: repeat(2, 1fr) !important; }
  .plan-card.featured { transform: none; }
  .hero h1 { font-size: clamp(48px, 7.5vw, 92px); }
  .wrap { padding: 0 24px; }
}

/* ---- Tablet / mobile grande (≤ 980px) ---- */
@media (max-width: 980px) {
  .hero-grid, .coverage-grid, .recharge, .app-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid, .plans-grid[style] { grid-template-columns: repeat(2, 1fr) !important; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .numbers { grid-template-columns: repeat(2, 1fr); padding: 36px 24px; }
  .num-block { border-right: none; border-bottom: 1px dashed var(--line-strong); padding: 18px 0; }
  .num-block:nth-last-child(-n+2) { border-bottom: none; }
  .nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .plans-header { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 32px; }
  .plans-header h2 { max-width: none; }
  .app-section { padding: 48px 28px; margin: 0 16px; }
  .recharge { padding: 36px 28px; }
  .compat-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  section { padding: 64px 0; }
  .app-phones { height: 380px; display: flex; justify-content: center; gap: 12px; }
  .app-phones .phone { position: relative; width: 180px; height: 360px; top: 0; left: auto; right: auto; }
  .app-phones .ph-a { transform: rotate(-4deg); }
  .app-phones .ph-b { transform: rotate(3deg); }
  .phone-stage { min-height: 480px; }
  .phone { width: 260px; height: 520px; transform: rotate(-3deg); }
  .hero { padding-top: 40px; padding-bottom: 40px; }
  .hero h1 { margin: 14px 0 24px; }
  .hero-lead { font-size: 17px; }
  .map-card { padding: 28px; }
  .map-card .head { font-size: 36px; }
  .map-card .badge { font-size: 11px; padding: 10px 12px; }
  .map-card .badge.b1 { top: 20px; left: 20px; }
  .map-card .badge.b2 { bottom: 20px; right: 20px; }
}

/* ---- Mobile (≤ 640px) ---- */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  section { padding: 56px 0; }

  /* Header */
  .header-row { height: 64px; gap: 10px; }
  .brand img { height: 42px; }
  .icon-btn { width: 38px; height: 38px; }
  .header-cta .btn { padding: 10px 16px; font-size: 13px; }
  .header-cta .btn svg { display: none; }
  .promo { font-size: 12px; gap: 8px; padding: 8px 12px; flex-wrap: wrap; }

  /* Hero */
  .hero h1 { font-size: clamp(44px, 11vw, 64px); margin: 12px 0 20px; }
  .hero-lead { font-size: 16px; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 14px; font-size: 12px; margin-top: 28px; }
  .phone { width: 230px; height: 460px; transform: rotate(-3deg); border-radius: 36px; padding: 10px; }
  .phone-screen { border-radius: 26px; }
  .phone-card .gb { font-size: 44px; }
  .phone-stage { min-height: 420px; }
  .blob.b1 { width: 200px; height: 200px; top: 0; right: -30px; }
  .blob.b2 { width: 160px; height: 160px; bottom: 10px; left: -20px; }

  /* Strip */
  .strip { padding: 22px 0; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 16px 14px; }
  .strip-item { font-size: 13px; gap: 10px; }
  .strip-item .ico { width: 38px; height: 38px; border-radius: 12px; }
  .strip-item small { font-size: 11px; }

  /* Plans */
  .plans-grid, .plans-grid[style] { grid-template-columns: 1fr !important; gap: 18px; }
  .plan-card { padding: 26px 22px; }
  .plan-card .tag { font-size: 10px; padding: 5px 12px; }
  .plan-name { font-size: 38px; }
  .plan-price .num { font-size: 48px; }
  .tab-row { width: 100%; display: flex; }
  .tab-row button { flex: 1; padding: 10px 12px; font-size: 13px; }

  /* Recarga */
  .recharge { padding: 28px 22px; border-radius: 24px; gap: 28px; }
  .compat-card { padding: 28px 22px; border-radius: 24px; gap: 24px; }
  .compat-form { padding: 24px 20px; border-radius: 22px; }
  .compat-input { padding: 14px 16px; font-size: 16px; }
  .recharge-card { padding: 24px 20px; border-radius: 22px; }
  .recharge-input { padding: 14px 16px; font-size: 16px; }
  .amount-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .amount-btn { padding: 12px 6px; font-size: 14px; }
  .recharge-total .val { font-size: 32px; }

  /* Cobertura */
  .map-card { aspect-ratio: auto; min-height: 380px; padding: 24px; border-radius: 24px; }
  .map-card .head { font-size: 32px; }
  .coverage-list .num { font-size: 28px; min-width: 56px; }
  .coverage-list .ttl { font-size: 14px; }
  .coverage-list .desc { font-size: 13px; }

  /* Numbers */
  .numbers { padding: 28px 18px; border-radius: 24px; gap: 18px; }
  .num-block .big { font-size: 56px; }
  .num-block .lbl { font-size: 12px; }

  /* App */
  .app-section { padding: 40px 22px; margin: 0 12px; border-radius: 28px; }
  .app-phones { height: 320px; }
  .app-phones .phone { width: 150px; height: 300px; }
  .store-row { gap: 10px; }
  .store-btn { padding: 10px 16px; }
  .qr { width: 80px; height: 80px; }

  /* FAQ */
  .faq-q { padding: 18px 20px; font-size: 14.5px; gap: 14px; }
  .faq-q .plus { width: 28px; height: 28px; }
  .faq-item.open .faq-a { padding: 0 20px 20px; }
  .faq-a { padding: 0 20px; font-size: 14px; }

  /* CTA final */
  .cta-final { padding: 72px 0; }
  .cta-final h2 { font-size: clamp(44px, 12vw, 72px); }
  .cta-final p { font-size: 16px; }
  .cta-final .ctas { flex-direction: column; align-items: stretch; }
  .cta-final .ctas .btn { justify-content: center; }
  .cta-final .dec { font-size: 120px; }

  /* Footer */
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-brand img { height: 52px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; font-size: 12px; }
  .footer-bottom > div:last-child { flex-wrap: wrap; gap: 12px; }

  /* Sections eyebrows / titles */
  .h-section { font-size: clamp(38px, 9vw, 56px); }
}

/* ---- Mobile chico (≤ 380px) ---- */
@media (max-width: 380px) {
  .strip-grid { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: 1fr 1fr; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .header-cta .btn { padding: 8px 12px; font-size: 12px; }
  .promo a { display: block; }
}
