/* ─────────────────────────────────────────────
   HOLASIM — Landing Mundial 2026 (Desktop ARG)
   100% HTML/CSS — assets individuales del Figma
   ───────────────────────────────────────────── */

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

:root {
  --magenta: #E5007E;
  --magenta-dark: #b8005f;
  --magenta-soft: #fdf0f7;
  --purple: #591A6B;
  --dark: #252525;
  --gray-text: #505050;
  --gray-50: #F8F8FA;
  --gray-100: #f3f4f6;
  --gray-200: #DEDEDE;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green: #19D01F;
  --gold: #F6BB06;
  --promo-bg: #CBEEF2;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

html { overflow-x: clip; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 800px; }

.center { text-align: center; }
.narrow { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ── TYPOGRAPHY (compact — antes era 40px+ en H2) ── */
h1, h2, h3, h4 { font-family: inherit; }
h1 { font-weight: 800; letter-spacing: -1.2px; line-height: 1.05; font-size: 56px; color: var(--dark); }
h2 { font-weight: 800; letter-spacing: -0.8px; line-height: 1.15; font-size: 32px; color: var(--dark); margin-bottom: 12px; }
h3 { font-weight: 800; font-size: 18px; color: var(--dark); }
h4 { font-weight: 700; font-size: 16px; color: var(--dark); line-height: 1.3; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow.center { display: block; }

.section-sub {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ── PROMO BAR ── */
.promo-bar {
  background: var(--promo-bg);
  color: var(--dark);
  font-size: 12px;
  text-align: center;
  padding: 9px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.promo-bar a { color: var(--magenta); font-weight: 700; }
.promo-sep { color: var(--gray-400); }

/* ── NAVBAR (logo + 2 links + login button) ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.nav-logo img { height: 28px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.nav-links a:hover { color: var(--magenta); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  font-family: inherit;
  border: 0;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--magenta);
  color: #fff;
  padding: 11px 22px;
  box-shadow: 0 6px 18px rgba(229, 0, 126, 0.30);
}
.btn-primary:hover { background: var(--magenta-dark); }
.btn-secondary {
  background: var(--gray-100);
  color: var(--dark);
  padding: 10px 20px;
}
.btn-secondary:hover { background: var(--gray-200); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-card { padding: 11px 20px; font-size: 13px; align-self: flex-start; }
.btn-full { width: 100%; }

.btn-login {
  background: var(--magenta);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(229, 0, 126, 0.25);
}
.btn-login:hover { background: var(--magenta-dark); color: #fff; }

/* ── HERO ── */
/* ── HERO V2 ── */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
  padding: 36px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
  padding-bottom: 32px;
}

/* LEFT: text */
.hero-text { padding: 12px 0; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-logo { height: 26px; width: auto; }
.hero-eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: .2px;
}
.hero-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-title-pink { color: var(--magenta); }
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #444;
  max-width: 520px;
  margin: 0 0 28px;
}
.hero-sub strong { color: var(--magenta); font-weight: 700; }
.hero-cta { margin-bottom: 36px; }

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(15, 8, 25, .07);
  border: 1px solid #eef0f5;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  text-align: center;
  align-items: center;
}
.hero-feature img { width: 28px; height: 28px; margin-bottom: 4px; }
.hero-feature strong {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--dark);
  line-height: 1.2;
}
.hero-feature span { color: var(--gray-text); font-size: 11px; line-height: 1.3; }

/* RIGHT: visual area */
.hero-visual {
  position: relative;
  height: 620px;
  min-height: 620px;
}
.hero-fan {
  position: absolute;
  top: 0;
  right: -40px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  z-index: 1;
}

/* Country pins */
.country-pins {
  position: absolute;
  top: 14px;
  right: 8px;
  display: flex;
  gap: 10px;
  z-index: 6;
}
.country-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.country-pin .flag {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
  position: relative;
}
.country-pin .flag::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
}
.country-pin .cc {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  color: var(--dark);
  margin-top: 6px;
  background: rgba(255,255,255,.85);
  padding: 2px 6px;
  border-radius: 4px;
}
.country-tagline {
  position: absolute;
  top: 110px;
  right: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .3px;
  z-index: 6;
}
.country-tagline strong { color: var(--magenta); font-weight: 800; }

/* Hand-tag (cursive overlay) */
.hero-handtag {
  position: absolute;
  top: 8px;
  left: 4%;
  background: #fff;
  padding: 12px 18px 14px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  z-index: 7;
  transform: rotate(-2deg);
  max-width: 250px;
}
.ht-line {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--dark);
  text-transform: uppercase;
}
.ht-script {
  display: block;
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--magenta);
  line-height: 1;
  margin-top: 2px;
  border-bottom: 3px solid var(--magenta);
  padding-bottom: 2px;
}

/* Float cards (base) */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  font-size: 12px;
  z-index: 5;
  min-width: 160px;
}
.fc-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
.fc-app-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fc-app-icon--wa { background: #25D366; }
.fc-app-icon--maps { background: #fff; border: 1px solid #eee; }
.fc-app-icon--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fc-app-icon--uber {
  background: #000;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
}
.fc-app-name { font-weight: 700; font-size: 12px; color: var(--dark); flex: 1; }
.fc-uber-name { display: none; }
.fc-time { font-size: 10px; color: #999; }

/* Card: WhatsApp */
.fc-whatsapp {
  top: 150px;
  left: 0;
  width: 220px;
}
.fc-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.fc-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.fc-avatar--mama { background: #f59e0b; }
.fc-avatar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #fff;
}
.fc-msg-from { font-size: 11px; font-weight: 700; color: var(--dark); }
.fc-msg-text { font-size: 11px; color: #555; line-height: 1.35; }

/* Card: Maps */
.fc-maps {
  top: 330px;
  left: 0;
  width: 190px;
}
.fc-maps-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.fc-maps-time {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}
.fc-maps-sub { font-size: 10px; color: #888; }

/* Card: EN VIVO */
.fc-envivo {
  top: 150px;
  right: 0;
  width: 195px;
  padding: 0;
  overflow: hidden;
}
.fc-envivo-thumb {
  position: relative;
  height: 92px;
  background: linear-gradient(135deg, #1a3a5a, #2c5282);
  display: grid;
  place-items: center;
}
.fc-envivo-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: .5px;
}
.fc-envivo-play {
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.fc-envivo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: #fff;
}
.fc-score {
  font-weight: 800;
  font-size: 13px;
  color: var(--dark);
}
.fc-score-sep {
  display: inline-block;
  margin: 0 4px;
  color: #999;
  font-weight: 600;
}
.fc-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  color: #ef4444;
}
.fc-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
}

/* Card: Instagram */
.fc-ig {
  top: 330px;
  right: 0;
  width: 195px;
}
.fc-ig-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #555;
  margin-bottom: 6px;
}
.fc-ig-pct { font-weight: 700; color: var(--dark); }
.fc-ig-bar {
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
}
.fc-ig-bar span {
  display: block;
  height: 100%;
  width: 99%;
  background: linear-gradient(90deg, #f09433, #dc2743, #bc1888);
}

/* Card: Uber */
.fc-uber {
  top: 510px;
  left: 0;
  width: 195px;
}
.fc-uber-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.fc-uber-text { font-size: 12px; line-height: 1.3; color: var(--dark); }
.fc-uber-text strong { font-weight: 800; }
.fc-uber-car { flex-shrink: 0; }

/* Card: 1GB respaldo */
.fc-gb {
  top: 410px;
  right: -20px;
  width: 195px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-gb-icon { flex-shrink: 0; }
.fc-gb-body { font-size: 11px; line-height: 1.35; flex: 1; }
.fc-gb-body strong { font-weight: 800; color: var(--dark); }
.fc-gb-body span { color: #999; font-size: 10px; }
.fc-gb-check { flex-shrink: 0; }

/* Card: Tipo de cambio */
.fc-fx {
  top: 510px;
  right: 0;
  width: 195px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.fc-fx-icon {
  width: 32px;
  height: 32px;
  background: var(--magenta);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fc-fx-body { flex: 1; font-size: 11px; }
.fc-fx-row { display: flex; justify-content: space-between; align-items: center; }
.fc-fx-row strong { font-weight: 800; color: var(--dark); font-size: 11px; }
.fc-fx-rate { font-weight: 800; color: var(--dark); font-size: 13px; margin-top: 1px; }
.fc-fx-sub { color: #999; font-size: 10px; }

/* iPhone CSS Mockup */
.phone-mockup {
  display: none;
  position: absolute;
  top: 165px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.phone-frame {
  width: 155px;
  height: 320px;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 6px;
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 30px 60px rgba(0, 0, 0, .35);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #ec1f7d 0%, #c4135f 100%);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 14px 14px;
  color: #fff;
  text-align: center;
  position: relative;
}
.phone-logo { height: 18px; margin-bottom: 14px; }
.phone-text { font-size: 12px; margin-bottom: 10px; }
.phone-button { font-size: 11px; padding: 10px 14px; }
.phone-status { font-size: 10px; margin-top: 10px; }
.phone-logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.phone-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
}
.phone-heart { color: #fff; }
.phone-globe {
  margin: 6px 0 14px;
  opacity: .95;
}
.phone-button {
  background: #fff;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  letter-spacing: .3px;
  line-height: 1.1;
  margin-bottom: auto;
}
.phone-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 14px;
}
.phone-signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 10px;
}
.phone-signal span {
  width: 2px;
  background: #fff;
  border-radius: 1px;
}
.phone-signal span:nth-child(1) { height: 30%; }
.phone-signal span:nth-child(2) { height: 55%; }
.phone-signal span:nth-child(3) { height: 80%; }
.phone-signal span:nth-child(4) { height: 100%; }

/* Steps strip (bottom of hero) */
.steps-strip {
  background: linear-gradient(90deg, var(--magenta), #d4146d);
  padding: 18px 0;
  margin-top: 0;
}
.steps-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.step-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
  position: relative;
}
.step-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.step-qr {
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}
.step-qr img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.step-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.step-item span {
  display: block;
  font-size: 11px;
  opacity: .9;
}
.step-item--final strong { font-size: 12px; }
.step-item--final em { font-style: normal; color: #fff; text-decoration: none; }

/* ── COUNTDOWN BAND (separated from hero) ── */
.countdown-band {
  background: linear-gradient(180deg, #1c0f2c, #2a0f3e);
  padding: 28px 0;
  color: #fff;
}
.countdown-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.countdown-band-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fifa-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
.fifa-dates {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
}
.countdown-band-cd {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.countdown-label {
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.countdown {
  display: flex;
  gap: 10px;
}
.cd-box {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 10px 14px 8px;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.5px;
}
.cd-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  margin-top: 5px;
}

/* ── PLANES ── */
.planes {
  background: var(--gray-50);
  padding: 64px 0;
}
.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.plan-card--featured {
  border-color: var(--magenta);
  box-shadow: 0 0 0 2px rgba(229, 0, 126, 0.1), var(--shadow-sm);
}
.plan-card-header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.plan-title { font-size: 19px; }
.badge-recomendado {
  background: var(--purple);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 9px;
  border-radius: 5px;
}
.plan-price { font-size: 15px; color: var(--gray-text); }
.plan-price strong { color: var(--dark); font-size: 19px; font-weight: 800; }
.plan-desc {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* ── BENEFICIOS ── */
.beneficios {
  padding: 64px 0;
  background: #fff;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.beneficio { text-align: center; }
.beneficio-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: block;
}
.beneficio h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.beneficio p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ── PASOS ── */
.pasos {
  padding: 64px 0 144px;
  background: var(--gray-50);
}
.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.paso {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.paso-num {
  width: 36px;
  height: 36px;
  background: var(--purple);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.paso h4 { font-size: 18px; font-weight: 700; }
.paso p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 8px;
  min-height: 4.65em;
}
.paso-link {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.paso-link:hover { color: var(--magenta); }
.paso-phone {
  position: relative;
  margin: 18px auto -90px;
  width: 220px;
  height: 360px;
  background: #1f2125;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.15);
}
.paso-phone-img { display: none; }
.paso-phone-screen {
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 0;
  background: #FDF0F7;
  border-radius: 29px 29px 0 0;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.paso-screen--1 .screen-row {
  height: 16px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}
.paso-screen--1 .screen-row--esim {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.paso-screen--1 .screen-plus {
  width: 22px;
  height: 22px;
  background: var(--magenta);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.paso-screen--2 {
  align-items: center;
  justify-content: center;
  padding-bottom: 95px;
}
.paso-screen--2 .screen-check { margin-bottom: 12px; }
.paso-screen--2 .screen-check svg { width: 60px; height: 60px; }
.paso-screen--2 .screen-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--dark);
}
.paso-screen--3 {
  align-items: center;
  justify-content: center;
  padding-bottom: 95px;
}
.screen-qr {
  width: 72%;
  height: auto;
  border-radius: 6px;
}

/* ── VIAJE ── */
.viaje {
  padding: 64px 0;
  background: #fff;
}
.viaje-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.viaje-text h2 {
  font-size: 30px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.viaje-text .section-sub {
  margin-bottom: 18px;
}
.viaje-tagline {
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--dark);
}
.viaje-tagline strong { color: var(--magenta); }
.viaje-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.viaje-list li {
  font-size: 14px;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.viaje-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.viaje-bullet::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.viaje-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

/* ── TESTIMONIOS ── */
.testimonios {
  padding: 64px 0;
  background: var(--gray-50);
}
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.testimonio {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stars { display: flex; gap: 2px; }
.testimonio-title {
  font-size: 15px;
  font-weight: 700;
  margin-top: 4px;
}
.testimonio-quote {
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
}
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonio-link {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  align-self: flex-start;
  transition: color .15s;
}
.testimonio-link:hover { color: var(--magenta); text-decoration: underline; }

.ratings {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: opacity .15s;
}
a.rating:hover { opacity: 0.75; }
.rating-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
}
.rating-meta {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--dark);
  line-height: 1.3;
}
.google-logo { width: 32px; height: 32px; object-fit: contain; }
.rating-stars-row { display: inline-flex; align-items: center; gap: 2px; }

/* ── CTA BANNER (oscuro, no rosa — feedback del cliente) ── */
.cta-banner {
  position: relative;
  padding: 56px 0;
  color: #fff;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('assets/cta-bokeh.jpg') center / cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 12, 35, 0.85) 0%, rgba(89, 26, 107, 0.7) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-size: 30px;
  color: #fff;
  margin-bottom: 8px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

/* ── FAQ ── */
.faq { padding: 64px 0; background: #fff; }
.faq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.15s;
}
.faq-item[open] { background: #fff; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '＋';
  font-size: 20px;
  color: var(--gray-500);
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; color: var(--magenta); }
.faq-answer {
  padding: 0 22px 18px;
  color: var(--gray-text);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ── FOOTER (blanco, mismo logo del header) ── */
.footer {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-text);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-left { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-logo { height: 28px; width: auto; }
.footer-copy { font-size: 12px; color: var(--gray-500); }
.footer-links { display: flex; gap: 24px; font-size: 13px; }
.footer-links a { color: var(--dark); }
.footer-links a:hover { color: var(--magenta); }

/* ── MODAL ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.25s;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: background 0.15s;
}
.modal-close:hover { background: var(--gray-100); color: var(--dark); }
.modal-card h3 { font-size: 19px; margin-bottom: 4px; padding-right: 32px; }
.modal-sub { color: var(--gray-text); font-size: 13px; margin-bottom: 20px; }
.modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  color: var(--gray-text);
  font-size: 13px;
}
.modal-loading[hidden] { display: none; }
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--magenta);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-error { text-align: center; padding: 22px 0; }
.modal-error p { color: var(--gray-700); margin-bottom: 14px; font-size: 13px; }

.modal-dates {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px 14px 12px;
  margin-bottom: 16px;
  background: var(--gray-50);
}
.modal-dates-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.modal-dates-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.modal-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: var(--gray-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal-date input[type="date"] {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.modal-date input[type="date"]:focus {
  outline: none;
  border-color: var(--magenta);
}
.modal-dates-info {
  margin-top: 10px;
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
}

.variants-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.variants { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.variant {
  border: 2px solid var(--gray-200);
  border-radius: 11px;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  background: #fff;
}
.variant:hover { border-color: var(--gray-300); background: var(--gray-50); }
.variant.is-selected { border-color: var(--magenta); background: var(--magenta-soft); }
.variant.is-recommended { border-color: var(--magenta); }
.variant.is-recommended.is-selected { background: var(--magenta-soft); }
.variant-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--magenta);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.variant-plan { font-weight: 600; font-size: 14px; color: var(--dark); }
.variant-price { font-weight: 800; font-size: 15px; color: var(--magenta); font-variant-numeric: tabular-nums; }
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 14px;
}
.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  background: #fff;
}
.qty-btn:hover { background: var(--gray-100); }
.qty-controls input {
  width: 44px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  -moz-appearance: textfield;
}
.qty-controls input::-webkit-outer-spin-button,
.qty-controls input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  h1, .hero-title { font-size: 38px; }
  h2 { font-size: 26px; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .promo-bar { font-size: 11px; }

  /* Hero v2 mobile */
  .hero { padding: 24px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-title { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 14px; }
  .hero-sub br { display: none; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 16px; }
  .hero-visual { height: 460px; min-height: 460px; }
  .hero-fan { right: -20px; }
  .country-pins { top: 10px; right: 6px; gap: 6px; }
  .country-pin .flag { width: 36px; height: 36px; font-size: 20px; }
  .country-pin .cc { font-size: 9px; }
  .country-tagline { top: 92px; font-size: 10px; }
  .hero-handtag { top: 18px; left: -10px; padding: 8px 12px 10px; }
  .ht-line { font-size: 9px; }
  .ht-script { font-size: 20px; }
  .float-card { font-size: 11px; min-width: 0; padding: 8px 10px; }
  /* On mobile show only 3 cards: WhatsApp + EN VIVO + Maps */
  .fc-ig, .fc-uber, .fc-gb, .fc-fx { display: none; }
  .fc-whatsapp { width: 175px; left: -10px; top: 140px; }
  .fc-envivo { width: 145px; right: -5px; top: 140px; }
  .fc-maps { width: 165px; left: -10px; top: 305px; }
  /* Pill blanca destacada con el "3 países, UNA SOLA eSIM" debajo de las banderas */
  .country-tagline {
    top: 80px;
    right: 8px;
    background: #fff;
    color: var(--dark);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    font-size: 11px;
    letter-spacing: .2px;
  }
  .phone-mockup { top: 95px; }
  .phone-frame { width: 150px; height: 310px; }
  .phone-screen { padding: 36px 12px 14px; }
  .phone-text { font-size: 11px; }
  .phone-button { font-size: 10px; padding: 9px 12px; }

  /* Steps strip mobile */
  .steps-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .step-item strong { font-size: 12px; }
  .step-item span { font-size: 10px; }

  /* Countdown band mobile */
  .countdown-band-inner { flex-direction: column; gap: 16px; align-items: center; }
  .countdown-band-cd { align-items: center; }
  .cd-box { min-width: 64px; padding: 8px 10px 6px; }
  .cd-num { font-size: 24px; }
  .plan-cards { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pasos { padding: 48px 0 56px; }
  .pasos-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .paso {
    display: grid;
    grid-template-columns: 1fr 110px;
    grid-template-areas:
      "num    phone"
      "title  phone"
      "text   phone";
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    padding: 20px 18px;
    overflow: hidden;
  }
  .paso-num {
    grid-area: num;
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-bottom: 2px;
  }
  .paso h4 { grid-area: title; font-size: 16px; margin: 0; }
  .paso p {
    grid-area: text;
    min-height: 0;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .paso-phone {
    grid-area: phone;
    width: 100px;
    height: 160px;
    margin: 0;
    border-radius: 18px;
    box-shadow: 0 6px 14px -8px rgba(0,0,0,0.18);
    align-self: center;
  }
  .paso-phone-screen {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 14px;
    padding: 12px 10px;
    gap: 6px;
  }
  .paso-screen--1 .screen-row { height: 8px; border-radius: 3px; }
  .paso-screen--1 .screen-row--esim {
    height: 22px;
    border-radius: 6px;
    padding: 0 8px;
    font-size: 9px;
  }
  .paso-screen--1 .screen-plus {
    width: 14px;
    height: 14px;
    font-size: 10px;
  }
  .paso-screen--2,
  .paso-screen--3 { padding: 12px 10px; }
  .paso-screen--2 .screen-check svg { width: 32px; height: 32px; }
  .paso-screen--2 .screen-check { margin-bottom: 6px; }
  .paso-screen--2 .screen-text { font-size: 10px; letter-spacing: 1px; }
  .screen-qr { width: 70%; }
  .viaje-inner { grid-template-columns: 1fr; gap: 32px; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .ratings { gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 540px) {
  .countdown { gap: 8px; }
  .cd-box { min-width: 0; flex: 1; padding: 8px 6px 6px; }
  .cd-num { font-size: 20px; }
  .cd-label { font-size: 9px; letter-spacing: 1px; }
  .beneficios-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-title { font-size: 30px; }

  /* On very small screens (< 540) adjust card widths */
  .fc-ig, .fc-fx, .fc-gb, .fc-uber { display: none; }
  .fc-whatsapp { width: 160px; }
  .fc-envivo { width: 130px; }
  .fc-maps { width: 150px; }
  .hero-visual { height: 460px; min-height: 460px; }
  .steps-strip-grid { grid-template-columns: 1fr 1fr; }
}
