/* TMT Gestión Segura · hoja de estilos v4 — recreación 1:1 de la maqueta
   aprobada (2026-08-09): hero oscuro con tablero flotante, franja KPI,
   paneles, banda CTA y footer navy. Sombras NEÓN en tarjetas y botones. */

:root {
  --navy:     #0A1826;   /* header, footer, bandas oscuras */
  --navy-2:   #0B1C2C;   /* fondo del hero */
  --panel-osc:#10263A;
  --cta:      #1DBF9F;   /* botón principal (verde-teal de la maqueta) */
  --cta-hov:  #17A98C;
  --turq:     #27B8A6;
  --neon:     rgba(46, 211, 188, .45);   /* resplandor neón */
  --neon-suave: rgba(46, 211, 188, .16);
  --claro:    #E8F1F3;
  --texto:    #102A43;
  --sec:      #526579;
  --linea:    #E2ECF1;
  --ambar:    #E8A13C;
  --fondo:    #F4F8FA;
  --blanco:   #FFFFFF;
  --radio:    14px;
  --fuente:   'Manrope', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Reduced-motion: SOLO se quita el scroll suave. Nunca anular animaciones ni
   ocultar elementos aquí: el dueño tiene reduce activo en Windows. */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--fuente);
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--fondo);
}
img { max-width: 100%; height: auto; }
a { color: var(--turq); }
.contenedor { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

@keyframes flotar { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulso-neon {
  0%,100% { filter: drop-shadow(0 0 18px var(--neon)); }
  50%     { filter: drop-shadow(0 0 34px var(--neon)); }
}
@keyframes correr-guiones { to { stroke-dashoffset: -88; } }
/* Neón en MOVIMIENTO sobre los botones: respiración de resplandor + destello
   de luz que barre el botón en bucle. */
@keyframes neon-respira {
  0%,100% { box-shadow: 0 0 14px var(--neon), 0 4px 14px rgba(0,0,0,.18); }
  50%     { box-shadow: 0 0 32px var(--neon), 0 0 60px var(--neon-suave), 0 4px 14px rgba(0,0,0,.18); }
}
@keyframes neon-respira-wsp {
  0%,100% { box-shadow: 0 0 14px rgba(37,211,102,.5), 0 4px 14px rgba(0,0,0,.15); }
  50%     { box-shadow: 0 0 32px rgba(37,211,102,.75), 0 0 58px rgba(37,211,102,.3), 0 4px 14px rgba(0,0,0,.15); }
}
@keyframes neon-respira-blanco {
  0%,100% { box-shadow: 0 0 14px rgba(255,255,255,.3), 0 4px 14px rgba(0,0,0,.25); }
  50%     { box-shadow: 0 0 30px rgba(255,255,255,.55), 0 0 56px rgba(127,224,210,.35), 0 4px 14px rgba(0,0,0,.25); }
}
@keyframes barrido-luz {
  0%, 58%  { transform: translateX(-130%) skewX(-18deg); }
  88%,100% { transform: translateX(160%)  skewX(-18deg); }
}

/* ── Botones (con neón) ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--fuente); font-weight: 700; font-size: 14.5px;
  padding: 12px 22px; border-radius: 10px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .15s, box-shadow .2s;
}
.btn:focus-visible { outline: 3px solid var(--turq); outline-offset: 2px; }
.btn-grande { padding: 14px 28px; font-size: 16px; }
/* Botones con neón EN MOVIMIENTO: resplandor que respira + destello que
   barre la superficie. El destello vive en un ::after con overflow oculto. */
.btn-cta, .btn-wsp, .btn-blanco { position: relative; overflow: hidden; }
.btn-cta::after, .btn-wsp::after, .btn-blanco::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 55%;
  background: linear-gradient(115deg, transparent 15%, rgba(255,255,255,.55) 50%, transparent 85%);
  transform: translateX(-130%) skewX(-18deg);
  animation: barrido-luz 3.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-wsp::after { animation-delay: .8s; }
.btn-blanco::after { animation-delay: 1.6s; background: linear-gradient(115deg, transparent 15%, rgba(127,224,210,.5) 50%, transparent 85%); }

.btn-cta {
  background: var(--cta); color: #04251C;
  animation: neon-respira 2.6s ease-in-out infinite;
}
.btn-cta:hover { background: var(--cta-hov); transform: translateY(-2px); }
.btn-borde {
  border-color: var(--turq); color: #7FE0D2; background: transparent;
  box-shadow: 0 0 12px var(--neon-suave);
  transition: box-shadow .8s;
}
.btn-borde:hover { background: rgba(39,184,166,.12); box-shadow: 0 0 26px var(--neon), inset 0 0 14px var(--neon-suave); }
.btn-gris { border-color: rgba(255,255,255,.28); color: #DCEDF2; background: transparent; }
.btn-gris:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-blanco {
  background: #fff; color: var(--navy);
  animation: neon-respira-blanco 2.6s ease-in-out infinite;
  animation-delay: .5s;
}
.btn-blanco:hover { transform: translateY(-2px); }
.btn-wsp {
  background: #25D366; color: #fff; margin-top: 18px;
  animation: neon-respira-wsp 2.6s ease-in-out infinite;
  animation-delay: 1s;
}
.btn-wsp:hover { transform: translateY(-2px); }

/* ── Encabezado ── */
.cabecera {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cabecera.con-scroll { box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.cabecera-int { display: flex; align-items: center; gap: 26px; height: 64px; }
.marca { display: flex; align-items: center; gap: 10px; text-decoration: none; }
/* El logo se ilumina como los botones: resplandor neón que respira */
@keyframes logo-neon {
  0%,100% { filter: drop-shadow(0 0 5px var(--neon-suave)); }
  50%     { filter: drop-shadow(0 0 16px var(--neon)) drop-shadow(0 0 30px var(--neon-suave)); }
}
.marca-logo, .pie-logo-simbolo { animation: logo-neon 2.8s ease-in-out infinite; }
.marca-logo { width: 40px; height: auto; }
.marca-texto { color: #fff; font-size: 13.5px; line-height: 1.15; font-weight: 500; }
.marca-texto strong { font-weight: 800; font-size: 14.5px; }
.nav-principal { display: flex; gap: 2px; margin-left: auto; }
.nav-principal a {
  display: inline-flex; align-items: center; gap: 5px;
  color: #B8CDD8; text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 20px 13px; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-principal a:hover { color: #fff; }
.nav-principal a.activo { color: #fff; border-bottom-color: var(--cta); }
.cabecera-acciones { display: flex; align-items: center; gap: 18px; }
.enlace-ingresar { color: #DCEDF2; text-decoration: none; font-size: 14px; font-weight: 600; }
.enlace-ingresar:hover { color: var(--turq); }
.menu-movil-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
}
.menu-movil-btn span { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 2px; }

/* ── Hero ── */
.hero { position: relative; background: var(--navy-2); color: #fff; overflow: hidden; }
.hero-fondo { position: absolute; inset: 0; }
.hero-ciudad { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-via { position: absolute; right: 0; bottom: 0; width: 62%; height: 88%; }
.via-guiones { animation: correr-guiones 2.6s linear infinite; }
.hero-int {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; padding-top: 64px; padding-bottom: 70px; min-height: 560px;
}
.hero-etiqueta {
  display: inline-block; border: 1px solid rgba(39,184,166,.55);
  background: rgba(39,184,166,.1); color: #7FE0D2;
  padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px); font-weight: 800; line-height: 1.08;
  letter-spacing: -.5px; margin-bottom: 18px; text-wrap: balance;
}
.hero-texto { color: #C3D6DF; font-size: 16.5px; max-width: 480px; margin-bottom: 26px; }
.hero-botones { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-confianza { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; color: #B8CDD8; font-weight: 600; }
.hero-confianza li { padding-left: 22px; position: relative; }
.hero-confianza li::before { content: '✓'; position: absolute; left: 0; color: var(--cta); font-weight: 800; }

/* ── Hero: composición visual ── */
.hero-visual { position: relative; min-height: 470px; }
.hero-escudo {
  position: absolute; left: 2%; top: 8%; width: 150px;
  animation: pulso-neon 3.2s ease-in-out infinite;
}
.hero-consultora { position: absolute; left: 32%; bottom: 0; width: 200px; filter: drop-shadow(0 12px 30px rgba(0,0,0,.45)) drop-shadow(0 0 26px var(--neon-suave)); animation: flotar 3.6s ease-in-out infinite; }
.hero-consultora img { display: block; width: 100%; height: auto; }
.hero-camion { position: absolute; right: 0; bottom: 26%; width: 170px; opacity: .92; }
.hero-nota { position: absolute; right: 4px; bottom: 2px; font-size: 10.5px; color: #5E7D8C; }

.tarjeta-flotante {
  position: absolute; background: #fff; color: var(--texto);
  border-radius: 12px; padding: 12px 14px; width: 158px;
  box-shadow: 0 0 22px var(--neon-suave), 0 14px 34px rgba(0,0,0,.35);
  animation: flotar 3.6s ease-in-out infinite;
  transition: box-shadow .2s;
}
.tarjeta-flotante:hover { box-shadow: 0 0 36px var(--neon), 0 16px 40px rgba(0,0,0,.4); }
.tf-sgsst       { right: 26%; top: 0; animation-delay: 0s; }
.tf-actividades { right: 0; top: 30%; animation-delay: .7s; }
.tf-pesv        { left: 20%; top: 40%; animation-delay: 1.3s; }
.tf-vencimiento { right: 4%; bottom: 8%; animation-delay: 1.9s; }
.tf-titulo { font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.tf-sub { font-size: 10.5px; color: var(--sec); margin-top: 6px; }
.tf-chip {
  display: inline-block; background: #E3F8F1; color: #0C8A6E;
  font-size: 9.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
}
.tf-chip.ambar { background: #FCF1DC; color: #A96B10; }
.tf-fila { display: flex; align-items: center; gap: 10px; }
.tf-dato { font-size: 22px; font-weight: 800; }
.tf-dato small { font-size: 12px; font-weight: 600; color: var(--sec); }

/* Anillos de progreso */
.anillo { position: relative; width: 74px; height: 74px; margin: 0 auto; }
.anillo.chico { width: 62px; height: 62px; margin: 0; flex-shrink: 0; }
.anillo svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.anillo-base { fill: none; stroke: #E4EEF2; stroke-width: 8; }
.anillo-valor {
  fill: none; stroke: var(--cta); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 0 207.3;
  transition: stroke-dasharray 1.2s ease;
  filter: drop-shadow(0 0 4px var(--neon));
}
.anillo span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800;
}

/* ── Franja KPI ── */
.kpis { background: var(--blanco); border-bottom: 1px solid var(--linea); }
.kpis-int {
  display: grid; grid-template-columns: 1.25fr repeat(5, 1fr);
  gap: 0; padding-top: 26px; padding-bottom: 26px;
}
.kpi { display: flex; gap: 12px; align-items: center; padding: 6px 18px; border-left: 1px solid var(--linea); }
.kpi:first-child { border-left: 0; padding-left: 0; }
.kpi-titulo { flex-direction: column; align-items: flex-start; gap: 4px; }
.kpi-titulo h2 { font-size: 17px; font-weight: 800; }
.kpi-titulo p { font-size: 12.5px; color: var(--sec); }
.kpi-nombre { font-size: 12px; font-weight: 700; color: var(--sec); margin-bottom: 2px; }
.kpi-dato { font-size: 17px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.kpi-dato.grande { font-size: 26px; }
.kpi-sub { font-size: 11.5px; color: var(--sec); }
.chispa { width: 88px; height: 24px; margin-top: 4px; display: block; }
.barras { width: 74px; height: 38px; flex-shrink: 0; }
.nube { width: 46px; height: 38px; flex-shrink: 0; }

/* ── Paneles ── */
.paneles { background: var(--fondo); padding: 26px 0 34px; }
.paneles-rejilla { display: grid; gap: 16px; grid-template-columns: 1fr; }

.panel-foto {
  position: relative; display: block; border-radius: var(--radio); overflow: hidden;
  min-height: 300px; text-decoration: none; color: #fff;
  box-shadow: 0 0 20px var(--neon-suave), 0 10px 26px rgba(16,42,67,.16);
  transition: transform .22s, box-shadow .22s;
}
.panel-foto:hover { transform: translateY(-7px); box-shadow: 0 0 36px var(--neon), 0 18px 40px rgba(16,42,67,.24); }
.panel-foto-fondo { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Foto real del kit del usuario + velo oscuro para que el texto siempre lea */
.panel-foto-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.panel-foto::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(11,27,43,.18) 25%, rgba(11,27,43,.94) 100%);
}
.panel-foto-texto { z-index: 2; }
.panel-foto-texto { position: relative; display: flex; flex-direction: column; height: 100%; min-height: 300px; padding: 20px; }
.panel-foto h3 { font-size: 24px; font-weight: 800; }
.panel-foto-sub { font-size: 13.5px; font-weight: 700; color: #CFE4EC; margin-bottom: auto; }
.panel-foto-desc { font-size: 13px; color: #C3D6DF; margin: 10px 0 14px; }
.panel-foto-enlace { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; font-weight: 700; color: #fff; }
.flecha-circulo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: var(--cta); color: #04251C;
  box-shadow: 0 0 12px var(--neon);
  transition: transform .18s;
}
.panel-foto:hover .flecha-circulo { transform: translateX(4px); }

.panel-blanco {
  background: var(--blanco); border: 1px solid var(--linea); border-radius: var(--radio);
  padding: 20px 22px; display: flex; flex-direction: column;
  box-shadow: 0 0 18px var(--neon-suave), 0 6px 18px rgba(16,42,67,.07);
  transition: transform .22s, box-shadow .22s;
}
.panel-blanco:hover { transform: translateY(-6px); box-shadow: 0 0 32px var(--neon), 0 14px 30px rgba(16,42,67,.14); }
.panel-blanco h3 { font-size: 18px; font-weight: 800; }
.panel-sub { font-size: 13px; color: var(--sec); margin: 3px 0 16px; }
.panel-enlace { margin-top: auto; font-size: 13.5px; font-weight: 700; color: #0C8A6E; text-decoration: none; }
.panel-enlace:hover { text-decoration: underline; }

/* Ruta de trabajo */
.ruta-pasos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
.ruta-paso { position: relative; text-align: center; padding-top: 4px; }
.ruta-icono {
  width: 52px; height: 52px; margin: 0 auto 6px; border-radius: 50%;
  border: 1.6px solid var(--linea); display: flex; align-items: center; justify-content: center;
  color: var(--texto); background: #fff;
  box-shadow: 0 0 12px var(--neon-suave);
}
.ruta-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; background: var(--cta); color: #04251C;
  font-size: 11px; font-weight: 800; margin-bottom: 4px;
  box-shadow: 0 0 10px var(--neon);
}
.ruta-paso h4 { font-size: 13.5px; font-weight: 800; margin-bottom: 3px; }
.ruta-paso p { font-size: 11.5px; color: var(--sec); line-height: 1.45; }

/* Mini-app NormaSuite */
.app-mini {
  display: flex; border: 1px solid var(--linea); border-radius: 10px; overflow: hidden;
  background: #F8FBFC; margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px rgba(39,184,166,.06);
}
.app-lateral {
  background: var(--navy); padding: 10px 8px; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.app-lateral span { width: 16px; height: 16px; border-radius: 4px; background: #1E3A52; }
.app-cuerpo { flex: 1; padding: 10px 12px; }
.app-pestanas { display: flex; gap: 4px; margin-bottom: 10px; flex-wrap: wrap; }
.app-pestanas span { font-size: 10.5px; font-weight: 700; color: var(--sec); padding: 3px 9px; border-radius: 6px; }
.app-pestanas span.activa { background: var(--navy); color: #fff; }
.app-titulo { font-size: 12px; font-weight: 800; margin-bottom: 8px; }
.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 8px; }
.app-stat { background: #fff; border: 1px solid var(--linea); border-radius: 8px; padding: 8px 6px; text-align: center; }
.app-stat strong { display: block; font-size: 16px; font-weight: 800; margin-bottom: 3px; }
.app-stat strong small { font-size: 10px; color: var(--sec); }
.app-fila {
  display: flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--linea); border-radius: 8px; padding: 7px 10px; font-size: 11.5px;
}
.app-fila strong { font-size: 14px; margin-left: auto; }

/* Perfil */
.panel-perfil { padding: 0; overflow: hidden; }
.perfil-foto { border-radius: var(--radio) var(--radio) 0 0; overflow: hidden; height: 190px; }
.perfil-foto svg { display: block; width: 100%; }
/* Foto real de Nancy: encuadre sobre ella (está a la izquierda de la imagen) */
.perfil-foto img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 30% 22%; }
.panel-perfil h3, .panel-perfil .panel-sub, .panel-perfil .perfil-lista, .panel-perfil .panel-enlace { padding-left: 20px; padding-right: 20px; }
.panel-perfil h3 { padding-top: 14px; font-size: 19px; line-height: 1.2; }
.perfil-lista { list-style: none; display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; color: var(--sec); margin-bottom: 14px; }
.perfil-lista li { padding-left: 22px; position: relative; }
.perfil-lista li::before { content: '✓'; position: absolute; left: 0; color: var(--cta); font-weight: 800; }
.panel-perfil .panel-enlace { padding-bottom: 18px; }

/* ── Banda CTA ── */
.cta-banda {
  background:
    linear-gradient(100deg, rgba(12,58,64,.96), rgba(14,91,84,.92) 55%, rgba(12,74,70,.96)),
    url('/brand/images/cta-fondo.png') right center / cover no-repeat;
  color: #fff; padding: 34px 0;
}
.cta-int { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta-icono {
  width: 58px; height: 58px; border-radius: 14px; flex-shrink: 0;
  border: 1.6px solid rgba(127,224,210,.5); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px var(--neon-suave);
}
.cta-texto { flex: 1; min-width: 260px; }
.cta-texto h2 { font-size: 21px; font-weight: 800; margin-bottom: 4px; }
.cta-texto p { font-size: 13.5px; color: #B9DED7; }
.cta-garantias { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: #B9DED7; font-weight: 600; }
.cta-garantias li { display: flex; align-items: center; gap: 7px; }
.cta-garantias svg { color: #7FE0D2; }

/* ── Contacto / formulario ── */
.seccion-contacto { padding: 72px 0; }
.contacto-int { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: #0C8A6E; margin-bottom: 8px; }
.seccion-contacto h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.texto-seccion { color: var(--sec); font-size: 15.5px; margin-bottom: 18px; }
.contacto-beneficios { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--sec); }
.contacto-beneficios li { padding-left: 24px; position: relative; }
.contacto-beneficios li::before { content: '✓'; position: absolute; left: 0; color: var(--cta); font-weight: 800; }

.formulario {
  background: var(--blanco); border: 1px solid var(--linea); border-radius: var(--radio);
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 0 20px var(--neon-suave), 0 10px 28px rgba(16,42,67,.08);
}
.form-fila-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.formulario label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 700; color: var(--texto); }
.formulario input, .formulario select, .formulario textarea {
  font-family: var(--fuente); font-size: 14.5px; color: var(--texto);
  padding: 10px 12px; border: 1.6px solid var(--linea); border-radius: 9px;
  background: #FAFCFD; transition: border-color .15s, box-shadow .15s;
}
.formulario input:focus, .formulario select:focus, .formulario textarea:focus {
  outline: none; border-color: var(--turq); box-shadow: 0 0 10px var(--neon-suave);
}
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-consentimiento { flex-direction: row !important; align-items: flex-start; gap: 10px !important; font-weight: 500 !important; font-size: 12.5px !important; color: var(--sec) !important; }
.form-consentimiento input { margin-top: 3px; }
.form-estado { font-size: 14px; font-weight: 700; min-height: 20px; }
.form-estado.ok { color: #0C8A6E; }
.form-estado.error { color: #C0392B; }

/* ── Footer ── */
.pie { background: var(--navy); color: #B8CDD8; padding: 48px 0 0; }
.pie-int { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr .9fr; gap: 30px; padding-bottom: 34px; }
.pie-col h4 { color: #fff; font-size: 13.5px; font-weight: 800; margin-bottom: 12px; }
.pie-col a { display: block; color: #B8CDD8; text-decoration: none; font-size: 13.5px; padding: 4px 0; }
.pie-col a:hover { color: var(--turq); }
.pie-marca p { font-size: 13px; margin-top: 10px; }
.pie-logo { max-width: 230px; }
.pie-lockup { display: flex; align-items: center; gap: 12px; }
.pie-logo-simbolo { width: 62px; height: auto; }
.pie-lockup-texto { display: flex; flex-direction: column; line-height: 1.1; }
.pie-lockup-texto strong { color: #fff; font-size: 26px; font-weight: 800; letter-spacing: 5px; }
.pie-lockup-texto em { font-style: normal; color: var(--turq); font-size: 11.5px; font-weight: 700; letter-spacing: 2.8px; }
.pie-config { font-size: 13.5px; line-height: 2; }
.pie-config a { display: inline; padding: 0; }
.pie-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 18px; padding-bottom: 18px; font-size: 12.5px;
}
.pie-legal-enlaces a { color: #B8CDD8; text-decoration: none; }
.pie-legal-enlaces a:hover { color: var(--turq); }
.pie-credito { width: 100%; text-align: center; font-size: 12px; color: #7FA8B5; margin-top: 4px; }
.pie-credito a { color: var(--turq); text-decoration: none; font-weight: 700; }
.pie-credito a:hover { text-shadow: 0 0 12px var(--neon); }

/* ── Revelado al hacer scroll ── */
.anim { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.anim.dentro { opacity: 1; transform: none; }

/* ── Responsive ──
   Cortes: móvil ≤719 · tablet 720-1119 · escritorio ≥1120 */
@media (min-width: 760px) {
  .paneles-rejilla { grid-template-columns: repeat(2, 1fr); }
  .panel-ruta, .panel-app { grid-column: span 2; }
  .ruta-pasos { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1120px) {
  .paneles-rejilla { grid-template-columns: 1fr 1fr 1.75fr 1.75fr 1.3fr; }
  .panel-ruta, .panel-app { grid-column: auto; }
  .ruta-pasos { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1400px) {
  .ruta-pasos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1119px) {
  .kpis-int { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .kpi:nth-child(4) { border-left: 0; padding-left: 0; }
}
@media (max-width: 999px) {
  .hero-int { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; max-width: 560px; }
  .hero-via { width: 100%; }
}
@media (max-width: 960px) {
  .nav-principal { display: none; }
  .cabecera-acciones { margin-left: auto; }
  .menu-movil-btn { display: flex; }
  .nav-principal.abierto {
    display: flex; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 10px 24px 18px; box-shadow: 0 18px 30px rgba(0,0,0,.4);
  }
  .nav-principal.abierto a { padding: 12px 8px; border-bottom: 0; }
  .contacto-int { grid-template-columns: 1fr; }
  .pie-int { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 719px) {
  .kpis-int { grid-template-columns: repeat(2, 1fr); }
  .kpi { border-left: 0; padding-left: 0; }
  .form-fila-2 { grid-template-columns: 1fr; }
  .cabecera-acciones .enlace-ingresar { display: none; }
  .hero-int { padding-top: 44px; padding-bottom: 54px; }
  .hero-visual { min-height: 400px; }
  .hero-consultora { width: 150px; left: 26%; }
  .hero-escudo { width: 110px; }
  .hero-camion { width: 130px; }
  .tarjeta-flotante { width: 140px; padding: 10px 12px; }
  .tf-pesv { left: 0; }
  .pie-int { grid-template-columns: 1fr; gap: 22px; }
  .pie-legal { flex-direction: column; }
  .seccion-contacto { padding: 52px 0; }
}
