/* ===========================================================
   Global Net — hoja de estilos
   Separada de globalnet_3.html. Organizada por secciones para
   facilitar la futura migración a componentes Svelte.
   =========================================================== */

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

:root {
  /* Colores de marca (fijos en ambos temas) */
  --navy:   #0a1628;
  --blue:   #0d3b8c;
  --sky:    #1a6ee8;
  --ice:    #e8f1ff;
  --white:  #ffffff;
  --gray:   #6b7a99;
  --light:  #f4f7fe;
  --accent: #00d4ff;
  --orange: #ff7a2c;   /* acento cálido para resaltar (complementario del cyan) */
  --radius: 16px;

  /* Tokens semánticos de superficie/texto (las secciones claras los usan) */
  --bg:          var(--white);   /* fondo de página y secciones "blancas" */
  --surface:     var(--white);   /* tarjetas */
  --surface-alt: var(--light);   /* secciones con fondo claro alterno */
  --chip:        var(--ice);     /* badges / chips claros */
  --text:        var(--navy);    /* texto principal */
  --text-muted:  var(--gray);    /* texto secundario */
  --border:      rgba(13,59,140,0.1);  /* bordes de tarjetas */
  --border-soft: var(--ice);     /* divisores internos */
  --num:         var(--blue);    /* números grandes destacados */
  --input-bg:    var(--white);   /* fondo de campos de formulario */
  --orange-ink:  #d65a00;        /* texto naranja legible sobre fondo claro */
  color-scheme: light;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); }

/* ── UTILIDADES ── */
.container { max-width: 1200px; margin: 0 auto; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,38,68,0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex; align-items: stretch;
  padding: 0 5vw; height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
/* alinea el contenido del nav con el .container (mismo max-width y márgenes) */
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo .dot { color: var(--accent); }
.logo-text { font-family: 'Roboto', sans-serif; font-weight: 200; font-size: 1.7rem; line-height: 1; letter-spacing: .5px; }
.logo-accent { color: var(--accent); }
/* el globo tiene su masa visual en el 70% superior del PNG; lo bajamos
   ~13% de su alto para centrarlo ópticamente con el texto */
.logo-img { display: block; height: 48px; width: auto; transform: translateY(13%); }
.logo-footer { height: 52px; margin-bottom: 14px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: .88rem; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── MENÚ CON SUBMENÚS ── */
.nav-links { align-self: stretch; align-items: center; margin-left: 40px; gap: 8px; }
.has-submenu { position: relative; display: flex; align-items: center; height: 100%; }
.nav-parent {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px 16px; border-radius: 100px;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,0.8); transition: color .2s, background .2s;
}
.nav-parent:hover,
.has-submenu:hover .nav-parent,
.has-submenu:focus-within .nav-parent { color: var(--accent); background: rgba(255,255,255,0.08); }
.nav-parent .caret { font-size: .65rem; transition: transform .2s; }
.has-submenu:hover .caret,
.has-submenu:focus-within .caret { transform: rotate(180deg); }
.submenu {
  /* padding interno (6) + padding del link (10) = 16 = padding-left del pill,
     así el texto de los ítems se alinea bajo el texto del menú principal */
  list-style: none; position: absolute; top: 100%; left: 0;
  min-width: 200px; display: flex; flex-direction: column; gap: 2px;
  background: rgba(20,38,68,0.85); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 6px; box-shadow: 0 16px 40px rgba(0,0,0,0.35); z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.submenu a {
  display: block; white-space: nowrap; border-radius: 8px;
  padding: 9px 10px; font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,0.8); text-decoration: none;
  transition: background .15s, color .15s;
}
.submenu a:hover { background: rgba(255,255,255,0.08); color: var(--accent); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #2b7cf0 0%, #1257c9 100%);
  color: var(--white);
  border: 1px solid rgba(130,185,255,0.45);
  padding: 9px 16px; border-radius: 8px;
  font-size: .88rem; font-weight: 600; text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: filter .2s, border-color .2s;
}
.nav-cta svg { width: 17px; height: 17px; flex-shrink: 0; }
.nav-cta:hover {
  filter: brightness(1.12);
  border-color: rgba(165,205,255,0.7);
}
.nav-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: 14px;
}
.hamburger span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2461 60%, #0a3a7a 100%);
  min-height: 92vh; display: flex; align-items: center;
  padding: 80px 5vw; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(0,212,255,0.12) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,122,44,0.15); border: 1px solid rgba(255,122,44,0.35);
  color: #ff9d4d; border-radius: 100px;
  font-size: .8rem; font-weight: 600; padding: 6px 14px; margin-bottom: 24px;
  letter-spacing: .05em; text-transform: uppercase;
}
.hero-tag .ping {
  width: 8px; height: 8px; background: #ff9d4d; border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--navy);
  padding: 14px 30px; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 0 24px rgba(0,212,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(0,212,255,0.6); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 14px 30px; border-radius: 10px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(0,212,255,0.08); }

/* hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.planet {
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a6ee8, #0a1628);
  box-shadow: 0 0 80px rgba(26,110,232,0.5), inset -30px -20px 60px rgba(0,0,0,0.5);
  position: relative; overflow: hidden;
}
.planet-text {
  position: absolute; inset: 0; z-index: 2;
  border-radius: 50%; overflow: hidden; pointer-events: none;
  display: flex; justify-content: center; align-items: flex-start;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
}
.planet-text .pt-track {
  display: flex; flex-direction: column; align-items: center;
  width: 64%; text-align: center;
  animation: ptScroll 13s linear infinite;
}
.planet-text .pt-item { padding: 130px 0; }
.planet-text .pt-item .pt-strong {
  display: block; color: #fff; font-weight: 800;
  font-size: .98rem; line-height: 1.2; letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.planet-text .pt-item .pt-accent {
  display: block; color: var(--accent); font-weight: 800;
  font-size: 1.12rem; margin: 5px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.planet-text .pt-item .pt-soft {
  display: block; color: rgba(255,255,255,0.92); font-weight: 600;
  font-size: .82rem; line-height: 1.25; margin-top: 5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
@keyframes ptScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.planet::after {
  content: '';
  position: absolute; top: 15%; left: 10%; width: 30%; height: 8%;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  transform: rotate(-15deg);
}
.orbit {
  position: absolute; border: 1px solid rgba(0,212,255,0.25);
  border-radius: 50%; animation: spin 12s linear infinite;
}
.orbit-1 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.orbit-2 { width: 520px; height: 520px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 20s; animation-direction: reverse; }
.satellite {
  position: absolute; width: 14px; height: 14px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}
.sat-1 { top: -7px; left: 50%; transform: translateX(-50%); }
.sat-2 { bottom: -7px; left: 50%; transform: translateX(-50%); }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.globito-img {
  position: absolute; width: 170px; height: auto; top: -50px; right: -30px;
  z-index: 4;
  animation: float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.4));
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.speed-badge {
  position: absolute; bottom: -10px; left: -20px;
  background: rgba(10,22,40,0.9); border: 1px solid rgba(0,212,255,0.4);
  border-radius: 12px; padding: 14px 20px; text-align: center;
  backdrop-filter: blur(8px);
}
.speed-badge .num { font-family: 'Space Grotesk',sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.speed-badge .lbl { font-size: .75rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface-alt); border-bottom: 1px solid var(--border);
  padding: 28px 5vw;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.stat { text-align: center; }
.stat .num { font-family: 'Space Grotesk',sans-serif; font-size: 2rem; font-weight: 700; color: var(--num); }
.stat .lbl { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }

/* ── SECTION ── */
section { padding: 90px 5vw; }
.section-tag {
  display: inline-block;
  color: var(--orange-ink);
  font-size: .92rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px;
}
h2.section-title {
  font-family: 'Space Grotesk',sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--text); margin-bottom: 12px; line-height: 1.2;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.6; margin-bottom: 56px; }

/* ── PLANES ── */
#planes { background: var(--surface-alt); }
.planes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.plan-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 36px 28px; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(13,59,140,0.12); }
.plan-card.featured {
  border-color: var(--sky);
  background: linear-gradient(160deg, var(--blue), #0d2b6b);
  color: var(--white);
}
.plan-card.featured * { color: var(--white) !important; }
.plan-card.featured .plan-price-sub { color: rgba(255,255,255,0.65) !important; }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: .75rem; font-weight: 700; padding: 5px 14px; border-radius: 100px;
  white-space: nowrap;
}
.plan-speed {
  font-family: 'Space Grotesk',sans-serif;
  font-size: 3.2rem; font-weight: 700; color: var(--num); line-height: 1;
}
.plan-speed span { font-size: 1.1rem; font-weight: 500; color: var(--text-muted); }
.plan-name { font-weight: 700; font-size: 1.1rem; margin: 8px 0 4px; color: var(--text); }
.plan-price { font-family:'Space Grotesk',sans-serif; font-size:1.8rem; font-weight:700; color:var(--navy); margin:16px 0 4px; }
.plan-price-sub { font-size:.82rem; color:var(--gray); margin-bottom:20px; }
.plan-features { list-style:none; margin-bottom:28px; }
.plan-features li { font-size:.9rem; color:var(--text-muted); padding:6px 0; display:flex; align-items:center; gap:10px; border-bottom:1px solid var(--border-soft); }
.plan-features li:last-child { border:none; }
.plan-features li::before { content:'✓'; color:var(--sky); font-weight:700; }
.plan-card.featured .plan-features li { border-bottom-color:rgba(255,255,255,0.1); }
.plan-card.featured .plan-features li::before { color:var(--accent); }
.btn-plan {
  display:block; text-align:center; padding:12px;
  background:var(--chip); color:var(--num); border-radius:10px;
  font-weight:700; font-size:.9rem; text-decoration:none;
  transition:background .2s, color .2s;
}
.btn-plan:hover { background:var(--sky); color:var(--white); }
.plan-card.featured .btn-plan { background:var(--accent); color:var(--navy); }
.plan-card.featured .btn-plan:hover { background:var(--white); }

/* ── TV ── */
#streaming { background: var(--bg); }
.stream-inner { max-width:1200px; margin:0 auto; }
.stream-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.stream-visual {
  background:linear-gradient(135deg,var(--navy),#0d2461);
  border-radius:var(--radius); padding:40px; position:relative; overflow:hidden;
}
.stream-visual::before {
  content:'';position:absolute;top:-40px;right:-40px;
  width:200px;height:200px;border-radius:50%;
  background:radial-gradient(circle,rgba(0,212,255,0.2),transparent);
}
.stream-screen {
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1);
  border-radius:12px; padding:24px; text-align:center;
}
.stream-screen .stream-channels { margin-top:20px; }
.stream-screen-title { color:rgba(255,255,255,0.8); font-weight:600; font-size:1.1rem; }
.stream-screen-sub { color:rgba(255,255,255,0.5); font-size:.85rem; margin-top:6px; }
.stream-note { text-align:center; margin-top:20px; color:rgba(255,255,255,0.5); font-size:.8rem; }
.tv-emoji { font-size:4rem; display:block; margin-bottom:12px; }
.tv-logo-img { display:block; width:96px; height:auto; margin:0 auto 14px; filter:drop-shadow(0 6px 16px rgba(0,0,0,0.4)); }
.stream-channels {
  display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:16px;
}
.ch-badge {
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15);
  color:rgba(255,255,255,0.8); font-size:.75rem; font-weight:600;
  padding:4px 12px; border-radius:6px;
}
.stream-text h2 { margin-bottom:20px; }
.stream-text .section-sub { margin-bottom:28px; }
.stream-text .btn-primary { display:inline-block; }
.stream-features { margin-bottom:32px; }
.stream-feat {
  display:flex; align-items:flex-start; gap:14px; padding:16px 0;
  border-bottom:1px solid var(--border-soft);
}
.stream-feat:last-child { border:none; }
.feat-icon { font-size:1.5rem; flex-shrink:0; }
.feat-body strong { display:block; font-size:.95rem; margin-bottom:2px; color:var(--text); }
.feat-body p { font-size:.85rem; color:var(--text-muted); }

/* ── SOPORTE ── */
#soporte { background:var(--surface-alt); }
.soporte-inner { max-width:1200px; margin:0 auto; }
.soporte-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
.soporte-card {
  background:var(--surface); border-radius:var(--radius);
  padding:28px 24px; border:1.5px solid var(--border);
  transition:transform .2s, box-shadow .2s;
  text-decoration:none; color:inherit; display:block;
}
.soporte-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(13,59,140,0.1); }
.soporte-icon { font-size:2.2rem; margin-bottom:14px; }
.soporte-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:6px; color:var(--text); }
.soporte-card p { font-size:.86rem; color:var(--text-muted); line-height:1.5; }

/* ── SEGURIDAD ── */
#seguridad { background:linear-gradient(160deg,#0a1628 0%,#0d2150 100%); }
.seg-inner { max-width:1200px; margin:0 auto; }
.seg-inner .section-tag { color:#ff9d4d; }
.seg-inner h2.section-title { color:var(--white); }
.seg-inner .section-sub { color:rgba(255,255,255,0.65); }
.seg-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; }
.seg-card {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius); padding:30px 26px;
  transition:transform .2s, border-color .2s, background .2s;
}
.seg-card:hover { transform:translateY(-5px); border-color:rgba(0,212,255,0.4); background:rgba(0,212,255,0.06); }
.seg-icon { font-size:2.4rem; margin-bottom:16px; }
.seg-card h3 { color:var(--white); font-size:1.15rem; font-weight:700; margin-bottom:8px; }
.seg-card > p { color:rgba(255,255,255,0.6); font-size:.9rem; line-height:1.55; margin-bottom:14px; }
.seg-card ul { list-style:none; }
.seg-card li { color:rgba(255,255,255,0.72); font-size:.85rem; padding:5px 0; display:flex; gap:8px; align-items:center; }
.seg-card li::before { content:'✓'; color:var(--accent); font-weight:700; }

/* ── SUCURSAL ── */
#sucursal { background:linear-gradient(135deg,var(--blue) 0%,#0a1e5e 100%); }
.sucursal-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.sucursal-text .section-tag { color:#ff9d4d; }
.sucursal-text h2.section-title { color:var(--white); }
.sucursal-text h2 { color:var(--white); }
.sucursal-text p { color:rgba(255,255,255,0.75); font-size:1.05rem; line-height:1.7; margin-bottom:32px; }
.sucursal-list { list-style:none; margin-bottom:36px; }
.sucursal-list li { color:rgba(255,255,255,0.85); font-size:.92rem; padding:8px 0; display:flex; align-items:center; gap:10px; }
.sucursal-list li::before { content:'→'; color:var(--accent); font-weight:700; }
.btn-sucursal {
  display:inline-block; background:var(--accent); color:var(--navy);
  padding:14px 30px; border-radius:10px; font-weight:700;
  text-decoration:none; transition:transform .15s;
}
.btn-sucursal:hover { transform:translateY(-2px); }
.pay-methods { display:flex; flex-wrap:wrap; gap:10px; margin:0 0 28px; }
.pay-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18);
  color:rgba(255,255,255,0.9); border-radius:8px;
  font-size:.8rem; font-weight:600; padding:8px 13px;
}
.sucursal-visual {
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
  border-radius:var(--radius); padding:36px; color:var(--white);
}
.sv-header { display:flex; align-items:center; gap:12px; margin-bottom:24px; padding-bottom:16px; border-bottom:1px solid rgba(255,255,255,0.1); }
.sv-header .lock-icon { font-size:1.4rem; }
.sv-header span { font-weight:600; }
.sv-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.07); }
.sv-row:last-child { border:none; }
.sv-label { font-size:.85rem; color:rgba(255,255,255,0.6); }
.sv-value { font-weight:600; font-size:.95rem; }
.sv-value.green { color:#4ade80; }
.sv-value.accent { color:var(--accent); }
.sv-pay-btn {
  display:block; text-align:center; margin-top:24px;
  background:var(--accent); color:var(--navy);
  padding:12px; border-radius:10px; font-weight:700; text-decoration:none;
  transition:opacity .2s;
}
.sv-pay-btn:hover { opacity:.85; }

/* ── CONTACTO ── */
#contacto { background:var(--bg); }
.contacto-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.contacto-info h2 { margin-bottom:16px; }
.contacto-info p { color:var(--text-muted); font-size:1rem; line-height:1.7; margin-bottom:36px; }
.contact-methods { display:flex; flex-direction:column; gap:16px; }
.contact-method {
  display:flex; align-items:center; gap:16px;
  background:var(--surface-alt); border-radius:12px; padding:18px 20px;
  text-decoration:none; color:inherit; transition:background .2s;
}
.contact-method:hover { background:var(--chip); }
.contact-method .c-icon { font-size:1.5rem; flex-shrink:0; }
.contact-method strong { display:block; font-size:.95rem; color:var(--text); }
.contact-method span { font-size:.84rem; color:var(--text-muted); }
.contact-form {
  background:var(--surface-alt); border-radius:var(--radius); padding:36px;
}
.contact-form h3 { font-family:'Space Grotesk',sans-serif; font-size:1.3rem; font-weight:700; margin-bottom:24px; color:var(--text); }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:.85rem; font-weight:600; color:var(--text); margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:12px 14px; border:1.5px solid var(--border);
  border-radius:8px; font-size:.92rem; font-family:inherit;
  background:var(--input-bg); color:var(--text); outline:none;
  transition:border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--sky); }
.form-group textarea { resize:vertical; min-height:100px; }
.btn-form {
  width:100%; background:var(--sky); color:var(--white);
  padding:14px; border-radius:10px; border:none;
  font-size:1rem; font-weight:700; cursor:pointer;
  font-family:inherit; transition:background .2s;
}
.btn-form:hover { background:var(--blue); }

/* ── FOOTER ── */
footer {
  background:var(--navy); color:rgba(255,255,255,0.6);
  padding:50px 5vw 28px;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; max-width:1200px; margin:0 auto 40px; }
.footer-brand .nav-logo { margin-bottom:14px; }
.footer-brand p { font-size:.86rem; line-height:1.7; max-width:260px; }
.footer-social { display:flex; gap:12px; margin-top:18px; }
.footer-social a {
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:12px; text-decoration:none;
  transition:transform .15s, filter .2s, box-shadow .2s;
}
.footer-social a svg { width:22px; height:22px; }
.footer-social a:hover { transform:translateY(-2px); filter:brightness(1.1); box-shadow:0 6px 18px rgba(0,0,0,0.35); }
.soc-fb { background:#1877F2; }
.soc-ig { background:#1a1a1a; }
.footer-col h4 { color:var(--white); font-size:.9rem; font-weight:700; margin-bottom:14px; }
.footer-col a { display:block; color:rgba(255,255,255,0.55); font-size:.85rem; text-decoration:none; margin-bottom:8px; transition:color .2s; }
.footer-col a:hover { color:var(--accent); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; text-align:center; font-size:.82rem; max-width:1200px; margin:0 auto; }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .hero-grid, .stream-grid, .sucursal-inner, .contacto-inner { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  /* menú móvil desplegable */
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; display: none;
    align-items: stretch; margin-left: 0;
    background: rgba(20,38,68,0.92); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 5vw 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 15px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  /* submenús como acordeón en mobile */
  .has-submenu { display: block; height: auto; }
  .nav-parent {
    width: 100%; justify-content: space-between; border-radius: 0;
    padding: 15px 0; font-size: 1rem; color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .submenu {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; display: none; gap: 0; min-width: 0;
    background: none; border: none; box-shadow: none; backdrop-filter: none;
    padding: 0 0 0 14px;
  }
  .has-submenu.open > .submenu { display: flex; }
  .has-submenu.open .caret { transform: rotate(180deg); }
  .submenu a { padding: 13px 0; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  /* en mobile mantenemos el texto del logo, pero más pequeño */
  .logo-text { font-size: 1.25rem; }
  /* CTAs como icono (sin texto) en mobile para ahorrar espacio */
  .nav-actions { gap: 8px; }
  .nav-cta { padding: 9px; }
  .nav-cta .cta-label { display: none; }
  .hamburger { display: flex; }
  /* hero visual visible y escalado */
  .hero { min-height: auto; padding: 100px 6vw 70px; }
  .hero-grid { gap: 24px; }
  .hero-visual { display: flex; height: 300px; margin-top: 4px; }
  .orbit-2 { display: none; }
  .orbit-1 { width: 280px; height: 280px; }
  .planet { width: 188px; height: 188px; }
  .planet-text .pt-track { width: 82%; }
  .planet-text .pt-item { padding: 70px 0; }
  .planet-text .pt-item .pt-strong { font-size: .72rem; line-height: 1.2; }
  .planet-text .pt-item .pt-accent { font-size: .82rem; margin: 2px 0; }
  .planet-text .pt-item .pt-soft { font-size: .62rem; line-height: 1.2; margin-top: 2px; }
  .globito-img { width: 118px; top: -22px; right: 6px; }
  .speed-badge { bottom: 8px; left: -6px; padding: 10px 16px; }
  .speed-badge .num { font-size: 1.6rem; }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
  .stats-inner { flex-direction:column; }
  .hero h1 { font-size: 2.1rem; }
  .hero-btns { width: 100%; }
  .hero-btns a { flex: 1; text-align: center; padding: 14px 18px; }
  section { padding: 60px 6vw; }
  .nav-cta { padding: 8px; }
  .nav { padding: 0 5vw; }
  .plan-card, .contact-form, .sucursal-visual { padding: 28px 22px; }
}
