/* ============================================================
   ACTION TI — Sistema de Diseño
   Tipografía: Plus Jakarta Sans
   Paleta: Azul marino + blanco + grises + acento eléctrico
============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colores */
  --navy:        #0B1F3A;
  --navy-mid:    #0F2B5B;
  --blue:        #1A56C4;
  --blue-light:  #2E6FE0;
  --cyan:        #00B4D8;
  --white:       #FFFFFF;
  --gray-50:     #F5F7FA;
  --gray-100:    #EDF0F5;
  --gray-300:    #CBD2DC;
  --gray-500:    #718096;
  --gray-700:    #2D3748;
  --gray-900:    #111827;

  /* Tipografía */
  --font:        'Plus Jakarta Sans', system-ui, sans-serif;

  /* Espaciado */
  --section-gap: 100px;
  --container:   1200px;

  /* Sombras */
  --shadow-sm:   0 2px 8px rgba(11,31,58,.06);
  --shadow-md:   0 4px 24px rgba(11,31,58,.10);
  --shadow-lg:   0 8px 48px rgba(11,31,58,.14);

  /* Transiciones */
  --ease:        cubic-bezier(.4,0,.2,1);
  --dur:         .3s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Utilidades ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* Botones */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,196,.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.navbar.scrolled {
  background: rgba(11,31,58,.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo textual (hasta que agregues la imagen) */
.logo-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-ac {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.logo-sep {
  color: var(--cyan);
  margin: 0 2px;
}

.logo-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gray-300);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-links a.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 8px 18px;
  margin-left: 8px;
  border-radius: 8px;
}
.nav-links a.nav-cta:hover { background: var(--blue-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#circuitCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .25;
}

/* Gradiente sobre el canvas */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(26,86,196,.15) 0%, transparent 70%),
              linear-gradient(to bottom, transparent 60%, var(--navy) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 780px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  position: relative;
  flex-shrink: 0;
}

.dot-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  opacity: 0;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { opacity: .7; transform: scale(.6); }
  100% { opacity: 0;  transform: scale(1.8); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--cyan);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
}
.trust-item svg { opacity: .6; flex-shrink: 0; }

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  margin: 0 auto;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.br-desktop { display: block; }

/* ============================================================
   VALORES
============================================================ */
.valores {
  padding: 80px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.valor-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 36px 32px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  opacity: 0;
  transform: translateY(20px);
}

.valor-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.valor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.valor-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, #f0f5ff 0%, var(--white) 100%);
}

.valor-card.featured:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 32px rgba(26,86,196,.15);
}

.valor-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}

.valor-card.featured .valor-icon {
  background: rgba(26,86,196,.08);
}

.valor-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.valor-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   WHATSAPP FLOTANTE
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ============================================================
   ANIMACIONES DE ENTRADA (Intersection Observer)
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SERVICIOS
============================================================ */
.servicios {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.section-header {
  margin-bottom: 60px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.servicio-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.servicio-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 var(--dur) var(--ease);
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.servicio-card:hover::before {
  opacity: 1;
}

.servicio-card.proxima {
  background: var(--gray-50);
  border-style: dashed;
  border-color: var(--gray-300);
}

.servicio-card.proxima:hover {
  border-style: solid;
}

.servicio-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.servicio-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f5ff, #e8effd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.proxima .servicio-icon {
  background: var(--gray-100);
  color: var(--gray-500);
}

.servicio-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: .05em;
}

.badge-pronto {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 12px;
  width: fit-content;
}

.servicio-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.servicio-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.servicio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}

.servicio-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}

.servicio-list li svg {
  color: var(--blue);
  flex-shrink: 0;
}

.proxima .servicio-list li svg {
  color: var(--gray-300);
}

.servicio-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-top: auto;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
  letter-spacing: .01em;
}

.servicio-cta:hover {
  gap: 10px;
  color: var(--blue-light);
}

.proxima .servicio-cta {
  color: var(--gray-500);
}

.proxima .servicio-cta:hover {
  color: var(--blue);
}

/* CTA central */
.servicios-cta-central {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.servicios-cta-central p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  max-width: 500px;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE SERVICIOS
============================================================ */
@media (max-width: 768px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .servicios-cta-central {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .servicios-cta-central p { max-width: 100%; }
}
@media (max-width: 900px) {
  .valores-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }
  .br-desktop   { display: none; }

  /* Mobile nav open */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11,31,58,.98);
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 20px;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .hero-trust    { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-divider { display: none; }
}

/* ============================================================
   SECCIÓN 3: SEGMENTOS — EMPRESAS Y HOGARES
============================================================ */
.segmentos {
  padding: var(--section-gap) 0;
  background: var(--gray-50);
}

.segmento-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 24px;
}

.segmento-block.invertido {
  direction: rtl;
}
.segmento-block.invertido > * {
  direction: ltr;
}

/* Label con ícono */
.segmento-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.segmento-label span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.segmento-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segmento-icon-wrap.azul {
  background: rgba(26,86,196,.1);
  color: var(--blue);
}

.segmento-icon-wrap.cian {
  background: rgba(0,180,216,.1);
  color: var(--cyan);
}

/* Texto principal */
.segmento-content h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.segmento-content > p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Tags de tipos de cliente */
.segmento-tipos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.segmento-tipos span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 5px 12px;
}

.segmento-tipos span svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* Beneficios */
.segmento-beneficios {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.beneficio-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.beneficio-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(26,86,196,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.beneficio-ico.cian {
  background: rgba(0,180,216,.08);
  color: var(--cyan);
}

.beneficio-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.beneficio-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Botón cian para hogares */
.btn-cian {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--cyan);
  color: var(--white);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-cian:hover {
  background: #009fbe;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,216,.35);
}

/* Panel visual con stats */
.segmento-visual {
  position: relative;
  border-radius: 20px;
  padding: 40px 32px;
  overflow: hidden;
}

.segmento-visual.azul {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.segmento-visual.cian {
  background: linear-gradient(135deg, #004d6b 0%, #006d91 100%);
}

.segmento-visual-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.segmento-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease);
}

.stat-card:hover {
  background: rgba(255,255,255,.1);
}

.stat-card.destacado {
  background: rgba(26,86,196,.35);
  border-color: rgba(26,86,196,.5);
}

.segmento-visual.cian .stat-card.destacado {
  background: rgba(0,180,216,.25);
  border-color: rgba(0,180,216,.4);
}

.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* Separador entre bloques */
.segmentos-sep {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 64px 0;
}

.sep-line {
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}

.segmentos-sep span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  white-space: nowrap;
  letter-spacing: .04em;
}

/* ── Responsive Segmentos ── */
@media (max-width: 900px) {
  .segmento-block,
  .segmento-block.invertido {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }

  .segmento-visual {
    padding: 32px 24px;
  }

  .segmento-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1;
    min-width: 130px;
  }

  .stat-num { font-size: 24px; }
}

/* ============================================================
   RESPONSIVE GLOBAL
============================================================ */
@media (max-width: 900px) {
  .valores-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }
  .br-desktop   { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11,31,58,.98);
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 20px;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .hero-trust    { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-divider { display: none; }
  .servicios-grid { grid-template-columns: 1fr; }
  .servicios-cta-central { flex-direction: column; text-align: center; padding: 32px 24px; }
  .servicios-cta-central p { max-width: 100%; }
}

/* ============================================================
   SECCIÓN 4: NOSOTROS
============================================================ */

/* ── Hero Nosotros ── */
.nos-hero {
  background: var(--navy);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.nos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,86,196,.12) 0%, transparent 70%);
}

.nos-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.nos-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.nos-accent { color: var(--cyan); }

.nos-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.nos-hero-badge {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
}

.badge-fecha {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(26,86,196,.25);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.badge-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

/* ── Origen / Historia ── */
.nos-origen {
  padding: 96px 0;
  background: var(--white);
}

.nos-origen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.nos-origen-texto h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.nos-origen-texto p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.nos-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 20px 0;
}

.nos-quote-line {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
  flex-shrink: 0;
  align-self: stretch;
}

.nos-quote p {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* Timeline historia */
.nos-timeline-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}

.nos-timeline-wrap::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(26,86,196,.1));
}

.nos-tl-item {
  position: relative;
  padding-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.nos-tl-item:last-child { padding-bottom: 0; }

.nos-tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  position: absolute;
  left: -28px;
}

.nos-tl-dot.activo {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,86,196,.15);
}

.nos-tl-dot.proximo {
  background: var(--white);
  border: 2px solid var(--gray-300);
}

.nos-tl-fecha {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.nos-tl-titulo {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.nos-tl-content p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ── Filosofía ── */
.nos-filosofia {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nos-filosofia::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0,180,216,.08) 0%, transparent 70%);
}

.nos-filo-inner { position: relative; z-index: 1; }

.nos-filo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.nos-filo-titulo {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 20px;
  letter-spacing: -.01em;
}

.nos-filo-sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Misión y Visión ── */
.nos-mv {
  padding: 96px 0;
  background: var(--gray-50);
}

.nos-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nos-mv-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 40px 36px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nos-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.nos-mv-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, #f0f5ff 0%, var(--white) 100%);
}

.nos-mv-ico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(26,86,196,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.nos-mv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.nos-mv-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  margin: 0;
}

/* ── Valores ── */
.nos-valores {
  padding: 96px 0;
  background: var(--white);
}

.nos-valores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.nos-valor-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 22px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.nos-valor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
  background: var(--white);
}

.nos-valor-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26,86,196,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.nos-valor-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.nos-valor-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ── Qué nos hace diferentes ── */
.nos-diferente {
  padding: 96px 0;
  background: var(--gray-50);
}

.nos-dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.nos-dif-texto h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.nos-dif-texto p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 14px;
}

.nos-dif-puntos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}

.nos-dif-punto {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.dif-ico {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(26,86,196,.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mockup portal */
.nos-dif-mockup {
  perspective: 1000px;
}

.mockup-window {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--gray-100);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .4s var(--ease);
}

.mockup-window:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.mockup-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  background: var(--white);
  border-radius: 6px;
  padding: 4px 12px;
  border: 1px solid var(--gray-100);
}

.mockup-body {
  padding: 20px;
}

.mock-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}

.mock-search {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mock-input {
  flex: 1;
  font-size: 12px;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 7px 10px;
}

.mock-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  padding: 7px 14px;
  white-space: nowrap;
}

.mock-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.mock-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.mock-folio { font-size: 10px; color: var(--gray-500); margin-bottom: 2px; }
.mock-device { font-size: 13px; font-weight: 700; color: var(--navy); }
.mock-client { font-size: 11px; color: var(--gray-500); }

.mock-status {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.mock-status.en-reparacion {
  background: #f5f3ff;
  color: #5b21b6;
}

.mock-progress-bar {
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.mock-progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}

.mock-steps {
  display: flex;
  justify-content: space-between;
}

.mock-step {
  font-size: 9px;
  color: var(--gray-300);
  font-weight: 500;
}

.mock-step.done { color: var(--blue); }
.mock-step.active { color: var(--navy); font-weight: 700; }

.mock-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-tl-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mock-tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.mock-tl-dot.azul { background: var(--blue); }
.mock-tl-dot.gris { background: var(--gray-300); }

.mock-tl-item strong { font-size: 11px; color: var(--navy); display: block; }
.mock-tl-item span { font-size: 10px; color: var(--gray-500); }

/* ── Proceso / Pasos ── */
.nos-proceso {
  padding: 96px 0;
  background: var(--white);
}

.nos-pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.nos-paso {
  position: relative;
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.nos-paso:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
  background: var(--white);
}

.paso-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gray-300);
  margin-bottom: 14px;
}

.paso-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26,86,196,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.nos-paso h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.nos-paso p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ── Futuro + CTA final ── */
.nos-futuro {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1628 100%);
  padding: 80px 0;
}

.nos-futuro-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.nos-futuro-texto h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.nos-futuro-texto p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}

.nos-futuro-cta {
  text-align: center;
  min-width: 260px;
}

.nos-futuro-cta p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ── Responsive Nosotros ── */
@media (max-width: 1024px) {
  .nos-valores-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nos-hero .container { grid-template-columns: 1fr; }
  .nos-hero-badge { flex-direction: row; flex-wrap: wrap; }
  .badge-fecha { flex: 1; min-width: 160px; }
  .nos-origen-grid { grid-template-columns: 1fr; gap: 48px; }
  .nos-mv-grid { grid-template-columns: 1fr; }
  .nos-valores-grid { grid-template-columns: repeat(2, 1fr); }
  .nos-dif-grid { grid-template-columns: 1fr; gap: 48px; }
  .mockup-window { transform: none; }
  .nos-pasos-grid { grid-template-columns: repeat(2, 1fr); }
  .nos-futuro-inner { grid-template-columns: 1fr; gap: 36px; }
  .nos-futuro-cta { text-align: left; }
}

@media (max-width: 600px) {
  .nos-valores-grid { grid-template-columns: 1fr; }
  .nos-pasos-grid { grid-template-columns: 1fr; }
  .nos-hero-badge { flex-direction: column; }
}

/* ============================================================
   SECCIÓN 5: CONTACTO
============================================================ */
.contacto {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.contacto-header {
  margin-bottom: 60px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

/* Formulario */
.contacto-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 40px;
}

.contacto-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,196,.1);
}

.btn-full { width: 100%; justify-content: center; }

.form-nota {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* Tarjetas de info */
.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.info-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}

.info-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-ico.correo   { background: rgba(26,86,196,.08);  color: var(--blue); }
.info-ico.ubicacion{ background: rgba(0,180,216,.08);   color: var(--cyan); }
.info-ico.horario  { background: rgba(249,115,22,.08);  color: #f97316; }

.info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 3px;
}

.info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  transition: color var(--dur) var(--ease);
}

a.info-value:hover { color: var(--blue); }

.info-sub {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Botón WhatsApp grande */
.contacto-wa-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  margin-top: 4px;
}

.contacto-wa-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.wa-btn-title {
  font-size: 14px;
  font-weight: 700;
}

.wa-btn-sub {
  font-size: 12px;
  opacity: .75;
  margin-top: 2px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--dur) var(--ease);
}

.social-btn:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--dur) var(--ease);
}

.footer-col ul li a:hover { color: var(--white); }

/* Lista de contacto en footer */
.footer-contact-list { list-style: none !important; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55) !important;
  line-height: 1.5;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .5;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

.footer-seo {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  text-align: right;
}

/* ── Responsive Contacto + Footer ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-marca { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
}

@media (max-width: 900px) {
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-seo { text-align: center; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contacto-form-wrap { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ── Alerta formulario ── */
.form-alerta {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease;
}
.form-alerta.visible {
  opacity: 1;
  transform: translateY(0);
}
.form-alerta.ok    { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-alerta.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Logo imagen ── */
.nav-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(0,180,216,.5);
  box-shadow:
      0 0 5px rgba(0,180,216,.4),
      0 0 15px rgba(0,180,216,.2);
  transition: all .3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
  box-shadow:
      0 0 10px rgba(0,180,216,.7),
      0 0 25px rgba(0,180,216,.4);
}

.footer-logo-img {
  height: 80px;
  width: 80px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  border: 2px solid rgba(0,180,216,.25);
}

@media (max-width: 600px) {
  .nav-logo-img  { height: 48px; width: 48px; }
  .footer-logo-img { height: 60px; width: 60px; }
}


/* ── Nombre empresa junto al logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-nombre {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.nav-logo-empresa {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
  font-family: var(--font);
}

.nav-logo-eslogan {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  font-family: var(--font);
}

@media (max-width: 480px) {
  .nav-logo-eslogan { display: none; }
  .nav-logo-empresa { font-size: 15px; }
  .nav-logo { gap: 9px; }
}
