/* =========================================================
   Ventas Virtuales — Propuesta 5 "Oscuro Neón" (concepto B2C)
   Tema oscuro: fondo azul-negro + cian neón (como el logo)
   Paleta: fondo #060F26, azul brillante #4D9DFF,
           acento azul eléctrico #0E7BFF, cian #22C3FF
   ========================================================= */

:root {
  --violeta: #4D9DFF;        /* azul brillante para textos/enlaces sobre oscuro */
  --violeta-claro: #22C3FF;  /* cian brillante */
  --coral: #0E7BFF;          /* azul eléctrico (acento principal) */
  --coral-osc: #2F8BFF;      /* hover (más claro para verse sobre oscuro) */
  --amarillo: #22C3FF;       /* cian brillante */
  --bg: #060F26;             /* azul-negro profundo (fondo) */
  --bg-alt: #0A1836;         /* superficie alterna */
  --texto: #E9F1FC;          /* texto claro */
  --muted: #9FB2D2;          /* texto secundario */
  --linea: #1C3563;          /* bordes sobre oscuro */

  --tint-violeta: #11284F;
  --tint-coral: #0E2A52;
  --tint-amarillo: #0C2E50;

  --radio: 18px;
  --radio-lg: 26px;
  --sombra: 0 10px 30px rgba(0, 0, 0, .5);
  --sombra-suave: 0 6px 18px rgba(0, 0, 0, .4);
  --sombra-fuerte: 0 18px 44px rgba(0, 0, 0, .6);
  --max: 1140px;

  --fuente-titulo: "Sora", "Poppins", system-ui, sans-serif;
  --fuente-cuerpo: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fuente-cuerpo);
  color: var(--texto);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--fuente-titulo);
  font-weight: 700;
  line-height: 1.18;
  color: var(--texto);
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }
a { color: var(--violeta); text-decoration: none; }
img { max-width: 100%; }

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

.muted { color: var(--muted); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--fuente-titulo);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  background: var(--coral);
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 20px rgba(14, 123, 255, .35);
}
.btn:hover { transform: translateY(-2px); background: var(--coral-osc); box-shadow: 0 12px 26px rgba(34, 195, 255, .45); }
.btn--lg { padding: 17px 38px; font-size: 1.08rem; }
.btn--small { padding: 9px 18px; font-size: .92rem; box-shadow: none; }
.btn--block { width: 100%; }
.btn--ghost {
  background: #fff;
  color: var(--violeta);
  box-shadow: var(--sombra-suave);
}
.btn--ghost:hover { background: #fff; color: var(--violeta-claro); }
.btn--wa { background: #25D366; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn--wa:hover { background: #1ebe5a; }

/* ---------- Navbar ---------- */
.navbar {
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linea);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}
.navbar__brand {
  font-family: var(--fuente-titulo);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--violeta);
  display: flex;
  align-items: center;
  gap: .5em;
}
.navbar__logo {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 130px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--violeta), var(--violeta-claro));
  color: #fff;
  font-family: var(--fuente-titulo);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .5px;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar__link {
  color: var(--texto);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .98rem;
  transition: background .2s, color .2s;
}
.navbar__link:hover { background: var(--tint-violeta); color: var(--violeta); }
.navbar__link--active { color: var(--violeta); background: var(--tint-violeta); }
.navbar__cta { color: #fff; margin-left: 6px; }
.navbar__cta:hover { color: #fff; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar__toggle span {
  width: 26px;
  height: 3px;
  background: var(--violeta);
  border-radius: 3px;
  transition: transform .25s, opacity .25s;
}
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #1B3B8F, #3B82F6);
  color: #fff;
  padding: 86px 0 96px;
}
.hero__inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: .35em;
  letter-spacing: -.5px;
}
.hero__sub { font-size: 1.18rem; color: rgba(255, 255, 255, .9); margin-bottom: 1.8em; }
.hero__cta { display: flex; justify-content: center; }
.hero__trust {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  font-weight: 600;
  font-size: .98rem;
  color: rgba(255, 255, 255, .92);
}
.hero__trust span { white-space: nowrap; }

/* Blobs desenfocados */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .55;
  z-index: 1;
  pointer-events: none;
}
.blob--coral { width: 360px; height: 360px; background: var(--coral); top: -90px; left: -70px; }
.blob--amarillo { width: 320px; height: 320px; background: var(--amarillo); bottom: -110px; right: -60px; opacity: .5; }
.blob--violeta { width: 300px; height: 300px; background: #c98bff; top: 40%; right: 18%; opacity: .35; }

/* Cluster de burbujas de chat decorativo */
.chat-cluster {
  position: absolute;
  z-index: 1;
  opacity: .22;
  pointer-events: none;
}
.chat-cluster--tl { top: 30px; left: 30px; width: 120px; }
.chat-cluster--br { bottom: 30px; right: 40px; width: 150px; transform: scaleX(-1); }

/* ---------- Page hero (subpáginas) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #1B3B8F, #3B82F6);
  color: #fff;
  padding: 64px 0 70px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 2.9rem); }
.page-hero p { color: rgba(255, 255, 255, .9); max-width: 620px; font-size: 1.1rem; margin: 0; }
.breadcrumb { font-size: .9rem; color: rgba(255, 255, 255, .8); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255, 255, 255, .95); font-weight: 600; }

/* ---------- Secciones ---------- */
.section { padding: 76px 0; }
.section--alt { background: var(--bg-alt); }

/* ===== Inicio más compacto (conserva todas las secciones) ===== */
.home .hero { padding: 52px 0 58px; }
.home .section { padding: 46px 0; }
.home .section__lead { margin-bottom: 24px; }
.home .cta-band { padding: 46px 0; }
.home .section__title { margin-bottom: .3em; }
.home .tiles, .home .benefits, .home .cards, .home .steps { gap: 14px; }
.section__title {
  text-align: center;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  margin-bottom: .3em;
}
.section__title--left { text-align: left; }
.section__lead {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.4em;
  font-size: 1.08rem;
}

/* ---------- Stats (tarjetas blancas redondeadas) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 30px 18px;
  text-align: center;
  box-shadow: var(--sombra);
  border: 1px solid var(--linea);
}
.stat__num {
  font-family: var(--fuente-titulo);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: .25em;
  background: linear-gradient(120deg, var(--violeta), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { color: var(--muted); font-weight: 600; font-size: .98rem; }

/* ---------- Tiles de cultura (bloques de color) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tile {
  border-radius: var(--radio-lg);
  padding: 28px 22px;
  color: #fff;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--sombra);
  position: relative;
  overflow: hidden;
}
.tile__icon { font-size: 2rem; margin-bottom: auto; }
.tile h3 { color: #fff; font-size: 1.15rem; margin: 0 0 .2em; }
.tile p { color: rgba(255, 255, 255, .92); margin: 0; font-size: .96rem; }
.tile--1 { background: linear-gradient(135deg, #0A2A6B, #0E7BFF); }
.tile--2 { background: linear-gradient(135deg, #0E7BFF, #22C3FF); }
.tile--3 { background: linear-gradient(135deg, #17A9F0, #22C3FF); color: #fff; }
.tile--3 h3 { color: #fff; }
.tile--3 p { color: rgba(255,255,255,.92); }
.tile--4 { background: linear-gradient(135deg, #3B82F6, #7EB0F5); }

/* ---------- Beneficios (tarjetas con tinte) ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit {
  border-radius: var(--radio-lg);
  padding: 30px 26px;
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(0, 0, 0, .03);
  transition: transform .18s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.benefit__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: #fff;
  margin-bottom: 16px;
  box-shadow: var(--sombra-suave);
}
.benefit h3 { font-size: 1.18rem; margin-bottom: .35em; }
.benefit p { color: var(--muted); margin: 0; font-size: .98rem; }
.benefit--v { background: var(--tint-violeta); }
.benefit--c { background: var(--tint-coral); }
.benefit--a { background: var(--tint-amarillo); }

/* ---------- Cards genéricas ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--sombra-suave);
  border: 1px solid var(--linea);
}
.card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.card__title { font-size: 1.2rem; margin-bottom: .35em; }
.card__text { color: var(--muted); margin: 0; }

/* ---------- Timeline de pasos ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--sombra-suave);
  border: 1px solid var(--linea);
}
.step__badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, var(--violeta), var(--coral));
  box-shadow: 0 8px 18px rgba(27, 59, 143, .25);
}
.step__n { font-size: .82rem; font-weight: 700; color: var(--coral); letter-spacing: .08em; text-transform: uppercase; }
.step h3 { font-size: 1.08rem; margin: .25em 0; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: 1.6rem;
  font-weight: 700;
  z-index: 2;
}

/* ---------- Testimonios ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 28px 26px;
  box-shadow: var(--sombra-suave);
  border: 1px solid var(--linea);
  display: flex;
  flex-direction: column;
}
.quote__stars { color: var(--amarillo); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 10px; }
.quote__text { font-style: italic; color: var(--texto); margin-bottom: 18px; flex: 1; }
.quote__person { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--fuente-titulo);
  font-weight: 700;
  background: linear-gradient(135deg, var(--violeta), var(--coral));
  flex: 0 0 auto;
}
.quote__name { font-weight: 700; font-family: var(--fuente-titulo); }
.quote__role { color: var(--muted); font-size: .9rem; }

/* ---------- Tarjeta de ubicación ---------- */
.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 40px;
  box-shadow: var(--sombra);
  border: 1px solid var(--linea);
}
.location-card__pin { text-align: center; }
.location-card h3 { font-size: 1.5rem; }
.location-card .addr { font-weight: 600; font-size: 1.05rem; }
.safe-note {
  margin-top: 18px;
  background: var(--tint-violeta);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: .95rem;
  color: var(--violeta);
}
.safe-note strong { color: var(--violeta); }

/* ---------- Banda CTA coral ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--coral), #22C3FF);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-band p { color: rgba(255, 255, 255, .95); max-width: 560px; margin: 0 auto 1.6em; font-size: 1.1rem; }

/* ---------- Banda de tranquilidad (sin estafas) ---------- */
.reassure {
  background: var(--bg-alt);
  text-align: center;
  padding: 60px 0;
}
.reassure__inner {
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 40px;
  box-shadow: var(--sombra-suave);
  border: 1px solid var(--linea);
}
.reassure__icon { font-size: 2.4rem; margin-bottom: 10px; }
.reassure h2 { font-size: 1.5rem; }
.reassure p { color: var(--muted); margin: 0; }

/* ---------- Misión Visión Valores ---------- */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mvv__card {
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 30px 26px;
  box-shadow: var(--sombra-suave);
  border: 1px solid var(--linea);
}
.mvv__card h3 { font-size: 1.3rem; }
.mvv__card p { color: var(--muted); margin: 0; }

/* ---------- Formularios ---------- */
.form__group { margin-bottom: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 6px;
  color: var(--texto);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--linea);
  border-radius: 13px;
  font-family: var(--fuente-cuerpo);
  font-size: 1rem;
  color: var(--texto);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--violeta-claro);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}
.form textarea { min-height: 100px; resize: vertical; }
.form input.invalid,
.form select.invalid,
.form .combo__input.invalid { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(14, 123, 255, .18); }
.form__error { display: block; color: var(--coral-osc); font-size: .85rem; margin-top: 5px; font-weight: 600; min-height: 1px; }
.form__file {
  padding: 10px 14px;
  background: var(--bg-alt);
  cursor: pointer;
}
.form__success {
  margin-top: 16px;
  background: #e7f9ed;
  color: #1b7a3d;
  border: 1px solid #b7ecc7;
  border-radius: 13px;
  padding: 14px 16px;
  font-weight: 600;
  text-align: center;
}

/* Fecha de nacimiento */
.dob { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 10px; }

/* Combo buscable */
.combo { position: relative; }
.combo__list {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px;
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--linea);
  border-radius: 14px;
  box-shadow: var(--sombra);
}
.combo__list li {
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
  font-size: .96rem;
}
.combo__list li:hover { background: var(--tint-violeta); color: var(--violeta); }
.combo__list li.empty { color: var(--muted); cursor: default; }
.combo__list li.empty:hover { background: none; color: var(--muted); }

/* ---------- Hero con formulario (Trabaja con nosotros) ---------- */
.hero--formonly { padding: 28px 0 56px; }
.section__cta { text-align: center; margin-top: 32px; }
.form-back {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--violeta);
}
.form-back:hover { color: var(--violeta-claro); }

/* ===== Trabaja con nosotros — compacto (una sola pantalla) ===== */
.hero.work { min-height: 100vh; padding: 0; display: flex; align-items: stretch; overflow: hidden; }
.hero.work > .container { flex: 1; display: flex; align-items: center; padding-top: 48px; padding-bottom: 48px; }
.work__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  width: 100%;
  text-align: left;
}
.work__intro h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .3em; }
.work__intro .hero__sub { margin-bottom: 1.1em; font-size: 1.02rem; }
.work__intro .btn { margin-top: 0; }
.work__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}
.work__steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.work__steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: .9rem;
}
.work__steps li b {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
  color: #fff;
  background: var(--coral);
}
.work__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wbenefit {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: var(--sombra);
}
.wbenefit__ic { font-size: 1.7rem; line-height: 1; color: var(--texto); flex-shrink: 0; }
.wbenefit h3 { font-size: 1.04rem; margin: 0 0 4px; color: var(--texto); }
.wbenefit p { font-size: .86rem; line-height: 1.4; margin: 0; color: var(--muted); }
.work__benefits--col { grid-template-columns: 1fr; }
.work__stats {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.work__stats b { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1.1; color: #fff; }
.work__stats span { font-size: .8rem; color: rgba(255, 255, 255, .85); }
@media (max-width: 880px) {
  .hero.work { display: flex; }
  .hero.work > .container { padding-top: 28px; padding-bottom: 28px; }
  .work__grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .work__steps { justify-items: center; }
}
@media (max-width: 520px) {
  .work__benefits { grid-template-columns: 1fr; }
  .work__steps { grid-template-columns: 1fr; }
  .work__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .work__stats b { font-size: 1.3rem; }
  .work__stats span { font-size: .72rem; }
}
.hero__formcard {
  position: relative;
  z-index: 5;
  isolation: isolate;
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 36px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--sombra-fuerte);
}
.hero__formcard h3 { font-size: 1.6rem; margin-bottom: .15em; color: var(--texto); }
.hero__formcard, .hero__formcard * { pointer-events: auto; }
.hero__formcard > .muted { margin-bottom: 1.4em; }

/* Formulario compacto (igual que propuesta 1) */
.hero__formcard { padding: 14px 24px; }
.hero__formcard h3 { font-size: 1.15rem; margin-bottom: 1px; }
.hero__formcard > .muted { font-size: .82rem; margin-bottom: 6px; }
.hero__formcard .form__group { margin-bottom: 4px; }
.hero__formcard .form__row { gap: 10px; }
.hero__formcard .form label { margin-bottom: 2px; font-size: .77rem; }
.hero__formcard .form input,
.hero__formcard .form select,
.hero__formcard .form__file { padding: 7px 10px; font-size: .9rem; }
.hero__formcard .form__error { font-size: .72rem; min-height: 0; }
.hero__formcard .btn { margin-top: 6px; padding: 11px 24px; }

/* ---------- Contacto grid ---------- */
.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.info-list { list-style: none; margin: 0 0 22px; padding: 0; }
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--linea);
}
.info-item__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: var(--tint-violeta);
  color: var(--texto);
}
.info-item__title { font-weight: 700; font-family: var(--fuente-titulo); }
.info-item__text { color: var(--muted); }
.info-item__text a { color: var(--violeta); font-weight: 600; }
.map-embed {
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  border: 1px solid var(--linea);
}
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: #081a3a; color: #cfe0f5; padding: 56px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer__brand { color: #fff; font-size: 1.3rem; margin-bottom: .4em; }
.footer__col h5 { color: #fff; font-size: 1rem; margin-bottom: .9em; }
.footer__col p { color: #a9bfdd; margin: 0 0 1em; }
.footer__col a { display: block; color: #bcd2ee; padding: 4px 0; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; font-size: 1.4rem; }
.footer__social a { padding: 0; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 18px 0; }
.footer__bottom p { margin: 0; font-size: .9rem; color: #9ab3d6; text-align: center; }
.visitas { color: #9ab3d6; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  z-index: 60;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .benefits, .cards, .quotes, .mvv { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .location-card { grid-template-columns: 1fr; text-align: center; }
  .contacto__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .navbar__toggle { display: flex; }
  .navbar__menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    padding: 14px 18px 20px;
    border-bottom: 1px solid var(--linea);
    box-shadow: var(--sombra);
    display: none;
  }
  .navbar__menu.is-open { display: flex; }
  .navbar__link { padding: 12px 14px; }
  .navbar__cta { margin: 6px 0 0; text-align: center; }

  .section { padding: 56px 0; }
  .benefits, .cards, .quotes, .mvv, .tiles { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .hero__formcard { padding: 26px 20px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .dob { grid-template-columns: 1fr; }
  .location-card { padding: 26px 20px; }
}

/* Logo imagen navbar */
.navbar__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: -14px;
}


/* Imagen en columna derecha work__grid */
.work__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.work__img img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Grid postular con imagen */
.postular-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
  text-align: left;
}
.postular-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
/* Imagen lateral izquierda — flush al borde del viewport */
.work__side-img {
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
  position: relative;
  z-index: 2;
}
.work__side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.work__side-img--right { border-radius: 24px 0 0 24px; }

/* Quiénes somos — contenido centrado entre dos franjas de imagen */
.nosotros__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 100%;
  padding: 40px 0;
}
.nosotros__center .work__intro { text-align: center; max-width: 600px; }
.nosotros__center .work__stats { justify-content: center; }
.nosotros__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 880px) {
  .work__side-img { display: none; }
  .work__grid { grid-template-columns: 1fr !important; }
  .nosotros__cards { grid-template-columns: 1fr; }
}

/* ===== Lucide Icons ===== */
svg[data-lucide] {
  display: inline-block;
  width: 1em; height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: -0.15em;
}
.wbenefit__ic svg[data-lucide]      { width: 1.6rem; height: 1.6rem; }
.info-item__icon svg[data-lucide]   { width: 1.35rem; height: 1.35rem; }
.footer__social a svg[data-lucide]  { width: 1.3rem; height: 1.3rem; vertical-align: middle; }
.footer__col a svg[data-lucide]     { width: 1rem; height: 1rem; margin-right: 5px; vertical-align: -0.12em; }
.wa-float svg[data-lucide]          { width: 1.65rem; height: 1.65rem; stroke-width: 2.2; }
.work__stats b svg[data-lucide]     { width: 1.3rem; height: 1.3rem; vertical-align: middle; }
.footer__bottom svg[data-lucide]    { width: 0.9em; height: 0.9em; }
.btn--wa svg[data-lucide]           { width: 1.1em; height: 1.1em; margin-right: 6px; vertical-align: -0.15em; }
.hero__badge svg[data-lucide]       { width: 0.85em; height: 0.85em; margin-right: 3px; vertical-align: -0.1em; }
.work__badge svg[data-lucide]       { width: 0.85em; height: 0.85em; margin-right: 3px; vertical-align: -0.1em; }

@media (max-width: 600px) {
  .footer__bottom { padding-bottom: 84px; }
}

/* ============================================================
   TEMA OSCURO NEÓN — Ventas Virtuales (Propuesta 5)
   Convierte superficies claras a oscuras y ajusta brillos.
   ============================================================ */

/* Navbar translúcida oscura */
.navbar { background: rgba(6, 15, 38, .82); }

/* Superficies antes blancas -> tarjetas oscuras */
.stat, .card, .step, .quote, .location-card,
.reassure__inner, .mvv__card, .wbenefit, .hero__formcard,
.combo__list, .benefit__icon {
  background: #0C1A36;
  border-color: var(--linea);
}
.benefit { border-color: var(--linea); }
.benefit__icon { box-shadow: 0 0 0 1px var(--linea), 0 0 18px rgba(34, 195, 255, .22); }
.quote__text { color: #D6E2F2; }

/* Campos de formulario oscuros */
.form input,
.form select,
.form textarea {
  background: #0A1730;
  border-color: var(--linea);
  color: var(--texto);
}
.form input::placeholder,
.form textarea::placeholder { color: #6F83A6; }
.form__file { background: var(--bg-alt); }

/* Menú móvil oscuro */
@media (max-width: 720px) {
  .navbar__menu { background: #08132B; border-bottom-color: var(--linea); }
}

/* Botones: resplandor azul/cian en vez de naranja */
.btn { box-shadow: 0 8px 22px rgba(14, 123, 255, .40); }
.btn:hover { box-shadow: 0 12px 30px rgba(34, 195, 255, .50); }
.btn--ghost { background: #10224A; color: var(--texto); box-shadow: none; }
.btn--ghost:hover { background: #16305F; color: var(--violeta-claro); }

/* Hero neón más profundo (tipo logo) */
.hero,
.page-hero { background: linear-gradient(135deg, #05102A 0%, #0B2F7A 55%, #14A6E0 100%); }

/* Blob decorativo on-brand (era morado) */
.blob--violeta { background: #22C3FF; }

/* Iconos de acento en cian */
.wbenefit__ic,
.info-item__icon { color: var(--violeta-claro); }
