/* ==========================================================================
   MISSIS CLEAN - ESTILOS OFICIALES Y DISEÑO WEB PREMIUM CON MOTION & EFECTOS
   Paleta oficial ESTRICTA:
     --navy:       #050032 (Penn Blue)
     --primary:    #2257FF (RISD Blue)
     --sky:        #88DDFF (Pale Azure)
     --mauve:      #DDAEFF (Mauve)
     --white-smoke:#F5F5F5 (White Smoke / Neutral Bg)
   Tipografías oficiales:
     - Rythme & Rythme Rounded (Brand & Headings)
     - Manrope (Body, UI, Forms)
   ========================================================================== */

/* @font-face para fuentes oficiales Rythme */
@font-face {
  font-family: 'Rythme';
  src: url('../assets/fonts/Rythme.woff2') format('woff2'),
       url('../assets/fonts/Rythme.woff') format('woff'),
       url('../assets/fonts/Rythme.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rythme Rounded';
  src: url('../assets/fonts/Rythme-Rounded.woff2') format('woff2'),
       url('../assets/fonts/Rythme-Rounded.woff') format('woff'),
       url('../assets/fonts/Rythme-Rounded.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta Estricta Oficial */
  --navy: #050032;
  --navy-80: rgba(5, 0, 50, 0.85);
  --navy-60: rgba(5, 0, 50, 0.65);
  --navy-10: rgba(5, 0, 50, 0.08);
  --navy-05: rgba(5, 0, 50, 0.04);
  
  --primary: #2257FF;
  --primary-dark: #163ecc;
  --primary-light: #4473ff;
  --primary-15: rgba(34, 87, 255, 0.15);
  --primary-25: rgba(34, 87, 255, 0.25);
  
  --sky: #88DDFF;
  --sky-20: rgba(136, 221, 255, 0.2);
  --sky-40: rgba(136, 221, 255, 0.4);
  --sky-60: rgba(136, 221, 255, 0.6);
  
  --mauve: #DDAEFF;
  --mauve-20: rgba(221, 174, 255, 0.2);
  --mauve-35: rgba(221, 174, 255, 0.35);
  
  --bg: #F5F5F5;
  --surface: #FFFFFF;
  --surface-soft: #EEF5FF;
  --surface-deep: #EFF1FF;
  
  --text: #050032;
  --text-muted: #4e4c75;
  --text-light: #7c7a9e;
  --line: rgba(5, 0, 50, 0.09);
  --line-strong: rgba(5, 0, 50, 0.16);

  /* Sombras y Radios */
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 16px rgba(5, 0, 50, 0.05);
  --shadow-md: 0 14px 36px rgba(5, 0, 50, 0.08);
  --shadow-lg: 0 24px 60px rgba(5, 0, 50, 0.14);
  --shadow-primary: 0 10px 28px rgba(34, 87, 255, 0.28);
  
  --max-width: 1520px;
  --header-height: 84px;

  /* Fuentes */
  --font-display: 'Rythme', 'Rythme Rounded', 'Manrope', -apple-system, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.22s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

/* Tipografía */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0.01em; /* Espaciado limpio para tipografía de marca Rythme */
  font-weight: 400; /* Evita que el navegador aplique negrita sintética a una fuente ya gruesa */
}

h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.9rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.18;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin: 0;
  color: var(--text-muted);
}

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

/* ==========================================================================
   BARRA DE PROGRESO DE LECTURA (SCROLL PROGRESS)
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--sky), var(--primary), var(--mauve));
  z-index: 1000;
  width: 0%;
  box-shadow: 0 0 10px rgba(136, 221, 255, 0.8);
  pointer-events: none;
  transition: width 0.08s ease-out;
}

/* ==========================================================================
   MOTION: EFECTOS DE REVELADO AL HACER SCROLL (SCROLL REVEAL)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays para grids */
.stagger-delay-1 { transition-delay: 0.08s; }
.stagger-delay-2 { transition-delay: 0.18s; }
.stagger-delay-3 { transition-delay: 0.28s; }
.stagger-delay-4 { transition-delay: 0.38s; }

/* ==========================================================================
   BOTONES Y COMPONENTES REUTILIZABLES CON MICRO-INTERACCIONES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  user-select: none;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-primary);
  animation: pulseButtonGlow 3.5s infinite ease-in-out;
}

@keyframes pulseButtonGlow {
  0%, 100% { box-shadow: 0 8px 24px rgba(34, 87, 255, 0.28); }
  50% { box-shadow: 0 12px 32px rgba(34, 87, 255, 0.45), 0 0 15px rgba(136, 221, 255, 0.3); }
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 34px rgba(34, 87, 255, 0.45);
  transform: translateY(-2.5px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2.5px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: #FFFFFF;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(5, 0, 50, 0.15);
}

.btn-white:hover {
  background: var(--sky);
  color: var(--navy);
  transform: translateY(-2.5px);
  box-shadow: 0 14px 32px rgba(136, 221, 255, 0.45);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2.5px);
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-chip-soft {
  background: var(--surface-soft);
  color: var(--primary);
  border: 1px solid rgba(34, 87, 255, 0.12);
}

.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(136, 221, 255, 0.35), rgba(221, 174, 255, 0.28));
  border: 1px solid rgba(34, 87, 255, 0.12);
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(5, 0, 50, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.card:hover .icon-chip,
.audience-card:hover .icon-chip,
.service-card:hover .icon-chip {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 22px rgba(34, 87, 255, 0.15);
}

/* ==========================================================================
   HEADER & NAVBAR STICKY (PANORÁMICO)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(5, 0, 50, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(5, 0, 50, 0.07);
  border-bottom-color: rgba(5, 0, 50, 0.1);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
  width: min(calc(100% - 48px), 1580px);
  margin-inline: auto;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.brand-link:hover .brand-logo {
  transform: scale(1.03);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 2px;
  transition: color 0.22s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2.5px;
  border-radius: 99px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(34, 87, 255, 0.6);
  transition: width 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ==========================================================================
   SUBMENÚ DESPLEGABLE EN CABECERA (DROPDOWN NAVIGATION)
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 4px;
  transition: color 0.22s ease;
}

.nav-dropdown-toggle:hover,
.nav-item-dropdown:hover .nav-dropdown-toggle,
.nav-item-dropdown.active .nav-dropdown-toggle {
  color: var(--primary);
}

.dropdown-chevron {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  transition: transform 0.25s ease;
  pointer-events: none;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 290px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 18px 42px rgba(5, 0, 50, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  z-index: 200;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  transition: background 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background: var(--surface-soft);
  transform: translateX(4px);
}

.dropdown-item-title {
  font-size: 0.91rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--primary);
}

.dropdown-item-desc {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Hamburguesa móvil */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  z-index: 120;
}

.hamburger-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--navy);
  border-radius: 99px;
  transition: all 0.25s ease;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Menú móvil desplegable */
.mobile-nav-drawer {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  gap: 20px;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  z-index: 99;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer .nav-link {
  font-size: 1.15rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

/* Submenú en el Cajón Móvil */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1px solid rgba(34, 87, 255, 0.1);
  gap: 8px;
  margin: 6px 0;
}

.mobile-group-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.mobile-subnav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(5, 0, 50, 0.06);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-subnav-link:last-child {
  border-bottom: none;
}

.mobile-subnav-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION (DISEÑO PANORÁMICO WIDESCREEN TOTAL DE BORDE A BORDE)
   ========================================================================== */
.hero-section {
  padding: 0 0 54px; /* Cero espacio arriba: conecta directamente con el header */
  position: relative;
  width: 100%;
}

.hero-shell {
  position: relative;
  width: 100%;
  border-radius: 0 0 48px 48px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 88% 18%, rgba(136, 221, 255, 0.32), transparent 36%),
    radial-gradient(circle at 12% 82%, rgba(221, 174, 255, 0.26), transparent 40%),
    linear-gradient(135deg, #2257FF 0%, #163ecc 42%, #050032 100%);
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(5, 0, 50, 0.16);
  padding: 72px max(24px, calc((100% - 1520px) / 2 + 32px)) 82px;
}

/* Partículas flotantes de limpieza / burbujas suaves */
.hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(136, 221, 255, 0.1) 60%, transparent 80%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.25), 0 4px 12px rgba(136, 221, 255, 0.15);
  animation: floatBubble 14s infinite linear;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  cursor: default;
}

.bubble:nth-child(1) { width: 75px; height: 75px; left: 8%; bottom: -80px; animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 45px; height: 45px; left: 24%; bottom: -50px; animation-duration: 16s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 100px; height: 100px; left: 45%; bottom: -110px; animation-duration: 18s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 35px; height: 35px; left: 68%; bottom: -40px; animation-duration: 11s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 65px; height: 65px; left: 88%; bottom: -70px; animation-duration: 15s; animation-delay: 3s; }
.bubble:nth-child(6) { width: 50px; height: 50px; left: 35%; bottom: -60px; animation-duration: 13s; animation-delay: 5s; }
.bubble:nth-child(7) { width: 58px; height: 58px; left: 56%; bottom: -65px; animation-duration: 14s; animation-delay: 6s; }
.bubble:nth-child(8) { width: 40px; height: 40px; left: 16%; bottom: -45px; animation-duration: 17s; animation-delay: 7s; }
.bubble:nth-child(9) { width: 85px; height: 85px; left: 78%; bottom: -90px; animation-duration: 19s; animation-delay: 2.5s; }

/* Animación de explosión / estallido al tocar con el vapor del mouse */
.bubble.popped {
  animation: popBubble 0.28s cubic-bezier(0.1, 0.9, 0.2, 1) forwards !important;
  pointer-events: none !important;
}

@keyframes popBubble {
  0% {
    transform: scale(1);
    opacity: 0.95;
    filter: brightness(1.2);
  }
  40% {
    transform: scale(1.4);
    opacity: 0.85;
    border-color: #88DDFF;
    box-shadow: 0 0 16px rgba(136, 221, 255, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.9);
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
    filter: blur(5px) brightness(1.8);
  }
}

/* Canvas para el vapor sutil de secadora que sigue el puntero del mouse */
.dryer-steam-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99998;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0) translateX(0) scale(0.85);
    opacity: 0;
  }
  15% {
    opacity: 0.75;
  }
  50% {
    transform: translateY(-320px) translateX(25px) scale(1.05);
    opacity: 0.6;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-700px) translateX(-20px) scale(1.2);
    opacity: 0;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.82fr 0.98fr;
  gap: 36px;
  align-items: flex-end;
  max-width: 1520px;
  margin: 0 auto;
}

/* ==========================================================================
   PERSONAJE OFICIAL MISSIS CLEAN (EMBAJADORA 3D EN CABECERA)
   ========================================================================== */
.hero-character-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-character-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 340px;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-character-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(136, 221, 255, 0.48) 0%, rgba(221, 174, 255, 0.24) 45%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(26px);
  z-index: 1;
  animation: auraPulse 6s ease-in-out infinite;
}

@keyframes auraPulse {
  0%, 100% {
    transform: translateX(-50%) scale(0.95);
    opacity: 0.75;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
}

/* Sombra dinámica en suelo sincronizada con el movimiento vertical */
.character-floor-shadow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(5, 0, 50, 0.55) 0%, rgba(5, 0, 50, 0.2) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(4px);
  z-index: 1;
  animation: shadowPulse 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shadowPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.85;
    filter: blur(4px);
  }
  50% {
    transform: translateX(-50%) scale(0.76);
    opacity: 0.4;
    filter: blur(8px);
  }
}

.hero-character-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 295px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(5, 0, 50, 0.38));
  animation: organicLifeCharacter 5.5s ease-in-out infinite;
  transform-origin: bottom center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  cursor: pointer;
  will-change: transform;
}

.hero-character-img:hover {
  filter: drop-shadow(0 24px 42px rgba(34, 87, 255, 0.55));
}

@keyframes organicLifeCharacter {
  0% {
    transform: translateY(0) rotate(0deg) scale(1, 1);
  }
  25% {
    transform: translateY(-5px) rotate(-1deg) scale(1.012, 0.995);
  }
  50% {
    transform: translateY(-12px) rotate(0.8deg) scale(1.018, 0.99);
  }
  75% {
    transform: translateY(-6px) rotate(1.2deg) scale(1.008, 0.998);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1, 1);
  }
}

/* Badges flotantes interactivos del personaje */
.character-speech-chip {
  position: absolute;
  top: 25px;
  left: -24px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(5, 0, 50, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  animation: floatChip1 5.5s ease-in-out infinite;
  white-space: nowrap;
}

.character-trust-badge {
  position: absolute;
  bottom: 34px;
  right: -24px;
  z-index: 4;
  background: rgba(5, 0, 50, 0.9);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(136, 221, 255, 0.35);
  box-shadow: 0 12px 28px rgba(5, 0, 50, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(14px);
  animation: floatChip2 6s ease-in-out infinite 0.8s;
  white-space: nowrap;
}

.character-trust-badge .trust-icon {
  font-size: 1.35rem;
}

.character-trust-badge .trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.character-trust-badge .trust-text strong {
  font-size: 0.82rem;
  color: #FFFFFF;
}

.character-trust-badge .trust-text small {
  font-size: 0.72rem;
  color: var(--sky);
}

@keyframes floatChip1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes floatChip2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-eyebrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-eyebrow img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-title {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.15;
  max-width: 28ch;
}

.hero-title-break {
  display: block;
}

@media (max-width: 680px) {
  .hero-title-break {
    display: inline;
  }
}

.hero-desc {
  color: rgba(245, 245, 245, 0.92);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 62ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.94rem;
  color: rgba(245, 245, 245, 0.82);
}

.hero-note-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--sky);
  box-shadow: 0 0 10px var(--sky);
  animation: radarPulse 2s infinite ease-out;
}

/* Tarjeta lateral hero con elevación y amplitud */
.hero-card {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 50px rgba(5, 0, 50, 0.22);
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-3px);
}

.hero-panel {
  background: #FFFFFF;
  color: var(--text);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 4px 18px rgba(5, 0, 50, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.panel-label {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.hero-panel h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero-panel p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.steps-list {
  display: grid;
  gap: 16px;
  margin-top: 12px;
  position: relative;
}

.step-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  transition: transform 0.2s ease;
}

.step-item:hover {
  transform: translateX(4px);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.98rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.step-item:hover .step-number {
  background: var(--primary);
  color: #FFFFFF;
}

.step-content strong {
  display: block;
  font-size: 0.96rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.step-content span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECCIONES GENERALES Y TARJETAS CON EFECTO SHIMMER / BRILLO DE LIMPIEZA
   ========================================================================== */
.section {
  padding: 48px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 400px) 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
  max-width: 1280px;
}

.section-pretitle {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-head p {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.62;
}

/* ==========================================================================
   SECCIÓN IDENTIDAD DEL MODELO: QUÉ ES MISSIS CLEAN
   ========================================================================== */
.section-model-identity {
  padding: 48px 0 54px;
}

.model-identity-showcase {
  background: #FFFFFF;
  border-radius: 36px;
  border: 1px solid rgba(34, 87, 255, 0.14);
  box-shadow: 
    0 24px 64px rgba(5, 0, 50, 0.05),
    0 4px 20px rgba(34, 87, 255, 0.04);
  overflow: hidden;
  position: relative;
}

/* Fila Superior: Contenido + Imagen */
.model-identity-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  min-height: 340px;
  position: relative;
}

.model-identity-content {
  padding: 48px 40px 24px 48px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Burbuja y onda decorativa */
.model-decor-bubble {
  position: absolute;
  top: 36px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(136, 221, 255, 0.55), rgba(34, 87, 255, 0.15));
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 0;
  animation: floatBubbleSlow 6s ease-in-out infinite alternate;
}

@keyframes floatBubbleSlow {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.05); }
}

.model-decor-wave {
  position: absolute;
  top: 15px;
  right: -20px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  z-index: 0;
}

.model-badge-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.model-identity-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(34, 87, 255, 0.08);
  border: 1px solid rgba(34, 87, 255, 0.16);
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.model-identity-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.6vw, 3.1rem);
  color: var(--navy);
  line-height: 1.12;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.model-identity-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #4a5568;
  margin: 0;
  max-width: 540px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Columna Imagen con Onda Orgánica */
.model-identity-visual {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
}

.model-identity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.model-organic-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 95px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Fila Inferior: Tarjetas Conectadas */
.model-identity-bottom {
  padding: 14px 44px 44px 44px;
  position: relative;
}

.model-connect-line {
  position: absolute;
  top: 52%;
  left: 100px;
  right: 100px;
  height: 2px;
  background: rgba(34, 87, 255, 0.16);
  pointer-events: none;
  z-index: 1;
}

.model-connect-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(34, 87, 255, 0.18);
}

.model-connect-dot.dot-1 {
  left: 33.333%;
}

.model-connect-dot.dot-2 {
  left: 66.666%;
}

.model-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.model-feature-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(215, 230, 250, 0.95);
  border-radius: 22px;
  padding: 26px 24px 24px;
  box-shadow: 
    0 12px 32px rgba(5, 0, 50, 0.04),
    0 2px 8px rgba(34, 87, 255, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.model-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 87, 255, 0.35);
  box-shadow: 
    0 18px 42px rgba(5, 0, 50, 0.07),
    0 4px 14px rgba(34, 87, 255, 0.07);
}

.model-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #eef5ff 0%, #e0eeff 100%);
  border: 1px solid rgba(34, 87, 255, 0.18);
  box-shadow: 0 4px 12px rgba(34, 87, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.model-card-icon {
  width: 24px;
  height: 24px;
}

.model-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.model-feature-card p {
  font-size: 0.89rem;
  line-height: 1.55;
  color: #5b6780;
  margin: 0;
  font-weight: 500;
}

/* Grids de tarjetas */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Tarjeta con efecto brillo diagonal al pasar el cursor (Clean Shimmer) */
.card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.card::after,
.audience-card::after,
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.card:hover::after,
.audience-card:hover::after,
.service-card:hover::after {
  transform: rotate(25deg) translateY(100%);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 87, 255, 0.25);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ==========================================================================
   CÓMO FUNCIONA (PASOS DE FLUJO CON LÍNEA CONECTORA DINÁMICA E ICONOS)
   ========================================================================== */
.section-como-funciona {
  position: relative;
  padding: 64px 0 54px;
}

/* Encabezado centrado */
.cf-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px auto;
}

.cf-pretitle {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #718096;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cf-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.cf-subtitle {
  font-size: 1.05rem;
  color: #5A6578;
  margin: 0 0 16px 0;
  font-weight: 500;
}

.cf-divider-bar {
  width: 64px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, #88DDFF 0%, #88DDFF 50%, #D0E4FF 50%, #D0E4FF 100%);
  margin: 0 auto;
}

/* Escenario del proceso con onda continua */
.cf-process-stage {
  position: relative;
  width: 100%;
  margin-top: 24px;
}

.cf-wave-line {
  position: absolute;
  top: -12px;
  left: 4%;
  right: 4%;
  width: 92%;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}

.cf-wave-line path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.cf-process-stage.is-revealed .cf-wave-line path {
  stroke-dashoffset: 0;
}

/* Grid de las 3 tarjetas: formato rectangular */
.cf-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

/* Tarjetas con proporciones horizontales / rectangulares y motion de entrada */
.cf-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(220, 232, 248, 0.95);
  border-radius: 22px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 12px 32px rgba(5, 0, 50, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Efecto de entrada / Motion Reveal en cascada */
.cf-card.reveal-on-scroll {
  opacity: 0;
  transform: translateY(42px) scale(0.95);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.cf-card.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cf-card.stagger-delay-1 { transition-delay: 0.1s; }
.cf-card.stagger-delay-2 { transition-delay: 0.26s; }
.cf-card.stagger-delay-3 { transition-delay: 0.42s; }

.cf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(5, 0, 50, 0.08);
  border-color: rgba(34, 87, 255, 0.35);
}

/* Tarjeta destacada (Logística) */
.cf-card-featured {
  border: 2px solid #88DDFF;
  box-shadow: 
    0 16px 44px rgba(136, 221, 255, 0.22),
    0 4px 16px rgba(34, 87, 255, 0.06);
}

.cf-card-featured:hover {
  box-shadow: 
    0 22px 52px rgba(136, 221, 255, 0.32),
    0 6px 20px rgba(34, 87, 255, 0.1);
  border-color: #55CCFF;
}

/* Badges circulares 01, 02, 03 con animación pop-in elástica */
.cf-badge-node {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%) scale(0.4);
  opacity: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #050032;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #FFFFFF, 0 4px 12px rgba(5, 0, 50, 0.18);
  z-index: 3;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.cf-card.is-revealed .cf-badge-node {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.cf-card.card-step-1.is-revealed .cf-badge-node {
  transition-delay: 0.25s;
}

.cf-card.card-step-2.is-revealed .cf-badge-node {
  transition-delay: 0.42s;
}

.cf-card.card-step-3.is-revealed .cf-badge-node {
  transition-delay: 0.58s;
}

.cf-badge-featured {
  background: #050032;
  box-shadow: 
    0 0 0 3px #FFFFFF,
    0 0 0 5px #88DDFF,
    0 0 16px rgba(136, 221, 255, 0.85);
  animation: badgeGlowPulse 2.6s infinite ease-in-out;
}

@keyframes badgeGlowPulse {
  0%, 100% { box-shadow: 0 0 0 3px #FFFFFF, 0 0 0 5px #88DDFF, 0 0 14px rgba(136, 221, 255, 0.7); }
  50% { box-shadow: 0 0 0 3px #FFFFFF, 0 0 0 5px #88DDFF, 0 0 24px rgba(136, 221, 255, 1); }
}

.cf-badge-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Medios / Render 3D rectangular horizontal (16 / 10) */
.cf-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.cf-card:hover .cf-card-img {
  transform: scale(1.03);
}

.cf-card-title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cf-card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5A6578;
  margin: 0;
  font-weight: 500;
  max-width: 320px;
}

/* Footer / Barra inferior de la sección */
.cf-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  position: relative;
}

.cf-footer-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cf-timeline-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  width: 140px;
  margin-bottom: 12px;
}

.cf-timeline-dots::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: rgba(34, 87, 255, 0.18);
  z-index: 0;
}

.cf-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C4D9F8;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.cf-dot-active {
  width: 11px;
  height: 11px;
  background: #88DDFF;
  box-shadow: 0 0 10px rgba(136, 221, 255, 0.95);
}

.cf-footer-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #8A96A8;
  text-transform: uppercase;
}

.cf-footer-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.cf-footer-badge-text {
  display: flex;
  flex-direction: column;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: #8A96A8;
  text-transform: uppercase;
  line-height: 1.35;
}

.cf-footer-badge-text strong {
  font-weight: 800;
  color: #718096;
}

.cf-footer-accent-line {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .cf-cards-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cf-wave-line {
    display: none;
  }
  .cf-footer-bar {
    flex-direction: column;
    gap: 20px;
  }
  .cf-footer-side {
    align-items: center;
    text-align: center;
  }
  .cf-footer-accent-line {
    margin: 5px auto 0 auto;
  }
}

/* ==========================================================================
   EMPRESAS Y RESIDENCIALES (SPLIT AUDIENCIAS - REDISEÑO DE ALTO IMPACTO)
   ========================================================================== */
.section-audiencias {
  position: relative;
  background: #FAFCFF;
  padding: 80px 0;
  overflow: hidden;
  scroll-margin-top: 80px;
}

#empresas,
#residenciales {
  scroll-margin-top: 230px;
}

/* Línea conectora curva decorativa superior */
.audiencias-curve-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 0;
}

/* Encabezado */
.audiencias-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}

.audiencias-pretitle {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #5A6578;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.audiencias-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 6px 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.audiencias-subtitle {
  font-size: 1.22rem;
  color: #5A6578;
  margin: 0 0 24px 0;
  font-weight: 500;
}

/* Pill Switcher */
.audiencias-pill-nav {
  display: inline-flex;
  align-items: center;
  background: #EEF3FA;
  border: 1px solid rgba(220, 232, 248, 0.95);
  border-radius: 50px;
  padding: 5px 6px;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(5, 0, 50, 0.04);
}

.audiencia-pill-btn {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 26px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.audiencia-pill-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.7);
}

.audiencia-pill-btn.is-active {
  background: #0055FF;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(0, 85, 255, 0.35);
}

/* Grid de las 2 Columnas */
.audiencias-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* Tarjeta Principal de Cada Audiencia */
.audiencia-showcase-col {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  border: 1.5px solid rgba(220, 232, 248, 0.95);
  box-shadow: 0 16px 44px rgba(5, 0, 50, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}

.audiencia-showcase-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(5, 0, 50, 0.09);
}

.audiencia-showcase-col.col-empresas:hover {
  border-color: rgba(34, 87, 255, 0.35);
}

.audiencia-showcase-col.col-residenciales:hover {
  border-color: rgba(139, 92, 246, 0.35);
}

/* Marco de Fotografía */
.audiencia-photo-frame {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #E5EEF8;
}

.audiencia-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.audiencia-showcase-col:hover .audiencia-bg-img {
  transform: scale(1.03);
}

.audiencia-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 0, 50, 0.12) 0%, transparent 40%, rgba(255, 255, 255, 0.85) 92%, #FFFFFF 100%);
  pointer-events: none;
}

/* Badges y Chips Flotantes sobre la Fotografía */
.photo-badge-left {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 3;
}

.photo-badge-left .badge-text-bold {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #4A5568;
  line-height: 1.15;
  letter-spacing: 0.02em;
  display: block;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.photo-badge-left .badge-accent-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: #2257FF;
  margin-top: 8px;
  border-radius: 2px;
}

.photo-chip-card {
  position: absolute;
  top: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(5, 0, 50, 0.09);
  z-index: 3;
}

.chip-corporate {
  right: 22px;
}

.chip-residential {
  left: 24px;
}

.chip-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(34, 87, 255, 0.1);
  color: #2257FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chip-icon-box.residential-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
}

.chip-icon-box svg {
  width: 18px;
  height: 18px;
}

.chip-text-group .chip-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.chip-text-group .chip-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: #6E7A90;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.02em;
}

/* Badge derecha en Residenciales (Torre A) */
.photo-badge-right {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 3;
  text-align: right;
}

.photo-badge-right .badge-title-tower {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.photo-badge-right .badge-sub-tower {
  font-size: 0.75rem;
  color: #4B5563;
  display: block;
  max-width: 160px;
  margin-top: 2px;
  line-height: 1.3;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.photo-badge-right .badge-accent-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: #2257FF;
  margin: 6px 0 0 auto;
  border-radius: 2px;
}

/* Tarjeta Superpuesta Flotante Inferior */
.audiencia-floating-card {
  position: relative;
  margin: -48px 20px 24px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 30px 28px 24px 28px;
  box-shadow: 0 14px 40px rgba(5, 0, 50, 0.08);
  border: 1.5px solid rgba(220, 232, 248, 0.85);
  z-index: 4;
  display: flex;
  flex-direction: column;
}

.audiencia-card-pretitle {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}

.audiencia-card-pretitle.corporate-accent {
  color: #2257FF;
}

.audiencia-card-pretitle.residential-accent {
  color: #7C3AED;
}

.audiencia-card-title {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 10px 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.audiencia-card-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #525F75;
  margin: 0 0 20px 0;
}

/* Lista de Beneficios con Checkmarks Cyan */
.audiencia-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audiencia-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
  font-weight: 600;
  line-height: 1.35;
}

.audiencia-checklist .check-bullet {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #14C9C9;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(20, 201, 201, 0.3);
}

.audiencia-checklist .check-bullet svg {
  width: 12px;
  height: 12px;
}

/* Tags al pie */
.audiencia-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.audiencia-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  background: #F0F4FA;
  border: 1px solid #DCE8F8;
  padding: 5px 14px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.audiencia-tag:hover {
  background: #E4EEFB;
  border-color: #BED6FA;
}

/* Barra Inferior y Conectores */
.audiencias-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(220, 232, 248, 0.7);
  position: relative;
  z-index: 2;
}

.bottom-left-caption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bottom-left-caption .bottom-bar-line {
  width: 24px;
  height: 3px;
  background: #2257FF;
  border-radius: 2px;
}

.caption-text-block .caption-lead {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #4B5563;
  text-transform: uppercase;
  display: block;
}

.caption-text-block .caption-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.04em;
}

.bottom-right-connection {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pin-node-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pin-node-circle svg {
  width: 18px;
  height: 18px;
}

.connection-dashed-curve {
  width: 70px;
  height: 35px;
}

.connection-text {
  font-size: 0.7rem;
  color: #6B7280;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.connection-text strong {
  color: var(--navy);
  font-weight: 800;
}

/* Audiencias (Empresas y Residenciales) Responsive */
@media (max-width: 992px) {
  .section-audiencias {
    padding: 60px 0;
  }

  .audiencias-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .audiencias-showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .audiencia-photo-frame {
    height: 310px;
  }

  .audiencia-floating-card {
    margin: -40px 16px 20px 16px;
    padding: 28px 24px 22px 24px;
  }

  .audiencia-card-title {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .audiencias-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .section-audiencias {
    padding: 44px 0;
  }

  .audiencias-nav-pill {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .audiencia-pill-btn {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .audiencia-photo-frame {
    height: 250px;
  }

  .photo-badge-left {
    top: 14px;
    left: 14px;
  }

  .photo-badge-left .badge-text-bold {
    font-size: 0.74rem;
  }

  .photo-chip-card {
    top: 12px;
    padding: 5px 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .chip-corporate {
    right: 12px;
  }

  .chip-residential {
    left: 12px;
  }

  .chip-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .chip-icon-box svg {
    width: 14px;
    height: 14px;
  }

  .chip-text-group .chip-label {
    font-size: 0.64rem;
  }

  .chip-text-group .chip-sub {
    font-size: 0.58rem;
  }

  .photo-badge-right {
    top: 14px;
    right: 12px;
    max-width: 135px;
  }

  .photo-badge-right .badge-title-tower {
    font-size: 0.9rem;
  }

  .photo-badge-right .badge-sub-tower {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .audiencia-floating-card {
    margin: -34px 10px 16px 10px;
    padding: 20px 16px 18px 16px;
    border-radius: 18px;
  }

  .audiencia-card-title {
    font-size: 1.7rem;
    margin-bottom: 8px;
  }

  .audiencia-card-desc {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  .audiencia-checklist {
    gap: 10px;
    margin-bottom: 18px;
  }

  .audiencia-checklist li {
    font-size: 0.85rem;
    gap: 8px;
  }

  .audiencia-tag {
    font-size: 0.74rem;
    padding: 4px 10px;
  }
}

/* Fallback y compatibilidad con audience-card */
.audience-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.audience-card.featured-enterprise {
  border-top: 5px solid var(--primary);
}

.audience-card.featured-enterprise:hover {
  border-color: rgba(34, 87, 255, 0.35);
  border-top-color: var(--primary);
}

.audience-card.featured-residential {
  border-top: 5px solid var(--mauve);
}

.audience-card.featured-residential:hover {
  border-color: rgba(221, 174, 255, 0.45);
  border-top-color: var(--mauve);
}

.audience-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.96rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: transform 0.2s ease, color 0.2s ease;
}

.checklist li:hover {
  transform: translateX(3px);
  color: var(--navy);
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--sky);
  box-shadow: 0 2px 6px rgba(136, 221, 255, 0.5);
}

.checklist li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--navy);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--surface-deep);
  border: 1px solid rgba(34, 87, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.2s ease, transform 0.2s ease;
}

.tag-pill:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
  color: var(--primary);
}

/* ==========================================================================
   SERVICIOS INCLUIDOS
   ========================================================================== */
/* ==========================================================================
   COMPARADOR INTERACTIVO DE MODALIDADES DE LAVADO
   ========================================================================== */
.modalidades-comparator {
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Selector / Switcher de Modalidades con Pills */
.modalidades-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F4FA;
  border: 1px solid rgba(220, 232, 248, 0.95);
  border-radius: 50px;
  padding: 6px;
  gap: 8px;
  margin: 0 auto 36px auto;
  max-width: 660px;
  box-shadow: 0 4px 16px rgba(5, 0, 50, 0.04);
}

.modalidad-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 14px;
  border-radius: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.modalidad-tab-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.modalidad-tab-btn .tab-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34, 87, 255, 0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modalidad-tab-btn .tab-text {
  display: flex;
  flex-direction: column;
}

.modalidad-tab-btn .tab-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.modalidad-tab-btn .tab-subtitle {
  font-size: 0.78rem;
  color: #6E7A90;
  font-weight: 600;
  transition: color 0.25s ease;
}

/* Estado Activo del Selector */
.modalidad-tab-btn.is-active {
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(5, 0, 50, 0.09);
  transform: translateY(-1px);
}

.modalidad-tab-btn.is-active .tab-chip {
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(34, 87, 255, 0.35);
}

.modalidad-tab-btn.is-active .tab-title {
  color: var(--primary);
}

.modalidad-tab-btn.is-active .tab-subtitle {
  color: var(--navy);
}

/* Escenario Comparador */
.comparator-stage {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid rgba(220, 232, 248, 0.95);
  border-radius: 28px;
  padding: 44px 44px;
  box-shadow: 0 16px 48px rgba(5, 0, 50, 0.05);
  position: relative;
  overflow: hidden;
}

/* Columna Visual: Elemento Central Flotante + Órbita */
.comparator-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

/* Ruta Exterior Giratoria Discreta */
.comparator-orbit-track {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  margin-top: -220px;
  margin-left: -220px;
  pointer-events: none;
  border-radius: 50%;
  animation: rotateOrbit 34s linear infinite;
  z-index: 1;
}

@keyframes rotateOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.orbit-path-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(136, 221, 255, 0.7);
  box-shadow: 
    inset 0 0 24px rgba(136, 221, 255, 0.08), 
    0 0 28px rgba(34, 87, 255, 0.04);
}

.orbit-node {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #88DDFF;
  box-shadow: 0 6px 18px rgba(5, 0, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  animation: counterRotate 34s linear infinite;
}

@keyframes counterRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.orbit-node.node-1 { 
  top: 0; 
  left: 50%; 
  margin-left: -21px; 
  margin-top: -21px; 
}

.orbit-node.node-2 { 
  bottom: 12%; 
  right: 5%; 
  margin-right: -21px; 
  margin-bottom: -21px; 
}

.orbit-node.node-3 { 
  bottom: 12%; 
  left: 5%; 
  margin-left: -21px; 
  margin-bottom: -21px; 
}

/* Elemento Central Flotante */
.comparator-floating-center {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatCenter 4.8s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes floatCenter {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(-15px);
  }
}

.comparator-image-glow {
  position: absolute;
  inset: -12px;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(136, 221, 255, 0.35) 0%, rgba(34, 87, 255, 0.1) 50%, transparent 70%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

/* Tarjetas de Imagen con Transición Suave Cross-Fade */
.comparator-img-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid rgba(220, 232, 248, 0.95);
  box-shadow: 0 20px 48px rgba(5, 0, 50, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.94) translateY(12px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.45s ease;
}

.comparator-img-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.comparator-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparator-floating-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(5, 0, 50, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(136, 221, 255, 0.45);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.tag-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #88DDFF;
  box-shadow: 0 0 10px #88DDFF;
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Columna de Contenido & Paneles */
.comparator-content-wrap {
  position: relative;
  z-index: 2;
}

.comparator-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparator-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: panelFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comparator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(34, 87, 255, 0.08);
  border: 1px solid rgba(34, 87, 255, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.comparator-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.comparator-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.comparator-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #4E5A6E;
  margin: 0 0 18px 0;
}

.comparator-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.feature-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: #F4F8FC;
  border: 1px solid #DCE8F8;
  padding: 6px 13px;
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.feature-chip:hover {
  background: #EBF3FD;
  border-color: #BBD5FA;
}

.comparator-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparator-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #3C4758;
}

.comparator-checklist .check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(34, 87, 255, 0.28);
}

.comparator-checklist .check-icon svg {
  width: 13px;
  height: 13px;
}

.comparator-checklist strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.comparator-checklist span {
  display: block;
  color: #5E6C84;
  font-size: 0.87rem;
}

.comparator-action {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.comparator-action .action-note {
  font-size: 0.82rem;
  color: #7A879E;
  font-weight: 500;
}

/* Comparador de Modalidades Responsive */
@media (max-width: 992px) {
  .comparator-stage {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .modalidades-nav {
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 8px;
    max-width: 100%;
    width: 100%;
  }

  .modalidad-tab-btn {
    flex: 1;
    min-width: 160px;
    padding: 10px 16px;
    text-align: center;
  }

  .comparator-visual-wrap {
    min-height: 340px;
  }

  .comparator-orbit-track {
    width: 320px;
    height: 320px;
    margin-top: -160px;
    margin-left: -160px;
  }

  .comparator-floating-center {
    max-width: 280px;
  }

  .comparator-title {
    font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  }

  .comparator-checklist {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .comparator-stage {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .modalidades-nav {
    flex-direction: column;
    gap: 6px;
    padding: 6px;
  }

  .modalidad-tab-btn {
    width: 100%;
    text-align: left;
  }

  .comparator-visual-wrap {
    min-height: 280px;
  }

  .comparator-orbit-track {
    width: 260px;
    height: 260px;
    margin-top: -130px;
    margin-left: -130px;
  }

  .comparator-floating-center {
    max-width: 230px;
  }

  .comparator-floating-tag {
    bottom: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 0.74rem;
  }

  .comparator-title {
    font-size: 1.65rem;
  }

  .comparator-desc {
    font-size: 0.88rem;
  }

  .comparator-action {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .comparator-action .btn {
    width: 100%;
    text-align: center;
  }

  .comparator-action .action-note {
    text-align: center;
  }
}

/* Fallback / Compatibilidad retroactiva con service-card */
.service-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 87, 255, 0.25);
}

.service-card .icon-chip {
  background: linear-gradient(135deg, rgba(34, 87, 255, 0.15), rgba(136, 221, 255, 0.25));
  color: var(--primary);
}

.service-banner-box {
  margin-top: 30px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: 
    radial-gradient(circle at 10% 20%, rgba(221, 174, 255, 0.35), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(136, 221, 255, 0.3), transparent 40%),
    linear-gradient(135deg, #FFFFFF, var(--surface-soft));
  border: 1px solid rgba(34, 87, 255, 0.12);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-banner-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-banner-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-mock-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-ticket {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mock-ticket:hover {
  transform: translateX(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.mock-ticket-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}

.mock-ticket-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.mock-ticket-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #E8FFF6;
  color: #0A8B58;
}

.status-dot-live {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #0A8B58;
  box-shadow: 0 0 6px #0A8B58;
  animation: liveBlink 1.6s infinite ease-in-out;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

/* ==========================================================================
   POR QUÉ ES DIFERENTE (BENEFICIOS)
   ========================================================================== */
.benefit-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 87, 255, 0.25);
}

.benefit-card .icon-chip {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* ==========================================================================
   COBERTURA ACTUAL (CON ANIMACIÓN RADAR INTERACTIVA)
   ========================================================================== */
.coverage-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  align-items: center;
}

.coverage-details h3 {
  margin-bottom: 14px;
}

.coverage-details p {
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.coverage-pills {
  display: grid;
  gap: 14px;
}

.coverage-item-card {
  background: var(--surface-soft);
  border: 1px solid rgba(34, 87, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.coverage-item-card:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}

.coverage-item-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.coverage-map-visual {
  min-height: 290px;
  border-radius: var(--radius-md);
  background: 
    radial-gradient(circle at 50% 50%, rgba(34, 87, 255, 0.14), transparent 65%),
    linear-gradient(135deg, rgba(136, 221, 255, 0.32), rgba(221, 174, 255, 0.26)),
    #FFFFFF;
  border: 1.5px dashed rgba(34, 87, 255, 0.28);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
}

.coverage-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
  z-index: 2;
}

.coverage-zone-radar {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  background: rgba(34, 87, 255, 0.08);
  animation: radarPulse 2.8s infinite ease-out;
  pointer-events: none;
}

.coverage-zone-radar::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 999px;
  border: 1px dashed rgba(136, 221, 255, 0.6);
  animation: radarRotate 18s infinite linear;
}

@keyframes radarPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1.55); opacity: 0; }
}

@keyframes radarRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.coverage-map-center-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.pin-circle {
  width: 22px;
  height: 22px;
  background: var(--primary);
  border: 4px solid #FFFFFF;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(34, 87, 255, 0.5);
  margin: 0 auto 6px;
  animation: pinPulse 2s infinite ease-in-out;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.coverage-map-center-pin span {
  display: block;
  background: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* ==========================================================================
   FORMULARIO DE AFILIACIÓN & CAJA DE ACCESO
   ========================================================================== */
.affiliation-section {
  padding: 56px 0 64px;
}

.affiliation-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  align-items: stretch; /* Igualdad de altura total sin huecos vacíos */
}

.form-shell {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.form-shell:focus-within {
  box-shadow: var(--shadow-lg);
}

.form-shell h2 {
  margin-bottom: 12px;
}

.form-shell p {
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.field-group.span-2 {
  grid-column: span 2;
}

.field-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s ease;
}

.field-group:focus-within label {
  color: var(--primary);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  color: var(--navy);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  outline: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(34, 87, 255, 0.14);
  transform: translateY(-1px);
}

.field-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Caja de Acceso Clientes */
.access-box {
  background: 
    radial-gradient(circle at 85% 15%, rgba(136, 221, 255, 0.26), transparent 50%),
    linear-gradient(145deg, #050032 0%, #100a4b 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.access-box:hover {
  transform: translateY(-3px);
}

.access-box::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  bottom: -40px;
  right: -40px;
  background: rgba(221, 174, 255, 0.16);
  pointer-events: none;
}

.access-box .panel-label {
  color: var(--sky);
}

.access-box h3 {
  color: #FFFFFF;
  font-size: 1.85rem;
  margin-bottom: 14px;
}

.access-box p {
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 24px;
  font-size: 1rem;
}

.access-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.access-benefits-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
}

.access-benefit-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}

.access-benefit-row .benefit-bullet {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: rgba(136, 221, 255, 0.22);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.access-benefit-row strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.94rem;
  margin-bottom: 2px;
}

.access-benefit-row p {
  color: rgba(245, 245, 245, 0.78);
  font-size: 0.86rem;
  margin: 0;
  line-height: 1.45;
}

.access-note-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.access-note-card strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.access-note-card p {
  color: rgba(245, 245, 245, 0.75);
  font-size: 0.86rem;
  margin: 0;
}

/* ==========================================================================
   FOOTER (DISEÑO CORPORATIVO MULTICOLUMNA INDEPENDIENTE)
   ========================================================================== */
.site-footer {
  padding: 40px 0 60px;
  background: transparent;
}

.footer-shell {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 44px 36px;
  box-shadow: var(--shadow-sm);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
  gap: 40px;
}

.footer-brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-desc {
  max-width: 42ch;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--surface-soft);
  border: 1px solid rgba(34, 87, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.22s ease;
  text-decoration: none;
}

.social-icon-btn svg {
  width: 19px;
  height: 19px;
}

.social-icon-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2.5px);
  box-shadow: 0 6px 14px rgba(34, 87, 255, 0.25);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link-item {
  font-size: 0.91rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link-item:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-row svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-row a {
  color: var(--primary);
  font-weight: 700;
}

.footer-schedule-badge {
  background: var(--surface-soft);
  border: 1px solid rgba(34, 87, 255, 0.12);
  border-radius: var(--radius-xs);
  padding: 10px 12px;
  margin-top: 4px;
}

.footer-schedule-badge strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 4px;
}

.footer-schedule-badge p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   SUBPÁGINAS: ESTILOS GENERALES (HERO, CONTENIDO, ACORDEÓN, LEGAL)
   ========================================================================== */
.subpage-hero {
  position: relative;
  width: 100%;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 90% 20%, rgba(136, 221, 255, 0.3), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(221, 174, 255, 0.25), transparent 40%),
    linear-gradient(135deg, #2257FF 0%, #163ecc 45%, #050032 100%);
  color: #FFFFFF;
  padding: 60px 0 54px;
  margin-bottom: 50px;
}

.subpage-hero .container {
  position: relative;
  z-index: 2;
}

.subpage-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.subpage-breadcrumb a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
}

.subpage-breadcrumb a:hover {
  color: var(--sky);
}

.subpage-hero-title {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.subpage-hero-desc {
  max-width: 65ch;
  color: rgba(245, 245, 245, 0.85);
  font-size: 1.08rem;
  line-height: 1.6;
}

/* Acordeón Interactivo de Preguntas Frecuentes */
.faq-container {
  max-width: 900px;
  margin: 0 auto 70px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(34, 87, 255, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(34, 87, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon-bubble {
  width: 34px;
  height: 34px;
  border-radius: 99px;
  background: var(--surface-soft);
  border: 1px solid rgba(34, 87, 255, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-icon-bubble svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon-bubble {
  background: var(--primary);
  color: #FFFFFF;
}

.faq-item.active .faq-icon-bubble svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 26px;
  background: rgba(238, 245, 255, 0.3);
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 4px 26px 24px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.98rem;
  margin: 0;
}

.faq-support-box {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}

/* Layout Legal (Privacidad / Impressum) */
.legal-page-container {
  max-width: 980px;
  margin: 0 auto 70px;
}

.legal-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.legal-section {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.legal-section p, .legal-section li {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.legal-section ul {
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Impressum Data Table */
.impressum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.impressum-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 16px 20px;
  background: var(--surface-soft);
  border-radius: var(--radius-xs);
  border: 1px solid rgba(34, 87, 255, 0.08);
  font-size: 0.94rem;
}

.impressum-row dt {
  font-weight: 700;
  color: var(--navy);
}

.impressum-row dd {
  margin: 0;
  color: var(--text-muted);
}

.impressum-row dd a {
  color: var(--primary);
  font-weight: 600;
}

/* Reclamaciones Step Cards */
.claim-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.claim-step-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}

.claim-step-card h3,
.contact-hub-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.claim-step-number {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Contact Hub Cards */
.contact-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.contact-hub-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(34, 87, 255, 0.3);
}

/* Hero Split de Contacto con Imagen Oficial */
.contact-subpage-hero {
  padding: 56px 0 64px;
}

.subpage-hero.contact-subpage-hero .contact-hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-agent-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 310px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(5, 0, 50, 0.4);
  border: 2px solid rgba(136, 221, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.contact-agent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}

.contact-agent-card:hover .contact-agent-img {
  transform: scale(1.03);
}

/* Barra de Canales Sociales Oficiales */
.contact-social-bar {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.contact-social-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--line);
  color: var(--navy);
  background: var(--surface-soft);
  transition: all 0.22s ease;
}

.contact-social-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Suite de Contacto: Formulario + Tarjeta de Soporte */
.contact-suite-container {
  margin: 0 auto 70px;
}

.contact-suite-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.contact-form-shell {
  height: 100%;
}

.contact-concierge-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(220, 232, 248, 0.95);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(5, 0, 50, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-concierge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(5, 0, 50, 0.1);
  border-color: rgba(34, 87, 255, 0.35);
}

.concierge-media-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #E5EDF7;
}

.concierge-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.contact-concierge-card:hover .concierge-cover-img {
  transform: scale(1.03);
}

.concierge-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.concierge-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin: 6px 0 10px 0;
  line-height: 1.15;
}

.concierge-card-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #525F75;
  margin-bottom: 22px;
}

.btn-whatsapp-direct {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.96rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.btn-whatsapp-direct:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

/* Página de Contacto Responsive */
@media (max-width: 992px) {
  .subpage-hero.contact-subpage-hero {
    padding: 44px 0 52px;
  }

  .subpage-hero.contact-subpage-hero .contact-hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .subpage-hero.contact-subpage-hero .subpage-breadcrumb {
    justify-content: center;
  }

  .subpage-hero.contact-subpage-hero .subpage-hero-desc {
    margin: 0 auto;
  }

  .contact-agent-card {
    max-width: 420px;
    height: 270px;
  }

  .contact-hub-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-social-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
  }

  .contact-social-links {
    width: 100%;
  }

  .contact-social-btn {
    flex: 1;
    justify-content: center;
  }

  .contact-suite-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-shell {
    padding: 32px 24px;
  }

  .concierge-media-wrap {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .subpage-hero.contact-subpage-hero {
    padding: 36px 0 44px;
    margin-bottom: 34px;
  }

  .contact-agent-card {
    max-width: 100%;
    height: 220px;
    border-radius: 20px;
  }

  .contact-hub-card {
    padding: 22px 18px;
  }

  .contact-social-bar {
    padding: 18px 16px;
  }

  .contact-social-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-form-shell {
    padding: 24px 16px;
  }

  .contact-concierge-card .concierge-card-body {
    padding: 22px 18px;
  }

  .concierge-card-title {
    font-size: 1.5rem;
  }

  .btn-whatsapp-direct {
    width: 100%;
    padding: 13px 20px;
  }
}

/* ==========================================================================
   MODAL DE INICIAR SESIÓN
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 0, 50, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: min(100%, 460px);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(24px) scale(0.95);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--navy);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--navy);
  color: #FFFFFF;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header img {
  height: 36px;
  margin: 0 auto 12px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Toast de Notificación */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: #FFFFFF;
  border: 1px solid var(--sky);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 360px;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* Botón flotante WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS Y MODO MÓVIL PULIDO)
   ========================================================================== */

@media (max-width: 1260px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.75fr 0.95fr;
    gap: 22px;
  }
  .hero-character-img {
    max-width: 260px;
  }
  .character-speech-chip {
    left: -12px;
  }
  .character-trust-badge {
    right: -12px;
  }
}

@media (max-width: 1080px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .hero-grid,
  .coverage-box,
  .affiliation-grid,
  .footer-columns-grid,
  .cards-grid-3,
  .cards-grid-2,
  .claim-steps-grid,
  .contact-hub-grid,
  .contact-hero-container,
  .contact-suite-grid,
  .model-identity-header,
  .service-banner-box,
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-shell {
    padding: 44px 28px 52px;
  }

  .hero-character-col {
    order: 2;
    margin: 20px auto 10px;
    width: 100%;
  }

  .hero-character-stage {
    max-width: 270px;
  }

  .hero-character-img {
    max-width: 240px;
  }

  .character-speech-chip {
    top: 15px;
    left: -14px;
    font-size: 0.82rem;
    padding: 6px 12px;
  }

  .character-trust-badge {
    bottom: 24px;
    right: -14px;
    padding: 6px 12px;
  }

  .hero-card {
    order: 3;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .header-row {
    width: calc(100% - 32px);
    gap: 12px;
  }

  /* En móvil, los botones de acción viven dentro del menú hamburguesa */
  .header-actions .btn-primary,
  .header-actions .btn-secondary {
    display: none;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 38px 0;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    line-height: 1.14;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 26px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-card {
    padding: 22px 18px;
    gap: 14px;
  }

  .hero-panel {
    padding: 20px 16px;
  }

  .step-item {
    gap: 10px;
  }

  .section-head {
    margin-bottom: 24px;
    gap: 10px;
  }

  .section-head p {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  /* Qué es Missis Clean */
  .model-identity-showcase {
    border-radius: 24px;
  }

  .model-identity-top {
    grid-template-columns: 1fr;
  }

  .model-identity-content {
    padding: 32px 20px 20px 20px;
  }

  .model-identity-visual {
    height: 240px;
    min-height: 240px;
  }

  .model-organic-divider {
    display: none;
  }

  .model-identity-bottom {
    padding: 10px 18px 24px 18px;
  }

  .model-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .model-connect-line {
    display: none;
  }

  /* Cómo funciona */
  .flow-step-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .flow-step-card-header {
    margin-bottom: 18px;
  }

  .flow-step-num-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.35rem;
  }

  .flow-step-connector {
    margin: 0 10px;
  }

  .flow-step-icon-wrap {
    width: 60px;
    height: 46px;
  }

  .flow-step-icon-svg {
    height: 44px;
    max-width: 60px;
  }

  /* Audiencias y Servicios */
  .audience-card,
  .service-card,
  .benefit-card,
  .coverage-box {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .service-pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-banner-box {
    padding: 24px 18px;
  }

  /* Formulario de afiliación & caja de acceso */
  .affiliation-section {
    padding: 38px 0;
  }

  .form-shell,
  .access-box {
    padding: 26px 18px;
    border-radius: var(--radius-md);
  }

  .cards-grid-4,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field-group.span-2 {
    grid-column: span 1;
  }

  .access-actions {
    flex-direction: column;
    gap: 10px;
  }

  .access-actions .btn {
    width: 100%;
  }

  /* Footer */
  .footer-shell {
    padding: 36px 18px 24px;
    border-radius: 32px 32px 0 0;
  }

  .footer-columns-grid {
    gap: 28px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Botón flotante WhatsApp */
  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 13px;
    border-radius: 99px;
    bottom: 18px;
    left: 18px;
  }

  /* Páginas legales y auxiliares */
  .legal-card {
    padding: 22px 18px;
  }

  .impressum-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-question {
    padding: 18px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }
}

/* ==========================================================================
   BARRA DE NAVEGACIÓN MÓVIL ESTILO APP (BOTTOM TAB BAR / DOCK)
   ========================================================================== */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 992px) {
  /* Espacio inferior en el body para que la barra nunca tape contenido ni footer */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* El botón de WhatsApp flotante se posiciona limpiamente sobre la barra móvil */
  .floating-whatsapp {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px)) !important;
    right: 18px !important;
    left: auto !important;
    z-index: 995 !important;
    padding: 13px !important;
    border-radius: 99px !important;
  }

  .floating-whatsapp span {
    display: none !important;
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(5, 0, 50, 0.08);
    box-shadow: 0 -4px 22px rgba(5, 0, 50, 0.07), 0 -1px 3px rgba(5, 0, 50, 0.03);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .bottom-nav-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    height: 64px;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 4px;
    position: relative;
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
    text-decoration: none;
    color: #64748B;
    padding: 6px 2px 4px;
    cursor: pointer;
    font-family: inherit;
    gap: 3px;
    position: relative;
    transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .bottom-nav-item:active {
    transform: scale(0.92);
  }

  .bottom-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  }

  .bottom-nav-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    transition: stroke 0.2s ease, transform 0.2s ease;
  }

  .bottom-nav-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    transition: color 0.2s ease, font-weight 0.2s ease;
  }

  /* Estado Activo con acento de marca y micro-indicador */
  .bottom-nav-item.is-active {
    color: var(--primary);
  }

  .bottom-nav-item.is-active .bottom-nav-icon svg {
    stroke: var(--primary);
    stroke-width: 2.5;
    transform: translateY(-1px);
  }

  .bottom-nav-item.is-active .bottom-nav-label {
    font-weight: 800;
    color: var(--primary);
  }

  .bottom-nav-item.is-active::after {
    content: '';
    position: absolute;
    top: 2px;
    width: 14px;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
  }

  /* Botón Central Estilo FAB Prominente (Afiliarse) */
  .bottom-nav-item.bottom-nav-fab {
    padding-bottom: 4px;
  }

  .bottom-nav-fab-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #0d38b8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -22px;
    box-shadow: 0 8px 18px rgba(34, 87, 255, 0.42), 0 2px 6px rgba(5, 0, 50, 0.15);
    border: 3.5px solid #ffffff;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
  }

  .bottom-nav-fab-btn svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
  }

  .bottom-nav-fab:active .bottom-nav-fab-btn {
    transform: scale(0.90);
    box-shadow: 0 3px 10px rgba(34, 87, 255, 0.35);
  }

  .bottom-nav-fab .bottom-nav-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.69rem;
    margin-top: 1px;
  }

  .bottom-nav-fab.is-active .bottom-nav-fab-btn {
    background: linear-gradient(135deg, #1846df 0%, #050032 100%);
    box-shadow: 0 6px 20px rgba(5, 0, 50, 0.45);
  }

  .bottom-nav-fab.is-active::after {
    display: none; /* No top line on FAB */
  }
}

