  /* ─── MAP ────────────────────────────────────────── */
  .map-wrap {
    position: relative; margin-top: 2.5rem;
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border);
  }
  #map {
    height: 520px; width: 100%;
    background: #e9edf2;
    border-radius: 20px;
  }
  .map-legend {
    position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 1000;
    background: rgba(6,11,20,.85); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: 10px;
    padding: .8rem 1.1rem; display: flex; flex-direction: column; gap: .5rem;
  }
  .legend-item { display: flex; align-items: center; gap: .6rem; font-size: .8rem; color: #c8d4e8; }
  .legend-dot-a { width: 12px; height: 12px; border-radius: 50%; background: #0057ff; box-shadow: 0 0 6px rgba(0,87,255,.7); flex-shrink: 0; }
  .legend-dot-s { width: 12px; height: 12px; border-radius: 50%; background: #f57c00; box-shadow: 0 0 6px rgba(245,124,0,.7); flex-shrink: 0; }
  .map-hint {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    z-index: 1000; pointer-events: none;
    background: rgba(6,11,20,.88); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: 100px;
    padding: .5rem 1.1rem; font-size: .78rem; color: #c8d4e8; white-space: nowrap;
    transition: opacity .25s;
  }
  .map-hint.oculto { opacity: 0; }
  @media (max-width: 640px) { .map-hint { display: none; } }
  .map-info-box {
    position: absolute; top: 1rem; right: 1rem; z-index: 1000;
    width: 280px; background: rgba(6,11,20,.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: 14px;
    padding: 1.2rem; max-height: 400px; overflow-y: auto;
  }
  .mib-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: .8rem;
  }
  .mib-header span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; color: var(--cyan); }
  .mib-header button { background: none; border: none; color: var(--mid); cursor: pointer; font-size: 1rem; }
  .mib-barrios { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
  .mib-barrios span {
    background: rgba(0,87,255,.15); border: 1px solid rgba(0,87,255,.3);
    color: #c8d4e8; font-size: .72rem; padding: .25rem .6rem; border-radius: 100px;
  }
  .mib-btn {
    display: block; text-align: center; background: var(--blue);
    color: #fff; padding: .6rem; border-radius: 8px;
    text-decoration: none; font-size: .85rem; font-weight: 600;
    transition: background .2s;
  }
  .mib-btn:hover { background: #0048d6; }
  @media(max-width:600px) {
    #map { height: 380px; }
    .map-info-box { width: calc(100% - 2rem); top: auto; bottom: 1rem; right: 1rem; left: 1rem; }
  }

  /* Fallback if Google Fonts fails */
  @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --ink: #060b14;
    --paper: #f4f6fa;
    --blue: #0057ff;
    --cyan: #00d4ff;
    --glow: rgba(0,87,255,0.35);
    --mid: #8a9ab5;
    --surface: #0c1524;
    --card: #101e33;
    --border: rgba(0,212,255,0.18);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--paper);
    overflow-x: hidden;
  }

  /* ─── NOISE OVERLAY ─────────────────────────────── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; opacity: 0.4;
  }

  .nav-logo-icon { height: 36px; width: auto; display: block; }
  .nav-logo-text {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.35rem;
    letter-spacing: -.02em; color: #fff; margin-left: .5rem;
  }
  .logo-img-link { display: flex; align-items: center; text-decoration: none; gap: .1rem; }
  .footer-logo-img { height: 56px; width: auto; display: block; margin-bottom: .6rem; filter: brightness(1.1); }

  /* Hero icon */
  .hero-icon-wrap {
    margin-bottom: 1.6rem;
  }
  .hero-icon {
    width: clamp(80px, 12vw, 130px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0,87,255,.5)) drop-shadow(0 0 60px rgba(0,212,255,.2));
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ─── NAV ────────────────────────────────────────── */
  nav {
    position: relative;
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 5vw;
    background: rgba(6,11,20,0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 1.45rem; letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fff 40%, var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-decoration: none;
  }

  .logo span { color: var(--cyan); -webkit-text-fill-color: var(--cyan); }

  nav ul { list-style: none; display: flex; gap: 2.2rem; }
  nav a { color: var(--mid); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
  nav a:hover { color: #fff; }

  .nav-cta {
    background: var(--blue); color: #fff !important;
    padding: .45rem 1.2rem; border-radius: 6px;
    font-weight: 600 !important; font-size: .85rem !important;
    transition: background .2s, box-shadow .2s !important;
  }
  .nav-cta:hover { background: #0048d6 !important; box-shadow: 0 0 22px var(--glow); }

  /* ─── HERO CANVAS ────────────────────────────────── */
  #heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
  }

  /* ─── DIA DEL PADRE VIDEO BG ─────────────────────── */
  #papa-video-wrap {
    position: absolute; inset: 0;
    overflow: hidden; z-index: 0;
    display: flex; align-items: center; justify-content: center;
  }
  #papa-video {
    width: 100%; height: 100%;
    object-fit: contain;
    opacity: 0.85;
  }
  #papa-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,11,20,.35) 0%, rgba(6,11,20,.55) 55%, rgba(6,11,20,.85) 100%);
  }

  /* ─── HERO ───────────────────────────────────────── */
  #hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 8rem 5vw 5rem;
    overflow: hidden;
  }

  /* Grid lines background */
  #hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,87,255,.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,87,255,.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  }

  .hero-orb {
    position: absolute; top: -10%; right: -5%;
    width: 680px; height: 680px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,87,255,.28) 0%, rgba(0,212,255,.08) 50%, transparent 70%);
    filter: blur(40px); animation: pulse 6s ease-in-out infinite;
  }
  .hero-orb2 {
    position: absolute; bottom: -20%; left: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
    filter: blur(60px); animation: pulse 8s ease-in-out infinite reverse;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1) translateY(0); opacity: 1; }
    50% { transform: scale(1.08) translateY(-20px); opacity: .8; }
  }

  .hero-content { position: relative; z-index: 1; max-width: 720px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(0,87,255,.15); border: 1px solid rgba(0,87,255,.4);
    color: var(--cyan); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.8rem;
  }

  .hero-badge::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
    animation: blink 1.4s ease-in-out infinite;
  }

  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -.03em;
  }

  h1 em { font-style: normal; color: var(--cyan); }

  .hero-sub {
    margin-top: 1.4rem; font-size: 1.1rem; color: var(--mid);
    line-height: 1.7; max-width: 520px; font-weight: 300;
  }

  .hero-actions {
    display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--blue); color: #fff;
    padding: .85rem 2rem; border-radius: 8px;
    font-weight: 600; font-size: .95rem; text-decoration: none;
    box-shadow: 0 0 30px var(--glow);
    transition: transform .2s, box-shadow .2s;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px var(--glow); }

  .btn-pse {
    background: transparent;
    padding: 0; border: none;
    text-decoration: none; display: inline-flex;
    align-items: center; justify-content: center;
    transition: transform .2s, filter .2s;
  }
  .btn-pse:hover { transform: translateY(-2px); filter: brightness(1.1); }
  .pse-img { height: 52px; width: auto; display: block; }
  .nav-pse-btn {
    display: inline-flex; align-items: center;
    background: transparent; padding: 0;
    text-decoration: none; transition: filter .2s;
  }
  .nav-pse-btn:hover { filter: brightness(1.15); }
  .pse-img-nav { height: 30px; width: auto; display: block; }

  .btn-outline {
    border: 1px solid var(--border); color: var(--paper);
    padding: .85rem 2rem; border-radius: 8px;
    font-weight: 500; font-size: .95rem; text-decoration: none;
    transition: border-color .2s, background .2s;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .btn-outline:hover { border-color: var(--cyan); background: rgba(0,212,255,.05); }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
  }

  .stat { }
  .stat-num {
    font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .stat-label { font-size: .8rem; color: var(--mid); text-transform: uppercase; letter-spacing: .07em; margin-top: .2rem; }

  /* Fiber animation */
  .fiber-visual {
    position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
    width: 400px; height: 400px; z-index: 1;
    display: none;
  }
  @media(min-width:1100px) { .fiber-visual { display: block; } }

  .fiber-visual svg { width: 100%; height: 100%; }

  /* ─── SECTION BASE ───────────────────────────────── */
  section { position: relative; padding: 6rem 5vw; }
  .section-tag {
    font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: .8rem;
  }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700; line-height: 1.15; letter-spacing: -.02em;
    margin-bottom: 1rem;
  }
  .section-sub { color: var(--mid); font-size: 1rem; line-height: 1.7; max-width: 540px; }

  /* ─── PLANS ──────────────────────────────────────── */
  #planes { background: var(--surface); }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }

  .plan-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    position: relative; overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    cursor: default;
  }

  .plan-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0; transition: opacity .3s;
  }

  .plan-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,.4); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
  .plan-card:hover::before { opacity: 1; }

  .plan-card.featured {
    border-color: var(--blue);
    background: linear-gradient(135deg, #0e1f3d, #0c1524);
    box-shadow: 0 0 40px rgba(0,87,255,.2);
  }
  .plan-card.featured::before { opacity: 1; }

  .plan-badge {
    display: inline-block; background: var(--blue);
    color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; padding: .25rem .7rem; border-radius: 100px;
    margin-bottom: 1rem;
  }

  .plan-speed {
    font-family: 'Syne', sans-serif;
    font-size: 3rem; font-weight: 800; line-height: 1;
    color: #fff;
  }
  .plan-speed span { font-size: 1rem; font-weight: 400; color: var(--mid); }

  .plan-name { font-size: .85rem; color: var(--mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.5rem; }

  .plan-price {
    font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700;
    color: var(--cyan); margin-bottom: 1.5rem;
  }
  .plan-price small { font-size: .75rem; color: var(--mid); font-weight: 400; font-family: 'DM Sans', sans-serif; }

  .plan-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
  .plan-features li {
    font-size: .88rem; color: #c8d4e8;
    display: flex; align-items: center; gap: .6rem;
  }
  .plan-features li::before {
    content: '✓'; color: var(--cyan); font-weight: 700; font-size: .85rem; flex-shrink: 0;
  }

  .plan-btn {
    display: block; text-align: center;
    background: transparent; border: 1px solid var(--border);
    color: var(--paper); padding: .7rem; border-radius: 8px;
    font-weight: 600; font-size: .9rem; text-decoration: none;
    transition: all .2s;
  }
  .plan-btn:hover, .plan-card.featured .plan-btn {
    background: var(--blue); border-color: var(--blue);
    box-shadow: 0 0 20px var(--glow);
  }

  .plan-section-header {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    color: #fff; margin: 3rem 0 1.5rem;
    padding: .8rem 1.2rem;
    background: rgba(0,87,255,.15);
    border-left: 3px solid var(--cyan);
    border-radius: 0 8px 8px 0;
  }

  /* ─── COVERAGE ───────────────────────────────────── */
  #cobertura { }

  .coverage-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    margin-top: 3rem;
  }
  @media(max-width:768px) { .coverage-inner { grid-template-columns: 1fr; } }

  .map-container {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
  }

  .map-container svg { width: 100%; height: 100%; }

  /* Animated coverage zones */
  .coverage-zone { animation: ripple 3s ease-out infinite; }
  .coverage-zone:nth-child(2) { animation-delay: 1s; }
  .coverage-zone:nth-child(3) { animation-delay: 2s; }

  @keyframes ripple {
    0% { opacity: .6; r: 20; }
    100% { opacity: 0; r: 80; }
  }

  .coverage-list { display: flex; flex-direction: column; gap: 1.2rem; }

  .zone-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; transition: border-color .2s;
  }
  .zone-item:hover { border-color: rgba(0,212,255,.35); }

  .zone-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
    flex-shrink: 0; margin-top: 4px;
  }
  .zone-dot.active { background: #00ff88; box-shadow: 0 0 10px #00ff88; }
  .zone-dot.soon { background: #ffaa00; box-shadow: 0 0 10px #ffaa00; }

  .zone-name { font-weight: 600; font-size: .95rem; }
  .zone-status { font-size: .78rem; color: var(--mid); margin-top: .2rem; }

  /* ─── WHY ────────────────────────────────────────── */
  #ventajas { background: var(--surface); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }

  .feature-card {
    padding: 2rem 1.6rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; transition: transform .25s, border-color .25s;
  }
  .feature-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.3); }

  .feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(0,87,255,.15); border: 1px solid rgba(0,87,255,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.2rem;
  }

  .feature-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
  .feature-text { font-size: .88rem; color: var(--mid); line-height: 1.6; }

  /* ─── CONTACT ────────────────────────────────────── */
  #contacto { }

  .contact-inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
    margin-top: 3rem;
  }
  @media(max-width:768px) { .contact-inner { grid-template-columns: 1fr; } }

  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

  .contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.3rem; background: var(--card);
    border: 1px solid var(--border); border-radius: 12px;
  }

  .contact-item-icon {
    font-size: 1.3rem; width: 44px; height: 44px;
    background: rgba(0,87,255,.15); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  .contact-item h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--mid); margin-bottom: .3rem; }
  .contact-item p { font-size: .95rem; font-weight: 500; }

  .contact-form {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; padding: 2.5rem;
  }

  .form-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }

  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--mid); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; background: var(--surface);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--paper); font-family: 'DM Sans', sans-serif;
    font-size: .95rem; padding: .75rem 1rem;
    transition: border-color .2s, box-shadow .2s; outline: none;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,255,.2);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .submit-btn {
    width: 100% !important; background: var(--blue) !important; color: #fff !important;
    border: none !important; padding: .9rem !important; border-radius: 8px !important;
    font-family: 'DM Sans', sans-serif !important; font-size: 1rem !important; font-weight: 600 !important;
    cursor: pointer !important; transition: background .2s, box-shadow .2s;
    display: flex !important; align-items: center !important; justify-content: center !important; gap: .5rem !important;
    margin-top: .5rem !important; min-height: 48px !important;
    visibility: visible !important; opacity: 1 !important;
  }
  .submit-btn:hover { background: #0048d6 !important; box-shadow: 0 0 30px var(--glow); }

  /* ─── PORTAL CTA ─────────────────────────────────── */
  #portal {
    background: linear-gradient(135deg, #0b1a35, #060b14);
    border-top: 1px solid var(--border);
    text-align: center; padding: 6rem 5vw;
  }

  .portal-card {
    max-width: 700px; margin: 0 auto;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 24px; padding: 3.5rem;
    position: relative; overflow: hidden;
  }

  .portal-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top, rgba(0,87,255,.12), transparent 60%);
  }

  .portal-card > * { position: relative; z-index: 1; }

  .portal-title { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
  .portal-sub { color: var(--mid); font-size: 1rem; margin-bottom: 2rem; line-height: 1.6; }

  .portal-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  .portal-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.8rem; border-radius: 8px;
    font-weight: 600; text-decoration: none; font-size: .95rem;
    transition: transform .2s, box-shadow .2s;
  }
  .portal-btn:hover { transform: translateY(-2px); }
  .portal-btn.main { background: var(--blue); color: #fff; box-shadow: 0 0 25px var(--glow); }
  .portal-btn.main:hover { box-shadow: 0 0 45px var(--glow); }
  .portal-btn.pse { background: #003087; color: #fff; }
  .portal-btn.pse:hover { background: #002060; }
  .portal-btn.whatsapp { background: #128C7E; color: #fff; }
  .portal-btn.whatsapp:hover { background: #075E54; }

  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    background: #030609;
    border-top: 1px solid var(--border);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem; padding: 4rem 5vw 3rem;
  }
  @media(max-width:900px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media(max-width:500px) {
    .footer-top { grid-template-columns: 1fr; }
  }

  .footer-social { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
  .social-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    color: var(--mid); text-decoration: none; font-size: .8rem;
    transition: color .2s;
  }
  .social-btn:hover { color: var(--cyan); }
  .social-btn svg { flex-shrink: 0; }
  .social-btn:nth-child(1):hover { color: #e1306c; }
  .social-btn:nth-child(2):hover { color: #1877f2; }

  .footer-brand {}
  .footer-logo {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem;
    background: linear-gradient(90deg, #fff 40%, var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: .6rem;
  }
  .footer-tagline { font-size: .82rem; color: var(--mid); line-height: 1.6; margin-bottom: 1rem; }
  .footer-meta { display: flex; flex-direction: column; gap: .3rem; }
  .footer-meta span { font-size: .72rem; color: #4a5568; }

  .footer-col { display: flex; flex-direction: column; gap: .6rem; }
  .footer-col-title {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: .75rem;
    text-transform: uppercase; letter-spacing: .1em; color: var(--paper);
    margin-bottom: .4rem;
  }
  .footer-col a {
    font-size: .82rem; color: var(--mid); text-decoration: none;
    transition: color .2s; line-height: 1.5;
  }
  .footer-col a:hover { color: var(--cyan); }

  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    padding: 1.5rem 5vw;
    border-top: 1px solid rgba(255,255,255,.05);
  }
  footer .footer-bottom p { font-size: .78rem; color: #4a5568; }

  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { font-size: .78rem; color: var(--mid); text-decoration: none; transition: color .2s; }
  .footer-links a:hover { color: var(--cyan); }

  /* ─── RESPONSIVE NAV ─────────────────────────────── */
  @media(max-width:768px) {
    /* El menu pasa a desplegarse con el boton hamburguesa */
    nav ul {
      display: none; position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0; padding: .5rem 5vw 1.2rem;
      background: rgba(6,11,20,.98); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    nav ul.abierto { display: flex; }
    nav ul li { width: 100%; }
    nav ul li a { display: block; padding: .85rem 0; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.06); }
    nav ul li:last-child a { border-bottom: none; }
    .nav-hamburguesa { display: flex; }
    .hero-stats { gap: 1.5rem; }
    .plans-grid { grid-template-columns: 1fr; }
  }

  /* ─── PLAN TABS ──────────────────────────────────── */
  .ptab-nav {
    display: flex; flex-wrap: wrap; gap: .6rem; margin: 2rem 0 2.5rem;
  }
  .ptab-btn {
    background: var(--card); border: 1px solid var(--border);
    color: var(--mid); font-family: 'DM Sans', sans-serif;
    font-size: .88rem; font-weight: 500; padding: .6rem 1.3rem;
    border-radius: 100px; cursor: pointer; transition: all .2s;
  }
  .ptab-btn:hover { color: #fff; border-color: rgba(0,212,255,.4); }
  .ptab-btn.active {
    background: rgba(0,87,255,.2); border-color: var(--blue);
    color: #fff; font-weight: 600;
  }


  /* Price block inside cards */
  .plan-price-block { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
  .price-row { display: flex; justify-content: space-between; align-items: baseline; gap:.5rem; flex-wrap:wrap; }
  .price-label { font-size: .78rem; color: var(--mid); }
  .price-label small { font-size: .72rem; }
  .price-val { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; white-space: nowrap; }
  .price-val small { font-size: .7rem; font-weight: 400; color: var(--mid); font-family: 'DM Sans', sans-serif; }
  .price-val.cyan { color: var(--cyan); }
  .featured-price { padding: .5rem .7rem; background: rgba(0,212,255,.07); border-radius: 8px; border: 1px solid rgba(0,212,255,.15); }

  /* Plan note */
  .plan-note {
    margin-top: 1.5rem; padding: 1rem 1.4rem;
    background: rgba(255,170,0,.06); border: 1px solid rgba(255,170,0,.2);
    border-radius: 10px; font-size: .78rem; color: #c8a84b; line-height: 1.6;
  }

  

  /* ─── ZONE TABS ──────────────────────────────────── */
  .ztab-nav {
    display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem;
  }
  .ztab-btn {
    background: var(--card); border: 1px solid var(--border);
    color: var(--mid); font-family: 'DM Sans', sans-serif;
    font-size: .8rem; font-weight: 500; padding: .45rem 1rem;
    border-radius: 100px; cursor: pointer; transition: all .2s;
  }
  .ztab-btn:hover { color: #fff; border-color: rgba(0,212,255,.4); }
  .ztab-btn.active {
    background: rgba(0,87,255,.2); border-color: var(--blue);
    color: var(--cyan); font-weight: 600;
  }
  .ztab-panel { display: block; margin-bottom: 1rem; }
  .zone-panel-inner {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.6rem;
  }
  .zone-panel-header {
    display: flex; align-items: flex-start; gap: .8rem; margin-bottom: 1.2rem;
  }
  .zone-barrios {
    display: flex; flex-wrap: wrap; gap: .5rem;
  }
  .zone-barrios span {
    background: rgba(0,87,255,.1); border: 1px solid rgba(0,87,255,.25);
    color: #c8d4e8; font-size: .78rem; padding: .3rem .75rem;
    border-radius: 100px; white-space: nowrap;
  }


  .reveal { opacity: 1; transition: opacity .7s ease, transform .7s ease; }
  .reveal, .reveal.visible { opacity: 1; transform: translateY(0); }

  #intro-screen {
    position: fixed; inset: 0; z-index: 9999;
    background: #020810;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    transition: opacity .6s ease, transform .6s ease;
    pointer-events: all;
  }
  #intro-screen.hide {
    opacity: 0; transform: scale(1.04); pointer-events: none;
  }

  /* Background particle lines */
  .intro-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0,87,255,.15) 0%, transparent 70%);
  }

  .intro-lines {
    position: absolute; inset: 0; overflow: hidden;
  }
  .iline {
    position: absolute; height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    width: 60%; left: 20%; opacity: 0;
    animation: lineFly 3s ease-in-out infinite;
  }
  .iline:nth-child(1) { top: 20%; animation-delay: 0s; }
  .iline:nth-child(2) { top: 35%; animation-delay: .4s; width: 40%; left: 30%; }
  .iline:nth-child(3) { top: 50%; animation-delay: .8s; width: 70%; left: 15%; }
  .iline:nth-child(4) { top: 65%; animation-delay: 1.2s; width: 50%; left: 25%; }
  .iline:nth-child(5) { top: 80%; animation-delay: 1.6s; width: 35%; left: 32%; }

  @keyframes lineFly {
    0% { opacity: 0; transform: translateX(-30px); }
    30% { opacity: .6; }
    70% { opacity: .4; }
    100% { opacity: 0; transform: translateX(30px); }
  }

  .intro-content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: center; gap: 1.5rem;
    text-align: center;
  }

  .intro-logo {
    width: 110px; height: auto;
    filter: drop-shadow(0 0 40px rgba(0,87,255,.7)) drop-shadow(0 0 80px rgba(0,212,255,.3));
    animation: introFloat 2s ease-in-out infinite;
  }
  @keyframes introFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.03); }
  }

  .intro-text {
    display: flex; flex-direction: column; gap: .4rem;
  }
  .intro-pre {
    font-family: 'DM Sans', sans-serif; font-size: .85rem;
    color: var(--cyan); letter-spacing: .2em; text-transform: uppercase;
    font-weight: 500;
  }
  .intro-main {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 800; line-height: 1.1;
    color: #fff; letter-spacing: -.03em;
  }
  .intro-main em {
    font-style: normal;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .intro-sub {
    font-family: 'DM Sans', sans-serif; font-size: .85rem;
    color: var(--mid); letter-spacing: .1em; margin-top: .3rem;
  }

  .intro-bar-wrap {
    width: 280px; height: 3px; background: rgba(255,255,255,.08);
    border-radius: 100px; overflow: hidden; margin-top: .5rem;
  }
  .intro-bar {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 100px;
    box-shadow: 0 0 12px var(--cyan);
    transition: width .05s linear;
  }
  .intro-pct {
    font-family: 'Syne', sans-serif; font-size: .85rem;
    font-weight: 700; color: var(--cyan); letter-spacing: .05em;
  }

  .float-chat { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; }

  .float-chat-btn {
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,.5);
    transition: transform .2s, box-shadow .2s; position: relative;
  }
  .float-chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,.7); }

  .float-pulse {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid rgba(37,211,102,.5);
    animation: fpulse 2s ease-out infinite;
  }
  @keyframes fpulse {
    0% { transform: scale(1); opacity: .8; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  .float-panel {
    position: absolute; bottom: 76px; right: 0;
    width: 300px; background: #0c1524;
    border: 1px solid rgba(0,212,255,.2); border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    overflow: hidden;
    transform: scale(0.85) translateY(20px); opacity: 0;
    pointer-events: none;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), opacity .2s;
    transform-origin: bottom right;
  }
  .float-panel.open {
    transform: scale(1) translateY(0); opacity: 1; pointer-events: all;
  }

  .fp-header {
    background: #25D366; padding: 1rem 1.1rem;
    display: flex; align-items: center; gap: .8rem;
  }
  .fp-avatar { font-size: 1.8rem; line-height: 1; }
  .fp-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; color: #fff; }
  .fp-status { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: rgba(255,255,255,.85); margin-top: .1rem; }
  .fp-dot { width: 7px; height: 7px; border-radius: 50%; background: #4eff91; box-shadow: 0 0 6px #4eff91; }
  .fp-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.7); font-size: 1rem; cursor: pointer; padding: .2rem; }
  .fp-close:hover { color: #fff; }

  .fp-body { padding: 1.2rem; display: flex; flex-direction: column; gap: .8rem; }
  .fp-bubble {
    background: #101e33; border: 1px solid rgba(0,212,255,.12);
    border-radius: 12px 12px 12px 4px;
    padding: .9rem 1rem; font-size: .85rem; color: #c8d4e8; line-height: 1.55;
  }
  .fp-bubble-sub { font-size: .78rem; color: #8a9ab5; background: transparent; border: none; padding: 0 0 0 .2rem; }

  .fp-footer { padding: .8rem 1.2rem 1.2rem; }
  .fp-whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    background: #25D366; color: #fff; border-radius: 10px;
    padding: .75rem; font-weight: 600; font-size: .9rem;
    text-decoration: none; transition: background .2s;
  }
  .fp-whatsapp-btn:hover { background: #1da851; }

/* Item activo del menu de navegacion */
nav ul li a.activo { color: var(--cyan); }
nav ul li a.activo::after { width: 100%; }


/* Visita repetida: la pantalla de bienvenida no se muestra */
html.sin-intro #intro-screen { display: none !important; }


/* ─── Boton hamburguesa (solo en pantallas pequenas) ── */
.nav-hamburguesa {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 9px; border-radius: 10px;
  transition: background .2s;
}
.nav-hamburguesa:hover { background: rgba(255,255,255,.06); }
.nav-hamburguesa span {
  display: block; height: 2px; width: 100%; background: #c8d4e8;
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.nav-hamburguesa.abierta span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburguesa.abierta span:nth-child(2) { opacity: 0; }
.nav-hamburguesa.abierta span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── PRÓXIMAMENTE: streaming ──────────────────────── */
#proximamente { position: relative; overflow: hidden; }
.prox-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,87,255,.18), transparent 65%);
}
.prox-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,107,0,.12); border: 1px solid rgba(255,107,0,.4);
  color: #ff9d4d; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.prox-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #ff6b00;
  box-shadow: 0 0 0 0 rgba(255,107,0,.7); animation: prox-latido 2s infinite;
}
@keyframes prox-latido {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,0,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}

.prox-marcas {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem; margin: 2.5rem 0; position: relative;
}
.prox-marca {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.8rem 1.5rem; text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.prox-marca::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--marca); opacity: .8;
}
.prox-marca:hover {
  transform: translateY(-6px); border-color: var(--marca);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}
.prox-logo {
  height: 62px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.prox-logo img { max-height: 100%; max-width: 170px; object-fit: contain; }
.prox-wordmark {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem;
  letter-spacing: -.02em; color: #fff; line-height: 1;
}
.prox-wordmark b { color: var(--marca); }
.prox-nombre {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
  color: #fff; margin-bottom: .4rem;
}
.prox-desc { font-size: .82rem; color: var(--mid); line-height: 1.6; }

.prox-form-wrap {
  max-width: 760px; margin: 0 auto; position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.2rem 2rem;
}
.prox-form-titulo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem;
  color: #fff; text-align: center;
}
.prox-form-sub {
  font-size: .85rem; color: var(--mid); text-align: center; margin: .4rem 0 1.5rem;
}
.prox-campos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .8rem; margin-bottom: 1.2rem;
}
.prox-campos input {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  padding: .8rem 1rem; color: var(--paper); font-family: inherit; font-size: .9rem;
  transition: border-color .2s;
}
.prox-campos input::placeholder { color: #63718c; }
.prox-campos input:focus { outline: none; border-color: var(--cyan); }

.prox-intereses {
  display: flex; align-items: center; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 1.4rem;
}
.prox-intereses-tit { font-size: .82rem; color: var(--mid); margin-right: .2rem; }
.prox-chk {
  display: inline-flex; align-items: center; gap: .45rem; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: .4rem .9rem; font-size: .82rem; color: #c8d4e8;
  transition: border-color .2s, background .2s;
}
.prox-chk:hover { border-color: rgba(0,212,255,.4); }
.prox-chk input { accent-color: #0057ff; cursor: pointer; }
.prox-chk:has(input:checked) { background: rgba(0,87,255,.14); border-color: rgba(0,87,255,.5); color: #fff; }

.prox-btn {
  width: 100%; background: linear-gradient(90deg, #0057ff, #00a2ff);
  color: #fff; border: none; border-radius: 12px; padding: .95rem;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: filter .2s, transform .15s;
}
.prox-btn:hover:not(:disabled) { filter: brightness(1.12); transform: translateY(-2px); }
.prox-btn:disabled { opacity: .75; cursor: default; }
.prox-legal {
  font-size: .72rem; color: #63718c; text-align: center;
  margin-top: 1rem; line-height: 1.6;
}
.prox-legal a { color: var(--mid); }

@media (max-width: 640px) {
  .prox-form-wrap { padding: 1.6rem 1.2rem; }
  .prox-intereses { gap: .5rem; }
}

/* el boton solo existe en pantallas pequenas */
@media(max-width:768px) {
  .nav-hamburguesa { display: flex; }
}

/* ─── PAGOS: consulta y pago de facturas ───────────── */
.pg-panel {
  max-width: 620px; margin: 2.5rem auto 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem 1.9rem;
}
.pg-ayuda { font-size: .76rem; color: #63718c; margin: -.7rem 0 1.2rem; }
.pg-btn-ancho { width: 100%; justify-content: center; }

.pg-aviso {
  margin-top: 1rem; padding: .8rem 1rem; border-radius: 10px;
  font-size: .86rem; text-align: center;
  background: rgba(255,80,80,.1); border: 1px solid rgba(255,80,80,.32); color: #ff8a8a;
}

/* Saldo */
.pg-saldo {
  text-align: center; padding: 1.4rem 1rem 1.6rem;
  border-bottom: 1px solid var(--border); margin-bottom: 1.2rem;
}
.pg-saldo-rotulo {
  display: block; font-size: .78rem; color: var(--mid);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem;
}
.pg-saldo-valor {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 6vw, 2.8rem); color: #fff; line-height: 1;
}

/* Facturas */
.pg-facturas { display: flex; flex-direction: column; gap: .7rem; }
.pg-factura {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: .9rem 1.1rem; flex-wrap: wrap;
}
.pg-factura-info { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.pg-factura-num {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem; color: #fff;
}
.pg-factura-sub { font-size: .76rem; color: var(--mid); }
.pg-pill-vencida {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .64rem;
  text-transform: uppercase; letter-spacing: .06em;
  background: rgba(255,80,80,.14); border: 1px solid rgba(255,80,80,.36);
  color: #ff8a8a; border-radius: 100px; padding: .12rem .5rem;
}
.pg-factura-lado { display: flex; align-items: center; gap: .9rem; margin-left: auto; }
.pg-factura-monto {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; white-space: nowrap;
}
.pg-pagar {
  background: var(--blue); color: #fff; text-decoration: none;
  border-radius: 100px; padding: .5rem 1.3rem;
  font-size: .84rem; font-weight: 600; white-space: nowrap; transition: filter .2s;
}
.pg-pagar:hover { filter: brightness(1.15); }
.pg-pagar-wa { background: #25D366; font-size: .78rem; padding: .5rem 1rem; }

.pg-nota {
  font-size: .76rem; color: #63718c; line-height: 1.6;
  text-align: center; margin-top: 1.2rem;
}
.pg-volver {
  display: block; width: 100%; margin-top: 1rem;
  background: none; border: none; color: var(--mid);
  font-family: inherit; font-size: .82rem; cursor: pointer; transition: color .2s;
}
.pg-volver:hover { color: var(--cyan); }

/* Sin saldo */
.pg-alDia { text-align: center; padding: 1rem .5rem; }
.pg-alDia-icono {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  background: rgba(10,138,85,.14); border: 1px solid rgba(10,138,85,.4);
  color: #4eff91; font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
}
.pg-alDia-titulo {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: .5rem;
}
.pg-alDia-texto { font-size: .86rem; color: var(--mid); line-height: 1.6; margin-bottom: 1.3rem; }
.pg-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff; text-decoration: none;
  border-radius: 100px; padding: .65rem 1.4rem; font-size: .86rem; font-weight: 600;
  transition: filter .2s;
}
.pg-wa:hover { filter: brightness(1.1); }

/* Accesos alternos */
.pg-alternos {
  max-width: 620px; margin: 1.6rem auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem;
}
.pg-alterno {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.1rem 1.2rem; text-decoration: none;
  display: flex; flex-direction: column; gap: .3rem;
  transition: border-color .2s, transform .2s;
}
.pg-alterno:hover { border-color: rgba(0,212,255,.4); transform: translateY(-3px); }
.pg-alterno-tit { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .88rem; color: #fff; }
.pg-alterno-sub { font-size: .76rem; color: var(--mid); line-height: 1.5; }

@media (max-width: 640px) {
  .pg-panel { padding: 1.5rem 1.2rem; }
  .pg-factura { align-items: flex-start; }
  .pg-factura-lado { width: 100%; justify-content: space-between; margin-left: 0; margin-top: .4rem; }
  .pg-alternos { grid-template-columns: 1fr; }
}


/* ─── PAGOS: proporciones propias ───────────────────
   Es una página de trámite, no una de venta: menos aire,
   títulos más discretos y todo centrado en una columna. */
#pagos { padding-top: 3.5rem; padding-bottom: 4rem; }
#pagos > .reveal { max-width: 620px; margin: 0 auto; text-align: center; }
#pagos .section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  margin-bottom: .6rem;
}
#pagos .section-sub {
  font-size: .92rem; max-width: 460px; margin: 0 auto;
}
#pagos .section-tag { margin-bottom: .7rem; }

.pg-panel { margin-top: 1.8rem; padding: 1.7rem 1.6rem; }
.pg-panel .form-group { margin-bottom: .8rem; }
.pg-panel .form-group label {
  font-size: .72rem; letter-spacing: .05em; margin-bottom: .4rem;
}
.pg-panel .form-group input { padding: .85rem 1rem; font-size: .95rem; }
.pg-ayuda { margin: 0 0 1.1rem; }
.pg-btn-ancho { padding: .85rem; font-size: .9rem; }

.pg-alternos { margin-top: 1.1rem; gap: .8rem; }
.pg-alterno { padding: .95rem 1.1rem; }
.pg-alterno-tit { font-size: .84rem; }
.pg-alterno-sub { font-size: .74rem; }

@media (max-width: 640px) {
  #pagos { padding-top: 2.5rem; }
  .pg-panel { padding: 1.3rem 1.1rem; }
}


/* ─── Quien pidio menos movimiento, que tenga menos movimiento ───
   Ajuste del sistema operativo. Importa para personas con vertigo,
   migrana vestibular o epilepsia fotosensible: las animaciones del
   hero, el intro y las tarjetas pueden provocarles malestar real.
   No se anulan del todo (eso rompe transiciones que dan contexto),
   se reducen a algo casi instantaneo. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ─── AVISO DEL MES ────────────────────────────────
   Es la pieza gráfica de la campaña. Va arriba del todo porque a estas
   páginas llega tráfico pago: la oferta se ve antes de cualquier scroll.

   El menú es position:fixed y está fuera del flujo, así que sin el margen
   superior el aviso queda DEBAJO de él. app.js afina el valor con la
   altura real del menú. */
.aviso-mes {
  margin-top: 72px;
  display: block;
  line-height: 0;                  /* sin el hueco que deja el inline */
  background: #061627;             /* mientras carga, del color de la pieza */
}
.aviso-mes img {
  width: 100%; height: auto; display: block;
}
@media (max-width: 768px) {
  .aviso-mes { margin-top: 78px; }
}
