/* ================================================
   PELUSHOW - PREMIUM PET WELLNESS ECOSYSTEM
   Paleta: Negro profundo, Verde suave, Dorado cálido
   ================================================ */

:root {
  /* Colores de marca */
  --color-negro: #0B0F0E;
  --color-negro-profundo: #0B0F0E;
  --color-verde: #2d4a3e;
  --color-verde-suave: #3a5a4d;
  --color-verde-hover: #4a6a5d;
  --color-dorado: #c9a870;
  --color-dorado-claro: #d4b680;
  
  /* Tonos complementarios */
  --color-gris-oscuro: #2a2a2a;
  --color-gris-medio: #404040;
  --color-gris-claro: #888888;
  --color-blanco: #ffffff;
  --color-blanco-suave: #f5f5f5;
  
  /* Tipografía */
  --font-principal: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Georgia', 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-principal);
  background-color: #0B0F0E;
  color: var(--color-blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================================================
   NAVEGACIÓN PREMIUM
   ================================================ */

/* ================================================
   NAVEGACIÓN - ECOSISTEMA VIVO
   ================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 14, 0.85);
  backdrop-filter: blur(16px) saturate(105%);
  border-bottom: 1px solid rgba(212, 182, 128, 0.08);
  padding: 1.2rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding: 0.9rem 0;
  background: rgba(11, 15, 14, 0.92);
  backdrop-filter: blur(20px) saturate(105%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.20);
  border-bottom: 1px solid rgba(212, 182, 128, 0.12);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

/* Logo */
.nav-logo-link {
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo {
  height: 70px;
  display: block;
  opacity: 0.98;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
}

/* Menu principal */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

/* Links del menú */
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 252, 245, 0.90);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}

/* Flecha indicadora */
.nav-arrow {
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: rgba(212, 182, 128, 1);
}

.nav-link:hover .nav-arrow {
  opacity: 1;
  transform: translateY(2px);
}

/* Línea inferior al hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 182, 128, 0.8), rgba(212, 182, 128, 0.2));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ================================================
   MEGA MENÚS - POSICIONAMIENTO ORGÁNICO EMOCIONAL
   ================================================ */

.megamenu {
  position: absolute;
  
  /* Separación vertical elegante - sensación flotante */
  top: calc(100% + 0.95rem);
  
  /* Anclaje lógico al ítem padre */
  left: 0;
  
  /* Corrección óptica BASE hacia centro visual del hero
     Se ajustará específicamente por posición del ítem */
  transform: translate(24px, -6px);
  
  /* Glass effect - transparencia orgánica premium */
  background: linear-gradient(135deg, 
    rgba(15, 12, 10, 0.85) 0%, 
    rgba(12, 10, 8, 0.87) 100%
  );
  backdrop-filter: blur(24px) saturate(103%);
  -webkit-backdrop-filter: blur(24px) saturate(103%);
  
  /* Bordes redondeados suaves */
  border-radius: 12px;
  border: 1px solid rgba(212, 182, 128, 0.10);
  
  /* Sombra amplia y difusa - bajo contraste emocional */
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.28),
    0 10px 30px rgba(0, 0, 0, 0.18),
    0 5px 15px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(212, 182, 128, 0.04);
  
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  /* Animación tranquila */
  transition: all 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 999;
  min-width: 260px;
}

/* Corrección óptica ajustada por posición del ítem */

/* Primer ítem (Explora) - más hacia la derecha */
.nav-item:nth-child(1) .megamenu {
  transform: translate(40px, -6px);
}

.nav-item:nth-child(1):hover .megamenu,
.nav-item:nth-child(1) .megamenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(40px, 0);
}

/* Segundo ítem (Bienestar) - corrección moderada */
.nav-item:nth-child(2) .megamenu {
  transform: translate(24px, -6px);
}

.nav-item:nth-child(2):hover .megamenu,
.nav-item:nth-child(2) .megamenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(24px, 0);
}

/* Tercer ítem (Soluciones) - corrección mínima */
.nav-item:nth-child(3) .megamenu {
  transform: translate(8px, -6px);
}

.nav-item:nth-child(3):hover .megamenu,
.nav-item:nth-child(3) .megamenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(8px, 0);
}

/* Cuarto ítem (Comunidad) - sin corrección */
.nav-item:nth-child(4) .megamenu {
  transform: translate(0, -6px);
}

.nav-item:nth-child(4):hover .megamenu,
.nav-item:nth-child(4) .megamenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, 0);
}

/* Quinto ítem (Plataforma) - corrección negativa */
.nav-item:nth-child(5) .megamenu {
  transform: translate(-80px, -6px);
}

.nav-item:nth-child(5):hover .megamenu,
.nav-item:nth-child(5) .megamenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-80px, 0);
}

/* Área invisible de puente para el hover
   Ajustada dinámicamente */
.megamenu::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -40px;
  right: 0;
  height: 1rem;
  background: transparent;
}

/* Ajustes específicos del puente por ítem */
.nav-item:nth-child(5) .megamenu::before {
  left: 0;
  right: -80px;
}

/* Tipos de mega menú - Dimensiones proporcionales */
.megamenu-3col {
  width: 880px;
}

.megamenu-4col {
  width: 1100px;
}

.megamenu-1col {
  width: 300px;
}

.megamenu-container {
  display: grid;
  padding: 2rem 2.5rem;
  gap: 2.5rem;
}

.megamenu-3col .megamenu-container {
  grid-template-columns: repeat(3, 1fr);
}

.megamenu-4col .megamenu-container {
  grid-template-columns: repeat(4, 1fr);
}

.megamenu-1col .megamenu-container {
  grid-template-columns: 1fr;
}

/* Columnas del mega menú - Alineación izquierda SIEMPRE */
.megamenu-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
}

/* Excepción para columnas explícitamente centradas */
.megamenu-center {
  align-items: center;
  text-align: center;
}

/* Títulos - Labels editoriales elegantes */
.megamenu-title {
  /* Tipografía compacta y elegante */
  font-size: 0.70rem; /* Compacto pero legible */
  font-weight: 500; /* Medium para elegancia */
  
  /* Color dorado suave */
  color: rgba(212, 182, 128, 0.75); /* Balance entre visibilidad y discreción */
  
  /* Espaciado editorial */
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0.7rem 0; /* Aire inferior compacto */
  text-align: left;
  
  /* Línea decorativa sutil */
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(212, 182, 128, 0.10);
  
  /* Emojis con color dorado */
  filter: grayscale(100%) brightness(1.6) sepia(100%) hue-rotate(10deg) saturate(2.2);
  -webkit-text-fill-color: rgba(212, 182, 128, 0.75);
}

.megamenu-subtitle {
  font-size: 0.75rem; /* Más compacto */
  color: rgba(255, 252, 245, 0.55); /* Más discreto */
  margin: 0;
  line-height: 1.35; /* Más compacto */
  text-align: left;
  font-weight: 300; /* Más ligero */
}

/* Lista de links - Alineación izquierda */
.megamenu-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  width: 100%;
}

.megamenu-list-centered {
  align-items: center;
}

.megamenu-link {
  color: rgba(255, 252, 245, 0.82);
  text-decoration: none;
  font-size: 0.82rem; /* Más elegante y compacto */
  font-weight: 400;
  letter-spacing: 0.3px; /* Más tracking para elegancia */
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.3rem 0; /* Más compacto */
  display: inline-block;
  position: relative;
  text-align: left;
}

/* Jerarquía visual - Ítems estructurales clave en negrilla */
.megamenu-link-bold {
  font-weight: 500;
}

.megamenu-link::before {
  content: '→';
  opacity: 0;
  margin-right: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(212, 182, 128, 0.75);
}

.megamenu-link:hover {
  color: rgba(212, 182, 128, 1);
  transform: translateX(4px);
}

.megamenu-link:hover::before {
  opacity: 1;
  margin-right: 0.5rem;
}

/* Micro-copy - Alineación izquierda por defecto */
.megamenu-microcopy {
  font-size: 0.78rem;
  color: rgba(212, 182, 128, 0.65);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.5;
  border-top: 1px solid rgba(212, 182, 128, 0.08);
  padding-top: 1rem;
  text-align: left;
}

.megamenu-microcopy-center {
  text-align: center;
}

.megamenu-microcopy-full {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

/* ================================================
   BIENESTAR ESENCIAL - Columna especial
   ================================================ */

.megamenu-column-esencial {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(255, 255, 255, 0.015) 100%
  );
  border-left: 1px solid rgba(201, 168, 112, 0.12);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: -2rem -2.5rem -2rem 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.megamenu-title-esencial {
  color: rgba(212, 182, 128, 0.75) !important;
  font-weight: 500;
  font-size: 0.70rem; /* Consistente con otros títulos */
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(212, 182, 128, 0.10);
}

.megamenu-subtitle-esencial {
  font-size: 0.75rem !important;
  color: rgba(255, 252, 245, 0.48) !important;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.megamenu-microcopy-esencial {
  font-size: 0.7rem;
  color: rgba(255, 252, 245, 0.40);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 112, 0.08);
}

/* ================================================
   MEGA MENÚ CTA - EXPERIENCIA INTERACTIVA
   ================================================ */

.megamenu-cta {
  background: linear-gradient(135deg, 
    rgba(20, 16, 14, 0.6) 0%, 
    rgba(15, 12, 10, 0.7) 100%
  );
  border-radius: 8px;
  border: 1px solid rgba(212, 182, 128, 0.18);
  padding: 0;
}

.megamenu-cta-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.megamenu-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.15) 0%, 
    rgba(212, 182, 128, 0.08) 100%
  );
  border: 1px solid rgba(212, 182, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(212, 182, 128, 0.95);
}

.megamenu-cta-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.95);
  line-height: 1.4;
  margin: 0;
}

/* Jerarquía visual - CTA principal en negrilla */
.megamenu-cta-title-bold {
  font-weight: 600;
}

.megamenu-cta-desc {
  font-size: 0.85rem;
  color: rgba(255, 252, 245, 0.70);
  line-height: 1.5;
  margin: 0;
}

/* Botones del mega menú */
.btn-megamenu-primary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.20) 0%, 
    rgba(212, 182, 128, 0.15) 100%
  );
  border: 1px solid rgba(212, 182, 128, 0.35);
  color: rgba(255, 252, 245, 0.95);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-megamenu-primary:hover {
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.28) 0%, 
    rgba(212, 182, 128, 0.22) 100%
  );
  border-color: rgba(212, 182, 128, 0.50);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 182, 128, 0.15);
}

.btn-megamenu-secondary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: none;
  color: rgba(212, 182, 128, 0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-megamenu-secondary:hover {
  color: rgba(212, 182, 128, 1);
  transform: translateY(-1px);
}

/* ================================================
   ACCIONES DEL HEADER (CTA)
   ================================================ */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Botón principal CTA */
.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.22) 0%, 
    rgba(212, 182, 128, 0.16) 100%
  );
  border: 1px solid rgba(212, 182, 128, 0.40);
  color: rgba(255, 252, 245, 0.98);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(212, 182, 128, 0.08);
}

.btn-nav-primary:hover {
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.30) 0%, 
    rgba(212, 182, 128, 0.24) 100%
  );
  border-color: rgba(212, 182, 128, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 182, 128, 0.18);
}

/* Link secundario login */
.nav-login {
  color: rgba(255, 252, 245, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-login:hover {
  color: rgba(212, 182, 128, 1);
}
  box-shadow: 0 4px 12px rgba(201, 168, 112, 0.2);
  border-color: rgba(201, 168, 112, 0.5);
}

/* ================================================
   HERO SECTION - CONEXIÓN EMOCIONAL
   ================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-top: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #0a0f0d 0%, #0B0F0E 60%, #000000 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Degradado radial cálido y sutil - Negro cálido marrón oscuro */
  background: radial-gradient(
    ellipse 75% 100% at 12% 50%,
    rgba(20, 16, 14, 0.55) 0%,
    rgba(18, 14, 12, 0.48) 25%,
    rgba(15, 12, 10, 0.38) 40%,
    rgba(12, 10, 8, 0.28) 55%,
    rgba(10, 8, 6, 0.18) 70%,
    rgba(8, 6, 5, 0.08) 85%,
    transparent 95%
  );
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Degradado inferior cálido para transición */
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 70%,
    rgba(15, 12, 10, 0.35) 82%,
    rgba(12, 10, 8, 0.65) 90%,
    rgba(11, 9, 7, 0.85) 96%,
    rgba(11, 15, 14, 1) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  /* Más aire - márgenes internos aumentados */
  padding: 0 5rem;
  margin: 0;
}

.hero-content {
  max-width: 700px;
  padding: 0 4rem 0 6rem;
  animation: fadeInUp 1.2s ease-out;
  position: relative;
  z-index: 4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 112, 0.2);
  border-radius: 50px;
  font-size: 0.7rem;
  color: rgba(201, 168, 112, 0.75);
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}



.hero-title {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -1px;
  text-shadow: 0 2px 25px rgba(0, 0, 0, 0.7), 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero-title-highlight {
  color: rgba(201, 168, 112, 0.85);
  font-style: italic;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.8rem;
  max-width: 560px;
  font-weight: 300;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

/* ================================================
   BOTONES PREMIUM RESPONSIVE
   Sistema de CTAs diseñado para cada dispositivo
   ================================================ */

/* BASE: Botones comunes */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-principal);
  letter-spacing: 0.3px;
  text-transform: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Botón primario - Base desktop */
.btn-primary {
  padding: 1rem 2.6rem;
  background: rgba(201, 168, 112, 0.85);
  color: rgba(0, 0, 0, 0.9);
  border: none;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: rgba(212, 182, 128, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(201, 168, 112, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(201, 168, 112, 0.3);
}

/* Botón secundario - Base desktop */
.btn-secondary {
  padding: 1rem 2.6rem;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.92rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  border-color: rgba(201, 168, 112, 0.4);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.4);
}

/* ================================================
   HERO VISUAL - SISTEMA RESPONSIVE COMPLETO
   Imagen adaptativa por dispositivo
   ================================================ */

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 40%; /* Base: desktop */
  display: block;
  will-change: transform;
  
  /* Filtro premium para realzar calidez */
  filter: brightness(1.02) contrast(1.12) saturate(1.15) sepia(0.08);
  
  /* Animación zoom sutil (solo desktop) */
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.hero-floating-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  /* Fondo oscuro con degradado interno para profundidad */
  background: linear-gradient(
    135deg,
    rgba(18, 15, 13, 0.75) 0%,
    rgba(15, 12, 10, 0.70) 50%,
    rgba(12, 10, 8, 0.72) 100%
  );
  backdrop-filter: blur(16px) saturate(105%);
  -webkit-backdrop-filter: blur(16px) saturate(105%);
  padding: 1.2rem 1.8rem 1.2rem 2.2rem;
  border-radius: 8px;
  /* Borde dorado champagne muy sutil */
  border: 1px solid rgba(212, 182, 128, 0.18);
  /* Sombra envolvente suave para profundidad */
  box-shadow: 
    /* Sombra externa profunda */
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 4px 16px rgba(0, 0, 0, 0.30),
    /* Micro-glow dorado champagne discreto */
    inset 0 -1px 0 rgba(212, 182, 128, 0.10),
    0 0 16px rgba(212, 182, 128, 0.06);
  z-index: 5;
  /* Aparición suave y silenciosa */
  animation: fadeSlideManifesto 1.8s ease-out;
}

@keyframes fadeSlideManifesto {
  0% {
    opacity: 0;
    transform: translateX(20px) translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Manifiesto - Declaración fundacional de marca */
.floating-badge-manifesto {
  /* Tamaño aumentado 12% - mejor presencia y legibilidad */
  font-size: 1.01rem;
  /* Blanco cálido ivory con contraste mejorado */
  color: rgba(255, 252, 245, 0.96);
  /* Small caps + tracking refinado */
  font-variant: small-caps;
  letter-spacing: 1.4px;
  font-weight: 400;
  /* Tipografía serif editorial elegante */
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.65;
  position: relative;
  /* Sombra de texto suave para contraste */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Línea vertical dorada champagne - acento premium sutil */
.floating-badge-manifesto::before {
  content: '';
  position: absolute;
  left: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 75%;
  /* Dorado champagne suave - premium sin ser llamativo */
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(212, 182, 128, 0.30) 15%,
    rgba(220, 195, 145, 0.55) 35%,
    rgba(212, 182, 128, 0.65) 50%,
    rgba(220, 195, 145, 0.55) 65%,
    rgba(212, 182, 128, 0.30) 85%,
    transparent 100%
  );
  /* Glow dorado champagne muy discreto */
  box-shadow: 
    0 0 6px rgba(212, 182, 128, 0.20),
    0 0 12px rgba(212, 182, 128, 0.10);
  border-radius: 1px;
}

/* ================================================
   ECOSISTEMA SECTION
   ================================================ */

.section {
  padding: 5rem 0; /* Reducido de 8rem para eliminar espacios negros */
  position: relative;
  
  /* Sin min-height - la sección crece según el contenido */
  display: block;
}

/* Primera sección después del hero: balance perfecto sin espacio negro */
.hero + .section {
  padding-top: 4rem !important; /* Espacio respirable pero no excesivo */
  margin-top: 0 !important; /* Sin margin negativo */
}

.section-verde {
  background: linear-gradient(180deg, 
    #000000 0%, 
    #0a0f0d 50%,
    #000000 100%
  );
}

.section-oscura {
  background: #000000;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--color-dorado);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-blanco);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-dorado), var(--color-verde-suave));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 112, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-dorado);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-blanco);
  margin-bottom: 1rem;
}

.feature-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ================================================
   COMUNIDAD SECTION
   ================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-dorado);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================
   FOOTER PREMIUM
   ================================================ */

/* ================================================
   FOOTER - REDISEÑO PREMIUM 2026
   ================================================ */

.footer {
  background: linear-gradient(
    180deg,
    rgba(8, 11, 10, 1) 0%,
    rgba(11, 15, 14, 1) 100%
  );
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 112, 0.08);
  position: relative;
}

/* Micro-textura sutil en footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.008) 2px,
      rgba(255, 255, 255, 0.008) 4px
    );
  opacity: 0.4;
  pointer-events: none;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* Columna 1 — Marca */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 2rem;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-description {
  font-size: 0.95rem;
  color: rgba(255, 252, 245, 0.55);
  line-height: 1.8;
  letter-spacing: 0.2px;
  font-weight: 300;
}

/* Columnas de navegación */
.footer-column-title {
  font-size: 0.85rem;
  color: rgba(212, 182, 128, 0.85);
  margin-bottom: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 252, 245, 0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.footer-links a:hover {
  color: rgba(212, 182, 128, 0.95);
  transform: translateX(4px);
}

/* Footer bottom */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 3rem 0;
  border-top: 1px solid rgba(201, 168, 112, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 252, 245, 0.40);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: rgba(255, 252, 245, 0.50);
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 112, 0.08);
  background: rgba(255, 255, 255, 0.01);
}

.social-link:hover {
  color: rgba(212, 182, 128, 0.95);
  background: rgba(201, 168, 112, 0.08);
  border-color: rgba(201, 168, 112, 0.20);
  transform: translateY(-3px);
}

/* ================================================
   ANIMACIONES
   ================================================ */

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

/* Efectos de Ecosistema Tecnológico */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(100, 180, 255, 0.04) 0%, transparent 3%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 112, 0.04) 0%, transparent 3%),
    radial-gradient(circle at 30% 70%, rgba(100, 180, 255, 0.03) 0%, transparent 2%),
    radial-gradient(circle at 70% 60%, rgba(201, 168, 112, 0.03) 0%, transparent 2%),
    radial-gradient(circle at 50% 40%, rgba(100, 180, 255, 0.025) 0%, transparent 2%),
    radial-gradient(circle at 90% 80%, rgba(201, 168, 112, 0.025) 0%, transparent 2%);
  animation: particleFloat 18s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  25% {
    transform: translate(15px, -20px);
    opacity: 0.5;
  }
  50% {
    transform: translate(-8px, -35px);
    opacity: 0.25;
  }
  75% {
    transform: translate(20px, -15px);
    opacity: 0.4;
  }
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, transparent 49.5%, rgba(100, 180, 255, 0.004) 49.8%, rgba(100, 180, 255, 0.004) 50.2%, transparent 50.5%),
    linear-gradient(150deg, transparent 49.5%, rgba(201, 168, 112, 0.004) 49.8%, rgba(201, 168, 112, 0.004) 50.2%, transparent 50.5%),
    linear-gradient(60deg, transparent 49.5%, rgba(100, 180, 255, 0.003) 49.8%, rgba(100, 180, 255, 0.003) 50.2%, transparent 50.5%);
  background-size: 500px 500px, 420px 420px, 360px 360px;
  animation: networkLines 40s linear infinite;
  z-index: 3;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes networkLines {
  0% {
    background-position: 0 0, 50px 50px, 100px 100px;
  }
  100% {
    background-position: 400px 400px, 400px 400px, 400px 400px;
  }
}

/* ================================================
   RESPONSIVE - MEDIA QUERIES LEGACY (DESHABILITADAS)
   Ahora usamos sistema adaptativo basado en JavaScript
   con clases body.device-{tipo}
   ================================================ */

/* DESHABILITADO - Usar body.device-ipad en su lugar
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
    max-width: 100%;
    text-align: center;
  }
  
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.9) 100%
    );
  }
  
  .hero-image {
    object-position: center center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    margin: 0 auto 2.5rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-floating-badge {
    bottom: 2rem;
    right: 2rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
*/

/* DESHABILITADO - Usar body.device-mobile en su lugar
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
*/

/* ========================================
   CÓMO FUNCIONA PELUSHOW SECTION
   ======================================== */

.section-como-funciona {
  /* 1️⃣ Gradiente sutil con centro más claro y bordes oscuros */
  background: radial-gradient(
    ellipse 70% 100% at 50% 20%,
    rgba(18, 22, 20, 1) 0%,
    rgba(14, 17, 15, 1) 35%,
    rgba(11, 15, 14, 1) 70%,
    rgba(8, 11, 10, 1) 100%
  );
  padding: 5rem 0 6rem 0; /* Reducido de 8rem/10rem para eliminar espacios negros */
  position: relative;
  overflow: hidden;
}

/* 5️⃣ Micro-textura ultra sutil */
.section-como-funciona::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.01) 2px,
      rgba(255, 255, 255, 0.01) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.01) 2px,
      rgba(255, 255, 255, 0.01) 4px
    );
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* 1️⃣ Hero de sección - AFINADO CON IMPACTO EMOCIONAL */
/* Badge pedagógico "Entender el sistema" */
.cf-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 182, 128, 0.68);
  background: rgba(212, 182, 128, 0.05);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 182, 128, 0.12);
  margin-bottom: 3rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.1s;
}

.cf-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 10rem auto;
  padding: 6rem 2rem 6rem 2rem; /* 3️⃣ Más espacio vertical alrededor */
  position: relative;
}

/* 2️⃣ Halo suave detrás del headline */
.cf-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 112, 0.08) 0%,
    rgba(180, 150, 100, 0.04) 30%,
    transparent 70%
  );
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.cf-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(255, 252, 245, 0.97);
  margin-bottom: 3.5rem;
  letter-spacing: -0.6px;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 
    0 2px 16px rgba(0, 0, 0, 0.3),
    0 4px 28px rgba(0, 0, 0, 0.15);
}

.cf-subheadline {
  font-size: 1.2rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.62);
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 2️⃣ Flujo de 4 pasos - AFINADO */
.cf-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto 6rem auto; /* Reducido para dar espacio al bloque transición */
  padding: 0 2rem;
}

.cf-step {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 112, 0.12);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  /* Animación de entrada scroll */
  opacity: 0;
  transform: translateY(20px);
}

/* Animación activada por scroll */
.cf-step.animate-in {
  animation: fadeUpStep 0.8s ease-out forwards;
}

.cf-step:nth-child(1).animate-in {
  animation-delay: 0.1s;
}

.cf-step:nth-child(2).animate-in {
  animation-delay: 0.2s;
}

.cf-step:nth-child(3).animate-in {
  animation-delay: 0.3s;
}

.cf-step:nth-child(4).animate-in {
  animation-delay: 0.4s;
}

@keyframes fadeUpStep {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cf-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 112, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cf-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 112, 0.08);
  border: 1px solid rgba(201, 168, 112, 0.20);
  color: rgba(212, 182, 128, 0.92);
  transition: all 0.4s ease;
}

.cf-step:hover .cf-step-icon {
  background: rgba(201, 168, 112, 0.15);
  border-color: rgba(201, 168, 112, 0.40);
  transform: scale(1.08);
}

.cf-step-title {
  font-size: 1.4rem;
  font-weight: 600; /* Incrementado de 500 a 600 para más jerarquía */
  color: rgba(255, 252, 245, 0.95);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.cf-step-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.60); /* Reducido de 0.65 a 0.60 para menos competencia */
  font-weight: 300;
}

/* Bloque de transición emocional - NUEVO */
.cf-transition {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
}

.cf-transition-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 252, 245, 0.55); /* Menor jerarquía, puente emocional */
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* 3️⃣ Motor de bienestar */
.cf-engine {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 8rem auto;
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 112, 0.15);
}

.cf-engine-title {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.95);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.cf-engine-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 252, 245, 0.70);
  margin-bottom: 3rem;
  font-weight: 300;
}

.cf-states {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.cf-state {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.cf-state:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.cf-state-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 20px currentColor;
}

.cf-state-normal .cf-state-indicator {
  background: #4ade80;
  color: #4ade80;
}

.cf-state-preventive .cf-state-indicator {
  background: #fbbf24;
  color: #fbbf24;
}

.cf-state-critical .cf-state-indicator {
  background: #ef4444;
  color: #ef4444;
}

.cf-state-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.92);
  margin-bottom: 0.8rem;
}

.cf-state-text {
  font-size: 0.95rem;
  color: rgba(255, 252, 245, 0.60);
  font-weight: 300;
}

/* 4️⃣ Dónde vive todo esto */
.cf-where {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 8rem auto;
  padding: 0 2rem;
}

.cf-where-title {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(255, 252, 245, 0.95);
  margin-bottom: 3rem;
}

.cf-where-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cf-where-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.15rem;
  color: rgba(255, 252, 245, 0.80);
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 112, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cf-where-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 112, 0.25);
  transform: translateX(8px);
}

.cf-where-item svg {
  color: rgba(212, 182, 128, 0.85);
  flex-shrink: 0;
}

/* 5️⃣ Cierre emocional + CTA */
.cf-closing {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cf-closing-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  line-height: 1.6;
  color: rgba(255, 252, 245, 0.92);
  font-weight: 300;
  margin-bottom: 3rem;
  font-style: italic;
}

.cf-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3rem;
  background: linear-gradient(135deg, rgba(212, 182, 128, 0.15), rgba(201, 168, 112, 0.12));
  border: 1px solid rgba(212, 182, 128, 0.30);
  border-radius: 50px;
  color: rgba(212, 182, 128, 0.95);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cf-cta:hover {
  background: linear-gradient(135deg, rgba(212, 182, 128, 0.25), rgba(201, 168, 112, 0.20));
  border-color: rgba(212, 182, 128, 0.50);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: rgba(212, 182, 128, 1);
}

.cf-cta span:first-child {
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cf-headline {
    font-size: 2rem;
  }
  
  .cf-subheadline {
    font-size: 1.1rem;
  }
  
  .cf-flow {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cf-states {
    grid-template-columns: 1fr;
  }
  
  .cf-closing-quote {
    font-size: 1.5rem;
  }
  
  .cf-cta {
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }
}

/* ========================================
   INTELIGENCIA PREVENTIVA SECTION
   ======================================== */

.section-ia-preventiva {
  background: 
    radial-gradient(
      ellipse 90% 110% at 50% 30%,
      rgba(22, 20, 18, 1) 0%,
      rgba(20, 18, 16, 1) 20%,
      rgba(18, 16, 14, 1) 40%,
      rgba(15, 13, 12, 1) 60%,
      rgba(12, 11, 10, 1) 80%,
      rgba(10, 9, 8, 1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.25) 100%
    );
  padding: 2rem 0 4rem 0 !important; /* Padding razonable: 2rem arriba, 4rem abajo */
  position: relative;
  overflow: hidden;
}

/* Micro-textura mejorada */
.section-ia-preventiva::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.01) 3px,
      rgba(255, 255, 255, 0.01) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.01) 3px,
      rgba(255, 255, 255, 0.01) 4px
    );
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
  animation: textureShift 45s linear infinite;
}

/* Animación ultra lenta de la textura */
@keyframes textureShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(4px, 4px);
  }
}

.section-ia-preventiva .container-wide {
  position: relative;
  z-index: 2;
}

/* 1️⃣ Apertura — Cambio de paradigma */
/* Badge de capa "Inteligencia preventiva PeluShow" */
.ia-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 182, 128, 0.68);
  background: rgba(212, 182, 128, 0.05);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 182, 128, 0.12);
  margin-bottom: 3rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.1s;
}

.ia-hero {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3rem auto; /* Margen inferior moderado */
  padding: 1rem 2rem 1rem 2rem; /* Padding vertical mínimo pero existente */
  position: relative;
}

/* Halo orgánico y suave - Diferenciado de Motor de Protocolos */
.ia-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle at center,
    rgba(180, 150, 120, 0.06) 0%,
    rgba(160, 135, 105, 0.04) 25%,
    rgba(140, 120, 90, 0.025) 50%,
    rgba(120, 100, 80, 0.015) 70%,
    transparent 100%
  );
  filter: blur(100px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  animation: organicGlow 14s ease-in-out infinite;
}

/* Animación más orgánica y lenta */
@keyframes organicGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.ia-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 252, 245, 0.97);
  margin-bottom: 3.5rem;
  letter-spacing: -0.7px;
  position: relative;
  z-index: 1;
  text-shadow: 
    0 2px 18px rgba(0, 0, 0, 0.35),
    0 4px 32px rgba(0, 0, 0, 0.18);
}

.ia-subheadline {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.65);
  font-weight: 300;
  letter-spacing: 0.2px;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  position: relative;
  z-index: 1;
}

/* Frase puente para continuidad */
.ia-bridge {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(212, 182, 128, 0.68);
  font-weight: 400;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

/* 2️⃣ Qué significa prevenir de verdad */
.ia-definition {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 8rem auto;
  padding: 0 2rem;
}

.ia-definition-text {
  font-size: 1.2rem;
  line-height: 2.2;
  color: rgba(255, 252, 245, 0.55);
  font-weight: 300;
  letter-spacing: 0.3px;
  font-style: italic;
}

/* 3️⃣ El corazón de la inteligencia preventiva */
.ia-heart {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 8rem auto;
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(201, 168, 112, 0.10);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.ia-heart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 182, 128, 0.3) 50%,
    transparent 100%
  );
}

.ia-heart-title {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.90);
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
}

.ia-heart-text {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.70);
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* 4️⃣ Cómo actúa la inteligencia preventiva */
.ia-flow {
  max-width: 1200px;
  margin: 0 auto 8rem auto;
  padding: 0 2rem;
}

.ia-flow-title {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(255, 252, 245, 0.92);
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.3px;
}

.ia-cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.ia-cycle-step {
  text-align: center;
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 112, 0.08);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
}

.ia-cycle-step::after {
  content: '→';
  position: absolute;
  right: -1.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(212, 182, 128, 0.25);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ia-cycle-step:nth-child(4)::after {
  content: '↻';
  right: auto;
  left: 50%;
  top: auto;
  bottom: -2.5rem;
  transform: translateX(-50%);
}

.ia-cycle-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 112, 0.20);
  transform: translateY(-8px);
}

.ia-cycle-step:hover::after {
  opacity: 1;
}

.ia-cycle-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 112, 0.06);
  border: 1px solid rgba(201, 168, 112, 0.15);
  color: rgba(212, 182, 128, 0.85);
  transition: all 0.5s ease;
}

.ia-cycle-step:hover .ia-cycle-icon {
  background: rgba(201, 168, 112, 0.12);
  border-color: rgba(201, 168, 112, 0.30);
  transform: scale(1.1);
}

.ia-cycle-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.92);
  margin-bottom: 1rem;
}

.ia-cycle-step-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.58);
  font-weight: 300;
}

/* 5️⃣ De datos a decisiones simples */
.ia-simplify {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 8rem auto;
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 112, 0.10);
}

.ia-simplify-title {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.92);
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}

.ia-simplify-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 252, 245, 0.65);
  margin-bottom: 3.5rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ia-states {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.ia-state {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.ia-state:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-6px);
}

.ia-state-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: 0 auto 1.8rem auto;
  box-shadow: 0 0 24px currentColor;
}

.ia-state-ok .ia-state-indicator {
  background: #4ade80;
  color: #4ade80;
}

.ia-state-cambio .ia-state-indicator {
  background: #fbbf24;
  color: #fbbf24;
}

.ia-state-atencion .ia-state-indicator {
  background: #ef4444;
  color: #ef4444;
}

.ia-state-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.92);
  margin-bottom: 1rem;
}

.ia-state-text {
  font-size: 0.95rem;
  color: rgba(255, 252, 245, 0.58);
  font-weight: 300;
  line-height: 1.6;
}

/* 6️⃣ Qué cambia para ti */
.ia-benefits {
  max-width: 1100px;
  margin: 0 auto 8rem auto;
  padding: 0 2rem;
}

.ia-benefits-title {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(255, 252, 245, 0.92);
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.3px;
}

.ia-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.ia-benefit {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.015);
  border-left: 2px solid rgba(212, 182, 128, 0.20);
  border-radius: 8px;
  transition: all 0.4s ease;
}

.ia-benefit:hover {
  background: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(212, 182, 128, 0.50);
  transform: translateX(8px);
}

.ia-benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.88);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.ia-benefit-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.55);
  font-weight: 300;
}

/* 7️⃣ Cierre — Nueva forma de cuidar */
.ia-closing {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ia-closing-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  line-height: 1.6;
  color: rgba(255, 252, 245, 0.92);
  font-weight: 300;
  margin-bottom: 4rem;
  font-style: italic;
}

.ia-ctas {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ia-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  background: linear-gradient(135deg, rgba(212, 182, 128, 0.18), rgba(201, 168, 112, 0.15));
  border: 1px solid rgba(212, 182, 128, 0.35);
  border-radius: 50px;
  color: rgba(212, 182, 128, 0.95);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.ia-cta-primary:hover {
  background: linear-gradient(135deg, rgba(212, 182, 128, 0.28), rgba(201, 168, 112, 0.22));
  border-color: rgba(212, 182, 128, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  color: rgba(212, 182, 128, 1);
}

.ia-cta-primary span:first-child {
  font-size: 1.4rem;
}

.ia-cta-secondary {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  color: rgba(255, 252, 245, 0.70);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.ia-cta-secondary:hover {
  color: rgba(212, 182, 128, 0.95);
  border-color: rgba(212, 182, 128, 0.30);
  background: rgba(201, 168, 112, 0.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .ia-cycle {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ia-cycle-step:nth-child(2)::after,
  .ia-cycle-step:nth-child(4)::after {
    content: none;
  }
}

@media (max-width: 768px) {
  .ia-headline {
    font-size: 2rem;
  }
  
  .ia-subheadline {
    font-size: 1.1rem;
  }
  
  .ia-cycle {
    grid-template-columns: 1fr;
  }
  
  .ia-cycle-step::after {
    content: none;
  }
  
  .ia-states {
    grid-template-columns: 1fr;
  }
  
  .ia-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .ia-closing-quote {
    font-size: 1.6rem;
  }
  
  .ia-ctas {
    flex-direction: column;
  }
  
  .ia-cta-primary {
    padding: 1.3rem 2.5rem;
    font-size: 1rem;
  }
}

/* ========================================
   PÁGINA DE ACTIVACIÓN DE BIENESTAR
   ======================================== */

.section-activacion {
  background: radial-gradient(
    ellipse 65% 100% at 50% 15%,
    rgba(14, 18, 16, 1) 0%,
    rgba(10, 14, 12, 1) 50%,
    rgba(7, 10, 9, 1) 100%
  );
  padding: 6rem 0 10rem 0;
  position: relative;
  overflow: hidden;
}

/* Micro-textura */
.section-activacion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.006) 2px,
      rgba(255, 255, 255, 0.006) 4px
    );
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.section-activacion .container-wide {
  position: relative;
  z-index: 2;
}

/* 1️⃣ Hero de activación */
.act-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 8rem auto;
  padding: 0 2rem;
}

.act-badge {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  background: rgba(201, 168, 112, 0.08);
  border: 1px solid rgba(201, 168, 112, 0.20);
  border-radius: 50px;
  color: rgba(212, 182, 128, 0.90);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
}

.act-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 252, 245, 0.96);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.act-subheadline {
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(255, 252, 245, 0.65);
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.act-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 3.5rem;
  background: linear-gradient(135deg, rgba(212, 182, 128, 0.20), rgba(201, 168, 112, 0.16));
  border: 1px solid rgba(212, 182, 128, 0.40);
  border-radius: 50px;
  color: rgba(212, 182, 128, 0.98);
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.30);
}

.act-cta-primary:hover {
  background: linear-gradient(135deg, rgba(212, 182, 128, 0.30), rgba(201, 168, 112, 0.24));
  border-color: rgba(212, 182, 128, 0.60);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.40);
  color: rgba(212, 182, 128, 1);
}

.act-cta-primary span:first-child {
  font-size: 1.5rem;
}

/* 2️⃣ Dimensión de bienestar */
.act-dimension {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 8rem auto;
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(201, 168, 112, 0.12);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.act-dimension::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 182, 128, 0.35) 50%,
    transparent 100%
  );
}

.act-dimension-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.act-dimension-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.92);
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}

.act-dimension-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 252, 245, 0.65);
  font-weight: 300;
}

/* Títulos de sección */
.act-section-title {
  font-size: 2rem;
  font-weight: 500;
  color: rgba(255, 252, 245, 0.92);
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.3px;
}

/* 3️⃣ Qué ayuda a prevenir */
.act-prevention {
  max-width: 1100px;
  margin: 0 auto 8rem auto;
  padding: 0 2rem;
}

.act-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.act-problem {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
}

.act-problem:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(201, 168, 112, 0.15);
  transform: translateY(-6px);
}

.act-problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.act-problem-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.88);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.act-problem-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.58);
  font-weight: 300;
}

/* 4️⃣ Integración al ecosistema */
.act-integration {
  max-width: 900px;
  margin: 0 auto 8rem auto;
  padding: 0 2rem;
}

.act-integration-card {
  padding: 3.5rem 3rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 168, 112, 0.12);
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.act-integration-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 182, 128, 0.25) 50%,
    transparent 100%
  );
}

.act-integration-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.act-integration-text {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.70);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

/* 5️⃣ Qué desbloquea */
.act-unlocks {
  max-width: 1100px;
  margin: 0 auto 8rem auto;
  padding: 0 2rem;
}

.act-unlocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.act-unlock {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.012);
  border-left: 2px solid rgba(212, 182, 128, 0.25);
  border-radius: 8px;
  transition: all 0.4s ease;
}

.act-unlock:hover {
  background: rgba(255, 255, 255, 0.025);
  border-left-color: rgba(212, 182, 128, 0.55);
  transform: translateX(10px);
}

.act-unlock-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.act-unlock-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.88);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.act-unlock-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.58);
  font-weight: 300;
}

/* 6️⃣ Cierre */
.act-closing {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.act-closing-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.85);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 3rem;
}

.act-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  background: linear-gradient(135deg, rgba(212, 182, 128, 0.18), rgba(201, 168, 112, 0.15));
  border: 1px solid rgba(212, 182, 128, 0.35);
  border-radius: 50px;
  color: rgba(212, 182, 128, 0.95);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.act-cta-final:hover {
  background: linear-gradient(135deg, rgba(212, 182, 128, 0.28), rgba(201, 168, 112, 0.22));
  border-color: rgba(212, 182, 128, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  color: rgba(212, 182, 128, 1);
}

.act-cta-final span:first-child {
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .act-problems-grid {
    grid-template-columns: 1fr;
  }
  
  .act-unlocks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .act-headline {
    font-size: 2.2rem;
  }
  
  .act-subheadline {
    font-size: 1.1rem;
  }
  
  .act-cta-primary {
    padding: 1.3rem 2.5rem;
    font-size: 1rem;
  }
}

/* ================================================
   SECCIÓN BIENESTAR ESENCIAL
   Productos no inteligentes - Hábitos saludables
   ================================================ */

.section-esencial {
  background: linear-gradient(180deg, 
    rgb(8, 11, 10) 0%, 
    rgb(12, 15, 13) 25%, 
    rgb(14, 17, 15) 50%, 
    rgb(12, 15, 13) 75%, 
    rgb(10, 13, 11) 100%
  );
  padding: 6rem 0 8rem 0;
  position: relative;
}

.section-esencial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.01) 0px,
    transparent 1px,
    transparent 4px
  ),
  repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.01) 0px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.25;
  pointer-events: none;
}

.esencial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

/* Hero Bienestar Esencial */
.esencial-hero {
  text-align: center;
  margin-bottom: 6rem;
  padding: 4rem 2rem;
}

.esencial-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(212, 182, 128, 0.08);
  border: 1px solid rgba(212, 182, 128, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.esencial-headline {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 252, 245, 0.95);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.esencial-subheadline {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 252, 245, 0.58);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Hábitos saludables */
.esencial-habits {
  margin-bottom: 5rem;
}

.esencial-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 252, 245, 0.92);
  margin-bottom: 3rem;
  letter-spacing: -0.3px;
}

.esencial-habits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.esencial-habit {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(201, 168, 112, 0.10);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.esencial-habit:hover {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(201, 168, 112, 0.20);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.esencial-habit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: grayscale(0.3) brightness(1.1);
}

.esencial-habit-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.90);
  margin-bottom: 0.8rem;
}

.esencial-habit-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 252, 245, 0.55);
}

/* Qué los hace diferentes */
.esencial-diferencia {
  margin-bottom: 5rem;
}

.esencial-diferencia-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.esencial-diferencia-item {
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.012);
  border-left: 3px solid rgba(212, 182, 128, 0.25);
  border-radius: 8px;
}

.esencial-diferencia-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(212, 182, 128, 0.88);
  margin-bottom: 0.6rem;
}

.esencial-diferencia-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.60);
}

/* Colección de productos */
.esencial-coleccion {
  margin-bottom: 5rem;
}

.esencial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.esencial-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(201, 168, 112, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.esencial-card:hover {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(201, 168, 112, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.esencial-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.05) 0%, 
    rgba(201, 168, 112, 0.03) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(201, 168, 112, 0.10);
}

.esencial-placeholder {
  font-size: 4rem;
  filter: grayscale(0.2) brightness(1.05);
}

.esencial-card-content {
  padding: 1.5rem;
}

.esencial-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.92);
  margin-bottom: 0.6rem;
}

.esencial-card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 252, 245, 0.55);
  margin-bottom: 1.2rem;
}

.esencial-card-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 182, 128, 0.25);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.esencial-card-cta:hover {
  color: rgba(212, 182, 128, 1);
  border-bottom-color: rgba(212, 182, 128, 0.65);
}

/* Cierre */
.esencial-closing {
  text-align: center;
  padding: 3rem 2rem;
}

.esencial-closing-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 252, 245, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .esencial-habits-grid {
    grid-template-columns: 1fr;
  }
  
  .esencial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .esencial-headline {
    font-size: 2rem;
  }
  
  .esencial-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   SECCIÓN MOTOR DE PROTOCOLOS
   Criterio, confianza y acompañamiento
   ================================================ */

.section-motor {
  background: 
    radial-gradient(
      ellipse 95% 120% at 50% 35%,
      rgba(18, 22, 20, 1) 0%,
      rgba(16, 19, 18, 1) 15%,
      rgba(14, 17, 16, 1) 30%,
      rgba(12, 15, 14, 1) 50%,
      rgba(10, 13, 12, 1) 70%,
      rgba(8, 11, 10, 1) 85%,
      rgba(6, 9, 8, 1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.35) 80%,
      rgba(0, 0, 0, 0.45) 100%
    );
  padding: 11rem 0 12rem 0;
  position: relative;
  overflow: hidden;
}

/* Textura orgánica con peso y decisión */
.section-motor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 0.012) 5px,
      rgba(255, 255, 255, 0.012) 6px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 0.01) 5px,
      rgba(255, 255, 255, 0.01) 6px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.008) 3px,
      rgba(255, 255, 255, 0.008) 4px
    );
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.motor-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* 1️⃣ Hero de Sección */
/* 1️⃣ Hero de Sección - Umbral de decisión */
.motor-hero {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 10rem auto;
  padding: 8rem 2rem 6rem 2rem;
  position: relative;
}

/* Micro-label anclaje semántico */
.motor-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 182, 128, 0.70);
  background: rgba(212, 182, 128, 0.06);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 182, 128, 0.15);
  margin-bottom: 3.6rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

@keyframes labelFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Nodo de decisión visual */
.motor-decision-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: 
    radial-gradient(
      circle at center,
      rgba(212, 182, 128, 0.08) 0%,
      rgba(201, 168, 112, 0.05) 20%,
      rgba(180, 150, 100, 0.03) 40%,
      rgba(160, 130, 85, 0.015) 60%,
      transparent 80%
    );
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: nodeBreath 8s ease-in-out infinite;
}

@keyframes nodeBreath {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* Forma geométrica orgánica sutil */
.motor-decision-node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: 
    radial-gradient(
      circle at center,
      rgba(212, 182, 128, 0.15) 0%,
      rgba(212, 182, 128, 0.08) 50%,
      transparent 100%
    );
  border-radius: 50%;
  border: 1px solid rgba(212, 182, 128, 0.18);
  box-shadow: 
    0 0 40px rgba(212, 182, 128, 0.25),
    inset 0 2px 10px rgba(212, 182, 128, 0.12);
  animation: nodePulse 4s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.motor-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 252, 245, 0.97);
  margin-bottom: 3rem;
  letter-spacing: -0.6px;
  position: relative;
  z-index: 1;
  text-shadow: 
    0 2px 20px rgba(0, 0, 0, 0.4),
    0 4px 35px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: headlineFadeIn 1.2s ease forwards;
  animation-delay: 0.5s;
}

@keyframes headlineFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.motor-subheadline {
  font-size: 1.2rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.62);
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: contentFadeIn 1.4s ease forwards;
  animation-delay: 0.8s;
}

@keyframes contentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA secundario discreto */
.motor-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.78);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border: 1px solid rgba(212, 182, 128, 0.18);
  border-radius: 50px;
  background: rgba(212, 182, 128, 0.04);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  animation: ctaFadeIn 1.5s ease forwards;
  animation-delay: 1.2s;
  z-index: 1;
}

@keyframes ctaFadeIn {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.motor-hero-cta svg {
  transition: transform 0.3s ease;
}

.motor-hero-cta:hover {
  color: rgba(212, 182, 128, 0.95);
  border-color: rgba(212, 182, 128, 0.32);
  background: rgba(212, 182, 128, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.motor-hero-cta:hover svg {
  transform: translateY(3px);
}

/* 2️⃣ Bloque Explicativo */
.motor-explicativo {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 7rem auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(201, 168, 112, 0.12);
  border-radius: 16px;
}

.motor-explicativo-text {
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.68);
  font-weight: 300;
  font-style: italic;
}

/* 3️⃣ Tres Niveles de Respuesta */
.motor-niveles {
  margin-bottom: 7rem;
}

.motor-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 252, 245, 0.94);
  margin-bottom: 3.5rem;
  letter-spacing: -0.3px;
}

.motor-niveles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}

.motor-nivel {
  background: 
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.022) 100%
    );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 112, 0.15);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Card central con mayor protagonismo */
.motor-nivel-preventivo {
  transform: scale(1.05);
  z-index: 2;
}

.motor-nivel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: all 0.4s ease;
}

/* Estado Normal - Verde suave */
.motor-nivel-normal {
  border-color: rgba(120, 180, 140, 0.18);
}

.motor-nivel-normal::before {
  background: linear-gradient(90deg, 
    rgba(120, 180, 140, 0.65),
    rgba(100, 160, 120, 0.65)
  );
}

.motor-nivel-normal .motor-nivel-indicator {
  background: 
    radial-gradient(
      circle at center,
      rgba(120, 180, 140, 0.25) 0%,
      rgba(120, 180, 140, 0.12) 100%
    );
  border: 2px solid rgba(120, 180, 140, 0.35);
  box-shadow: 
    0 0 25px rgba(120, 180, 140, 0.3),
    inset 0 2px 8px rgba(120, 180, 140, 0.15);
}

/* Estado Preventivo - Amarillo ámbar discreto */
.motor-nivel-preventivo {
  border-color: rgba(220, 180, 100, 0.22);
}

.motor-nivel-preventivo::before {
  background: linear-gradient(90deg, 
    rgba(220, 180, 100, 0.7),
    rgba(200, 160, 80, 0.7)
  );
  height: 5px; /* Ligeramente más alto */
}

.motor-nivel-preventivo .motor-nivel-indicator {
  background: 
    radial-gradient(
      circle at center,
      rgba(220, 180, 100, 0.28) 0%,
      rgba(220, 180, 100, 0.15) 100%
    );
  border: 2px solid rgba(220, 180, 100, 0.4);
  box-shadow: 
    0 0 30px rgba(220, 180, 100, 0.35),
    inset 0 2px 8px rgba(220, 180, 100, 0.18);
  width: 70px; /* Ligeramente más grande */
  height: 70px;
}

/* Estado Crítico - Rojo profundo controlado */
.motor-nivel-critico {
  border-color: rgba(180, 100, 90, 0.20);
}

.motor-nivel-critico::before {
  background: linear-gradient(90deg, 
    rgba(180, 100, 90, 0.68),
    rgba(160, 80, 70, 0.68)
  );
}

.motor-nivel-critico .motor-nivel-indicator {
  background: 
    radial-gradient(
      circle at center,
      rgba(180, 100, 90, 0.27) 0%,
      rgba(180, 100, 90, 0.14) 100%
    );
  border: 2px solid rgba(180, 100, 90, 0.38);
  box-shadow: 
    0 0 28px rgba(180, 100, 90, 0.32),
    inset 0 2px 8px rgba(180, 100, 90, 0.16);
}

.motor-nivel:hover {
  background: 
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.048) 0%,
      rgba(255, 255, 255, 0.032) 100%
    );
  border-color: rgba(201, 168, 112, 0.28);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.motor-nivel-preventivo:hover {
  transform: translateY(-8px) scale(1.05); /* Mantiene escala */
}

.motor-nivel-indicator {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Punto central sutil */
.motor-nivel-indicator::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
}

.motor-nivel-normal .motor-nivel-indicator::after {
  background: rgba(120, 180, 140, 0.75);
  box-shadow: 0 0 12px rgba(120, 180, 140, 0.6);
}

.motor-nivel-preventivo .motor-nivel-indicator::after {
  background: rgba(220, 180, 100, 0.8);
  box-shadow: 0 0 14px rgba(220, 180, 100, 0.65);
  width: 18px;
  height: 18px;
}

.motor-nivel-critico .motor-nivel-indicator::after {
  background: rgba(180, 100, 90, 0.77);
  box-shadow: 0 0 13px rgba(180, 100, 90, 0.62);
}

.motor-nivel:hover .motor-nivel-indicator {
  transform: scale(1.12);
}

.motor-nivel-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 252, 245, 0.96);
  margin-bottom: 1.2rem;
  letter-spacing: -0.2px;
}

.motor-nivel-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 252, 245, 0.68);
  font-weight: 300;
}

/* 4️⃣ Decisión Basada en Contexto */
.motor-contexto {
  margin-bottom: 6rem;
  text-align: center;
}

.motor-contexto-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 252, 245, 0.65);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.motor-contexto-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.motor-contexto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.motor-contexto-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 182, 128, 0.08);
  border: 1px solid rgba(212, 182, 128, 0.18);
  color: rgba(212, 182, 128, 0.85);
  transition: all 0.3s ease;
}

.motor-contexto-item:hover .motor-contexto-icon {
  background: rgba(212, 182, 128, 0.12);
  border-color: rgba(212, 182, 128, 0.28);
  transform: scale(1.08);
}

.motor-contexto-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 252, 245, 0.75);
}

/* 5️⃣ Beneficios para el Usuario */
.motor-beneficios {
  margin-bottom: 6rem;
}

.motor-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.motor-beneficio {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.015);
  border-left: 3px solid rgba(212, 182, 128, 0.25);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.motor-beneficio:hover {
  background: rgba(255, 255, 255, 0.025);
  border-left-color: rgba(212, 182, 128, 0.45);
  transform: translateX(6px);
}

.motor-beneficio-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 182, 128, 0.12);
  border-radius: 50%;
  color: rgba(212, 182, 128, 0.90);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.motor-beneficio-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 252, 245, 0.85);
}

/* 6️⃣ Cierre */
.motor-closing {
  text-align: center;
  padding: 4rem 2rem;
}

.motor-closing-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 252, 245, 0.80);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.motor-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 3rem;
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.15), 
    rgba(201, 168, 112, 0.12)
  );
  border: 1px solid rgba(212, 182, 128, 0.28);
  border-radius: 50px;
  color: rgba(212, 182, 128, 0.92);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.motor-cta:hover {
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.22), 
    rgba(201, 168, 112, 0.18)
  );
  border-color: rgba(212, 182, 128, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: rgba(212, 182, 128, 1);
}

.motor-cta svg {
  transition: transform 0.3s ease;
}

.motor-cta:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .motor-niveles-grid {
    grid-template-columns: 1fr;
  }
  
  .motor-beneficios-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .motor-headline {
    font-size: 2.2rem;
  }
  
  .motor-contexto-items {
    flex-direction: column;
    gap: 2rem;
  }
}

/* ================================================
   TRANSICIONES ORGÁNICAS ENTRE SECCIONES
   Continuidad visual sin delimitadores explícitos
   ================================================ */

/* Variaciones progresivas de fondo entre secciones */

/* Cómo funciona → IA Preventiva: Transición gradual a fondo más profundo */
/* IA Preventiva: sin padding extra - usar solo el de arriba */

.section-ia-preventiva::after {
  content: '';
  position: absolute;
  top: -8rem;
  left: 0;
  right: 0;
  height: 16rem;
  background: linear-gradient(
    180deg,
    rgba(12, 15, 13, 0) 0%,
    rgba(10, 13, 11, 0.15) 25%,
    rgba(8, 11, 10, 0.35) 50%,
    rgba(6, 9, 8, 0.55) 75%,
    rgba(6, 9, 8, 1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* IA Preventiva → Motor Protocolos: Transición con textura sutil */
.section-motor {
  padding-top: 11rem !important; /* +2rem de ritmo vertical */
  position: relative;
}

.section-motor::after {
  content: '';
  position: absolute;
  top: -10rem;
  left: 0;
  right: 0;
  height: 18rem;
  background: 
    linear-gradient(
      180deg,
      rgba(6, 9, 8, 0) 0%,
      rgba(8, 11, 10, 0.12) 20%,
      rgba(10, 13, 12, 0.28) 40%,
      rgba(12, 15, 14, 0.48) 60%,
      rgba(14, 17, 16, 0.75) 80%,
      rgba(16, 19, 18, 1) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Micro-transición: Curva de textura orgánica */
.section-motor::before {
  z-index: 0 !important; /* Debajo del fade */
}

/* Headlines con entrada sutil */
.cf-headline,
.ia-headline,
.motor-headline {
  animation: headlineFadeIn 1.2s ease-out both;
  animation-delay: 0.2s;
}

@keyframes headlineFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ritmo vertical: Más aire al inicio de cada sección */
.cf-hero {
  padding-top: 3rem !important; /* Reducido de 6rem */
  margin-bottom: 4rem !important; /* Reducido de 12rem */
}

.ia-hero {
  padding-top: 1rem !important; /* Padding mínimo pero existente */
  margin-bottom: 3rem !important; /* Espacio moderado */
}

.motor-hero {
  padding-top: 7rem !important; /* +2rem */
  margin-bottom: 10rem !important; /* +2rem */
}

/* Transición de textura: Desplazamiento muy lento */
.section-ia-preventiva::before {
  animation: textureDrift 60s linear infinite;
}

.section-motor::before {
  animation: textureDrift 75s linear infinite reverse;
}

@keyframes textureDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5px, 5px);
  }
}

/* Ajuste de z-index para capas correctas */
.section-ia-preventiva .container-wide,
.motor-container {
  position: relative;
  z-index: 3 !important;
}

/* Fade progresivo en contenido al entrar */
.cf-flow,
.ia-niveles,
.motor-niveles {
  animation: contentFadeIn 1.5s ease-out both;
  animation-delay: 0.4s;
}

@keyframes contentFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Desactivar animaciones en movimiento rápido */
@media (prefers-reduced-motion: reduce) {
  .cf-label,
  .cf-headline,
  .ia-label,
  .ia-headline,
  .motor-headline,
  .motor-label,
  .motor-subheadline,
  .motor-hero-cta,
  .perfil-label,
  .perfil-headline,
  .perfil-subheadline,
  .disp-label,
  .conn-label,
  .app-label,
  .cf-flow,
  .ia-niveles,
  .motor-niveles {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .section-ia-preventiva::before,
  .section-motor::before,
  .section-perfil::before,
  .section-perfil::after,
  .section-conectividad::before {
    animation: none !important;
  }
  
  .motor-decision-node,
  .motor-decision-node::after,
  .ia-hero::before {
    animation: none !important;
  }
}

/* Indicador sutil de sección activa en navbar (opcional) */
.navbar.scrolled .nav-link {
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-link:hover {
  color: rgba(212, 182, 128, 0.95);
  font-weight: 500;
}

/* ========================================
   SECCIÓN PERFIL DIGITAL
   Identidad viva, cercana y personalizada
   ======================================== */

/* 🎨 Fondo con calidez sutil */
.section-perfil {
  position: relative;
  background: 
    radial-gradient(
      ellipse 80% 100% at 50% 30%,
      rgba(25, 20, 18, 1) 0%,
      rgba(22, 18, 16, 1) 25%,
      rgba(20, 16, 14, 1) 50%,
      rgba(18, 14, 12, 1) 75%,
      rgba(15, 12, 10, 1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.6) 100%
    );
  padding: 10rem 0 12rem 0;
  overflow: hidden;
}

/* Textura orgánica más suave */
.section-perfil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(212, 182, 128, 0.015) 3px,
      rgba(212, 182, 128, 0.015) 6px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(212, 182, 128, 0.015) 3px,
      rgba(212, 182, 128, 0.015) 6px
    );
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  animation: textureDrift 70s linear infinite;
}

/* Halo cálido central */
.section-perfil::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: 
    radial-gradient(
      circle at center,
      rgba(212, 182, 128, 0.06) 0%,
      rgba(201, 168, 112, 0.04) 30%,
      rgba(180, 150, 100, 0.02) 60%,
      transparent 100%
    );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: warmGlow 10s ease-in-out infinite;
}

@keyframes warmGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.1);
  }
}

/* 1️⃣ Hero de sección */
.perfil-hero {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 10rem auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.perfil-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 182, 128, 0.65);
  background: rgba(212, 182, 128, 0.05);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 182, 128, 0.12);
  margin-bottom: 3.5rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

.perfil-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 252, 245, 0.96);
  margin-bottom: 3rem;
  letter-spacing: -0.7px;
  position: relative;
  z-index: 1;
  text-shadow: 
    0 2px 18px rgba(0, 0, 0, 0.35),
    0 4px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  animation: headlineFadeIn 1.2s ease forwards;
  animation-delay: 0.5s;
}

.perfil-subheadline {
  font-size: 1.2rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.58);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: contentFadeIn 1.4s ease forwards;
  animation-delay: 0.8s;
}

/* 2️⃣ Bloque explicativo */
.perfil-explicativo {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 9rem auto;
  padding: 3.5rem 2.5rem;
  background: 
    linear-gradient(
      135deg,
      rgba(212, 182, 128, 0.04) 0%,
      rgba(201, 168, 112, 0.02) 100%
    );
  border: 1px solid rgba(212, 182, 128, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.perfil-explicativo-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.7);
  font-weight: 300;
}

/* 3️⃣ Proceso de construcción */
.perfil-proceso {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
}

.perfil-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 252, 245, 0.92);
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: -0.3px;
}

.perfil-proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.perfil-paso {
  background: 
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
  border: 1px solid rgba(212, 182, 128, 0.12);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
}

.perfil-paso::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(212, 182, 128, 0.3) 0%,
    rgba(201, 168, 112, 0.2) 50%,
    rgba(180, 150, 100, 0.1) 100%
  );
  border-radius: 20px 20px 0 0;
}

.perfil-paso:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 182, 128, 0.25);
  background: 
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.02) 100%
    );
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(212, 182, 128, 0.08) inset;
}

.perfil-paso-numero {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(212, 182, 128, 0.4);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.perfil-paso-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.9);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.perfil-paso-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 252, 245, 0.6);
  font-weight: 300;
}

/* 4️⃣ Qué incluye el perfil */
.perfil-incluye {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
}

.perfil-incluye-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 0 2rem;
}

.perfil-dimension {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(212, 182, 128, 0.08);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
}

.perfil-dimension:hover {
  border-color: rgba(212, 182, 128, 0.18);
  background: rgba(255, 255, 255, 0.025);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.perfil-dimension-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.88);
  margin-bottom: 0.8rem;
  letter-spacing: -0.2px;
}

.perfil-dimension-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.55);
  font-weight: 300;
}

.perfil-incluye-microcopy {
  text-align: center;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(212, 182, 128, 0.6);
  margin-top: 2rem;
}

/* 5️⃣ Beneficios */
.perfil-beneficios {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
}

.perfil-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.perfil-beneficio {
  background: 
    linear-gradient(
      135deg,
      rgba(212, 182, 128, 0.05) 0%,
      rgba(201, 168, 112, 0.02) 100%
    );
  border: 1px solid rgba(212, 182, 128, 0.15);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.5s ease;
}

.perfil-beneficio:hover {
  border-color: rgba(212, 182, 128, 0.3);
  background: 
    linear-gradient(
      135deg,
      rgba(212, 182, 128, 0.08) 0%,
      rgba(201, 168, 112, 0.04) 100%
    );
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.perfil-beneficio-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 182, 128, 0.08);
  border: 1px solid rgba(212, 182, 128, 0.2);
  border-radius: 12px;
}

.perfil-beneficio-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.9);
  margin-bottom: 0.8rem;
  letter-spacing: -0.2px;
}

.perfil-beneficio-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.6);
  font-weight: 300;
}

/* 6️⃣ Cierre emocional */
.perfil-cierre {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.perfil-cierre-frase {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 252, 245, 0.92);
  margin-bottom: 3rem;
  letter-spacing: -0.3px;
  font-style: italic;
}

.perfil-cta {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.92);
  text-decoration: none;
  padding: 1.4rem 3.2rem;
  border: 1px solid rgba(212, 182, 128, 0.3);
  border-radius: 50px;
  background: 
    linear-gradient(
      135deg,
      rgba(212, 182, 128, 0.12) 0%,
      rgba(201, 168, 112, 0.08) 100%
    );
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 
    0 8px 28px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(212, 182, 128, 0.05) inset;
}

.perfil-cta:hover {
  color: rgba(255, 252, 245, 0.98);
  border-color: rgba(212, 182, 128, 0.5);
  background: 
    linear-gradient(
      135deg,
      rgba(212, 182, 128, 0.2) 0%,
      rgba(201, 168, 112, 0.15) 100%
    );
  transform: translateY(-4px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 182, 128, 0.15) inset;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .perfil-proceso-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .perfil-beneficios-grid {
    grid-template-columns: 1fr;
  }

  .perfil-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .perfil-incluye-grid {
    grid-template-columns: 1fr;
  }

  .perfil-beneficio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .perfil-headline {
    font-size: 2rem;
  }

  .perfil-cierre-frase {
    font-size: 1.8rem;
  }
}

/* ========================================
   SECCIÓN DISPOSITIVOS INTELIGENTES
   Los sentidos del ecosistema, no el producto
   ======================================== */

/* Fondo silencioso y no invasivo */
.section-dispositivos {
  position: relative;
  background: 
    radial-gradient(
      ellipse 85% 100% at 50% 20%,
      rgba(18, 16, 15, 1) 0%,
      rgba(16, 14, 13, 1) 30%,
      rgba(14, 12, 11, 1) 60%,
      rgba(12, 10, 9, 1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
  padding: 10rem 0 12rem 0;
  overflow: hidden;
}

/* Textura ultra sutil */
.section-dispositivos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(255, 255, 255, 0.008) 4px,
      rgba(255, 255, 255, 0.008) 8px
    );
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

/* 1️⃣ Hero de sección */
.disp-hero {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 10rem auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.disp-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 182, 128, 0.65);
  background: rgba(212, 182, 128, 0.04);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 182, 128, 0.1);
  margin-bottom: 3rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.1s;
}

.disp-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 252, 245, 0.95);
  margin-bottom: 3rem;
  letter-spacing: -0.6px;
  position: relative;
  z-index: 1;
}

.disp-subheadline {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.6);
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 2️⃣ Propósito de los dispositivos */
.disp-purpose {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 9rem auto;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(212, 182, 128, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.disp-purpose-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.68);
  font-weight: 300;
}

/* 3️⃣ Fuentes de señal */
.disp-sources {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
}

.disp-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: rgba(255, 252, 245, 0.9);
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: -0.3px;
}

.disp-sources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.disp-device {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(212, 182, 128, 0.1);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.disp-device:hover {
  border-color: rgba(212, 182, 128, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disp-device-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 182, 128, 0.06);
  border: 1px solid rgba(212, 182, 128, 0.15);
  border-radius: 14px;
  color: rgba(212, 182, 128, 0.7);
}

.disp-device-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.88);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.disp-device-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 252, 245, 0.58);
  font-weight: 300;
}

/* 4️⃣ Integración al ecosistema */
.disp-integration {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.disp-integration-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.65);
  font-weight: 300;
  max-width: 850px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
}

.disp-integration-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.disp-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.disp-flow-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 182, 128, 0.05);
  border: 1px solid rgba(212, 182, 128, 0.12);
  border-radius: 50%;
  color: rgba(212, 182, 128, 0.65);
}

.disp-flow-label {
  font-size: 0.9rem;
  color: rgba(255, 252, 245, 0.6);
  font-weight: 400;
}

.disp-flow-arrow {
  font-size: 1.5rem;
  color: rgba(212, 182, 128, 0.4);
  font-weight: 300;
}

/* 5️⃣ Lo que NO hacen */
.disp-limits {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 10rem auto;
  padding: 3.5rem 3rem;
  background: 
    linear-gradient(
      135deg,
      rgba(212, 182, 128, 0.04) 0%,
      rgba(201, 168, 112, 0.02) 100%
    );
  border: 1px solid rgba(212, 182, 128, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.disp-limits-text {
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.75);
  font-weight: 400;
}

/* 6️⃣ Cierre + CTA */
.disp-cierre {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.disp-cierre-frase {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 252, 245, 0.9);
  margin-bottom: 3rem;
  letter-spacing: -0.3px;
  font-style: italic;
}

.disp-cta {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.88);
  text-decoration: none;
  padding: 1.3rem 3rem;
  border: 1px solid rgba(212, 182, 128, 0.25);
  border-radius: 50px;
  background: rgba(212, 182, 128, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.disp-cta:hover {
  color: rgba(255, 252, 245, 0.95);
  border-color: rgba(212, 182, 128, 0.4);
  background: rgba(212, 182, 128, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .disp-sources-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .disp-integration-flow {
    flex-direction: column;
    gap: 2rem;
  }

  .disp-flow-arrow {
    transform: rotate(90deg);
  }

  .disp-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .disp-headline {
    font-size: 2rem;
  }

  .disp-cierre-frase {
    font-size: 1.6rem;
  }
}

/* ========================================
   SECCIÓN CONECTIVIDAD Y DATOS
   Continuidad, contexto y confiabilidad
   ======================================== */

/* Fondo con sensación de flujo */
.section-conectividad {
  position: relative;
  background: 
    radial-gradient(
      ellipse 90% 105% at 50% 25%,
      rgba(20, 18, 17, 1) 0%,
      rgba(17, 15, 14, 1) 30%,
      rgba(14, 12, 11, 1) 60%,
      rgba(11, 9, 8, 1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.35) 100%
    );
  padding: 10rem 0 12rem 0;
  overflow: hidden;
}

/* Textura de flujo sutil */
.section-conectividad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(212, 182, 128, 0.01) 40px,
      rgba(212, 182, 128, 0.01) 80px
    );
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
  animation: flowShift 60s linear infinite;
}

@keyframes flowShift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(80px) translateY(80px);
  }
}

/* 1️⃣ Hero de sección */
.conn-hero {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 10rem auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.conn-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 182, 128, 0.65);
  background: rgba(212, 182, 128, 0.04);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 182, 128, 0.1);
  margin-bottom: 3rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.1s;
}

.conn-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 252, 245, 0.95);
  margin-bottom: 3rem;
  letter-spacing: -0.6px;
  position: relative;
  z-index: 1;
}

.conn-subheadline {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.62);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 2️⃣ Definición de conectividad */
.conn-definition {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 9rem auto;
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(212, 182, 128, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.conn-definition-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.7);
  font-weight: 300;
}

/* 3️⃣ Formas de conexión */
.conn-forms {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
}

.conn-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: rgba(255, 252, 245, 0.9);
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: -0.3px;
}

.conn-forms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.conn-form {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(212, 182, 128, 0.1);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.conn-form:hover {
  border-color: rgba(212, 182, 128, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.conn-form-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 182, 128, 0.06);
  border: 1px solid rgba(212, 182, 128, 0.15);
  border-radius: 14px;
  color: rgba(212, 182, 128, 0.7);
}

.conn-form-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.88);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.conn-form-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 252, 245, 0.58);
  font-weight: 300;
}

/* 4️⃣ Datos convertidos en contexto */
.conn-context {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.conn-context-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.65);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
}

.conn-context-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.conn-context-step {
  flex: 1;
  min-width: 220px;
  padding: 2.5rem 2rem;
  background: rgba(212, 182, 128, 0.04);
  border: 1px solid rgba(212, 182, 128, 0.12);
  border-radius: 14px;
  text-align: center;
}

.conn-context-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(212, 182, 128, 0.5);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.conn-context-step-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.65);
  font-weight: 400;
}

.conn-context-arrow {
  font-size: 1.5rem;
  color: rgba(212, 182, 128, 0.4);
  font-weight: 300;
}

/* 5️⃣ Beneficios */
.conn-benefits {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
}

.conn-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.conn-benefit {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(212, 182, 128, 0.1);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.4s ease;
}

.conn-benefit:hover {
  border-color: rgba(212, 182, 128, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.conn-benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 182, 128, 0.06);
  border: 1px solid rgba(212, 182, 128, 0.15);
  border-radius: 12px;
  color: rgba(212, 182, 128, 0.7);
}

.conn-benefit-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.88);
  margin-bottom: 0.8rem;
  letter-spacing: -0.2px;
}

.conn-benefit-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 252, 245, 0.6);
  font-weight: 300;
}

/* 6️⃣ Cierre + CTA */
.conn-cierre {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.conn-cierre-frase {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 252, 245, 0.9);
  margin-bottom: 3rem;
  letter-spacing: -0.3px;
  font-style: italic;
}

.conn-cta {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.88);
  text-decoration: none;
  padding: 1.3rem 3rem;
  border: 1px solid rgba(212, 182, 128, 0.25);
  border-radius: 50px;
  background: rgba(212, 182, 128, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.conn-cta:hover {
  color: rgba(255, 252, 245, 0.95);
  border-color: rgba(212, 182, 128, 0.4);
  background: rgba(212, 182, 128, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .conn-forms-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .conn-benefits-grid {
    grid-template-columns: 1fr;
  }

  .conn-context-flow {
    flex-direction: column;
    gap: 2rem;
  }

  .conn-context-arrow {
    transform: rotate(90deg);
  }

  .conn-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .conn-benefit {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .conn-headline {
    font-size: 2rem;
  }

  .conn-cierre-frase {
    font-size: 1.6rem;
  }
}

/* ========================================
   SECCIÓN APP PELUSHOW
   Claridad, guía tranquila y experiencia humana
   ======================================== */

/* Fondo cercano y humano */
.section-app {
  position: relative;
  background: 
    radial-gradient(
      ellipse 85% 100% at 50% 30%,
      rgba(24, 21, 19, 1) 0%,
      rgba(20, 17, 15, 1) 30%,
      rgba(16, 13, 11, 1) 60%,
      rgba(13, 10, 9, 1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
  padding: 10rem 0 12rem 0;
  overflow: hidden;
}

/* Textura cálida ultra sutil */
.section-app::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-radial-gradient(
      circle at 30% 30%,
      transparent 0,
      transparent 50px,
      rgba(212, 182, 128, 0.008) 50px,
      rgba(212, 182, 128, 0.008) 100px
    );
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* 1️⃣ Hero de sección */
.app-hero {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 10rem auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.app-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 182, 128, 0.68);
  background: rgba(212, 182, 128, 0.05);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 182, 128, 0.12);
  margin-bottom: 3rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: labelFadeIn 1s ease forwards;
  animation-delay: 0.1s;
}

.app-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 252, 245, 0.95);
  margin-bottom: 3rem;
  letter-spacing: -0.6px;
  position: relative;
  z-index: 1;
}

.app-subheadline {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.64);
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 2️⃣ Propósito de la app */
.app-purpose {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 9rem auto;
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(212, 182, 128, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.app-purpose-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.7);
  font-weight: 300;
}

/* 3️⃣ Funcionalidades de la app */
.app-features {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
}

.app-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: rgba(255, 252, 245, 0.9);
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: -0.3px;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.app-feature {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(212, 182, 128, 0.1);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.app-feature:hover {
  border-color: rgba(212, 182, 128, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 182, 128, 0.06);
  border: 1px solid rgba(212, 182, 128, 0.15);
  border-radius: 14px;
  color: rgba(212, 182, 128, 0.7);
}

.app-feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 252, 245, 0.88);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.app-feature-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 252, 245, 0.58);
  font-weight: 300;
}

/* 4️⃣ Experiencia de uso */
.app-experience {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 10rem auto;
  padding: 4rem 3rem;
  background: 
    linear-gradient(
      135deg,
      rgba(212, 182, 128, 0.05) 0%,
      rgba(201, 168, 112, 0.03) 100%
    );
  border: 1px solid rgba(212, 182, 128, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.app-experience-text {
  font-size: 1.15rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.75);
  font-weight: 400;
  font-style: italic;
}

/* 5️⃣ Diseño de la app */
.app-design {
  margin-bottom: 10rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.app-design-text {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 252, 245, 0.65);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
}

.app-mockups {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.app-mockup-placeholder {
  opacity: 0.7;
  transition: all 0.4s ease;
}

.app-mockup-placeholder:hover {
  opacity: 1;
  transform: translateY(-6px);
}

/* 6️⃣ Cierre + CTA */
.app-cierre {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.app-cierre-frase {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 252, 245, 0.9);
  margin-bottom: 3rem;
  letter-spacing: -0.3px;
  font-style: italic;
}

.app-cta {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(212, 182, 128, 0.88);
  text-decoration: none;
  padding: 1.3rem 3rem;
  border: 1px solid rgba(212, 182, 128, 0.25);
  border-radius: 50px;
  background: rgba(212, 182, 128, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.app-cta:hover {
  color: rgba(255, 252, 245, 0.95);
  border-color: rgba(212, 182, 128, 0.4);
  background: rgba(212, 182, 128, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .app-features-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .app-mockups {
    flex-direction: column;
    gap: 2.5rem;
  }

  .app-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .app-headline {
    font-size: 2rem;
  }

  .app-cierre-frase {
    font-size: 1.6rem;
  }
}

/* ================================================
   OPTIMIZACIÓN ESPECÍFICA PARA IPAD
   Layout editorial premium para tablet
   ================================================ */

@media (max-width: 1024px) and (min-width: 768px) {
  
  /* ================================================
     HEADER OPTIMIZADO PARA IPAD
     ================================================ */
  
  .navbar {
    padding: 0.85rem 0; /* Reducción 15-20% */
  }
  
  .navbar.scrolled {
    padding: 0.7rem 0;
  }
  
  .nav-container {
    padding: 0 2rem;
  }
  
  .logo {
    font-size: 1.4rem; /* Logo ligeramente más pequeño */
  }
  
  .nav-cta {
    padding: 0.6rem 1.4rem; /* CTA superior menos dominante */
    font-size: 0.85rem;
  }
  
  /* ================================================
     HERO EDITORIAL PREMIUM PARA IPAD
     ================================================ */
  
  /* Overlay diagonal: zona izquierda más clara para texto,
     zona derecha más oscura para contener imagen */
  .hero::before {
    background: linear-gradient(
      120deg,
      /* Zona izquierda: más clara para legibilidad del texto */
      rgba(20, 16, 14, 0.70) 0%,
      rgba(18, 14, 12, 0.65) 20%,
      rgba(15, 12, 10, 0.58) 35%,
      /* Transición diagonal suave */
      rgba(12, 10, 8, 0.48) 50%,
      rgba(10, 8, 6, 0.38) 60%,
      /* Zona derecha: más oscura para contener la imagen */
      rgba(8, 6, 5, 0.25) 75%,
      rgba(6, 5, 4, 0.15) 85%,
      transparent 95%
    );
  }
  
  /* Imagen hero con recorte específico para iPad */
  .hero {
    /* Ajustar object-position para desplazar foco visual
       hacia la derecha y ligeramente hacia abajo */
    background-position: 58% 52%; /* Desplazamiento hacia derecha y abajo */
    background-size: cover;
  }
  
  /* Si usas <img> en vez de background-image: */
  .hero-image {
    object-position: 58% 52%;
    object-fit: cover;
  }
  
  .hero-container {
    padding: 0 3rem; /* Reducir padding lateral */
  }
  
  .hero-content {
    max-width: 620px;
    padding: 0 2rem 0 3rem; /* Menos padding lateral */
  }
  
  /* ================================================
     TIPOGRAFÍA OPTIMIZADA PARA IPAD
     ================================================ */
  
  /* Headline: reducir ~10% y aumentar interlineado */
  .hero-title {
    font-size: 3.8rem; /* ~10% menos que 4.2rem */
    line-height: 1.28; /* Aumentado desde 1.15 */
    letter-spacing: -0.8px;
    margin-bottom: 2rem;
  }
  
  /* Subheadline: mayor contraste para legibilidad en tablet */
  .hero-description {
    font-size: 1.12rem;
    line-height: 1.9; /* Mayor interlineado */
    color: rgba(255, 255, 255, 0.75); /* Mayor contraste: 0.75 vs 0.65 */
    max-width: 540px;
    margin-bottom: 3.2rem;
    text-shadow: 
      0 2px 20px rgba(0, 0, 0, 0.8), /* Sombra más fuerte para legibilidad */
      0 1px 4px rgba(0, 0, 0, 0.5);
  }
  
  /* Badge más proporcionado */
  .hero-badge {
    font-size: 0.68rem;
    padding: 0.55rem 1.3rem;
    margin-bottom: 2.2rem;
  }
  
  /* ================================================
     JERARQUÍA DE CTAS PARA IPAD
     ================================================ */
  
  .hero-cta {
    flex-direction: column; /* CTAs en vertical para mejor jerarquía */
    gap: 1.4rem; /* Mayor separación vertical */
    align-items: flex-start;
  }
  
  /* CTA principal: más dominante */
  .btn-primary {
    padding: 1.15rem 3rem; /* Más grande y dominante */
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 28px rgba(201, 168, 112, 0.3);
    width: auto;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(201, 168, 112, 0.45);
  }
  
  /* CTA secundario: más sutil */
  .btn-secondary {
    padding: 0.95rem 2.4rem; /* Ligeramente más pequeño */
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.25); /* Más transparente */
    border: 1px solid rgba(255, 255, 255, 0.12); /* Borde más sutil */
    color: rgba(255, 255, 255, 0.68); /* Color más apagado */
    width: auto;
  }
  
  .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(212, 182, 128, 0.25);
    color: rgba(212, 182, 128, 0.85);
  }
  
  /* ================================================
     AIRE Y ESPACIADO EDITORIAL
     ================================================ */
  
  /* Más aire alrededor del contenido principal */
  .section {
    padding: 7rem 2.5rem;
  }
  
  /* Contenedores más ajustados para lectura óptima en tablet */
  .container {
    max-width: 900px;
    padding: 0 2rem;
  }
  
  /* Headlines de sección proporcionados */
  h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.8rem;
  }
  
  h3 {
    font-size: 1.8rem;
    line-height: 1.35;
  }
  
  /* Texto de cuerpo optimizado para lectura en tablet */
  p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 680px;
  }
}

/* ================================================
   AJUSTES FINOS PARA IPAD PRO (11" y 12.9")
   Pantallas más grandes requieren ajustes menores
   ================================================ */

@media (min-width: 1025px) and (max-width: 1366px) {
  
  .hero-title {
    font-size: 4rem; /* Reducción moderada del 5% */
    line-height: 1.22;
  }
  
  .hero-description {
    font-size: 1.13rem;
    color: rgba(255, 255, 255, 0.72);
  }
  
  .hero-cta {
    flex-direction: row; /* Mantener horizontal en iPad Pro */
    gap: 1.2rem;
  }
}

/* ================================================
   SISTEMA DE MENÚ ADAPTATIVO INTELIGENTE
   Ajustes específicos por tipo de dispositivo
   ================================================ */

/* ================================================
   BASE: Garantizar que ningún ítem rompa línea
   ================================================ */

.nav-link {
  white-space: nowrap; /* Forzar una sola línea */
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-nav-primary {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================================================
   ADAPTACIONES ESPECÍFICAS PARA IPAD
   Aplicadas cuando body.device-ipad está presente
   ================================================ */

body.device-ipad .navbar,
body.device-tablet .navbar {
  /* Header con menos altura en iPad */
  padding: 0.75rem 0;
}

body.device-ipad .navbar.scrolled,
body.device-tablet .navbar.scrolled {
  padding: 0.6rem 0;
}

body.device-ipad .nav-container,
body.device-tablet .nav-container {
  padding: 0 2rem; /* Menos padding lateral */
  gap: 1.5rem; /* Menos espacio entre elementos */
}

body.device-ipad .nav-logo,
body.device-tablet .nav-logo {
  height: 38px; /* Logo más pequeño */
}

/* Ajustes de tipografía del menú para iPad */
body.device-ipad .nav-link,
body.device-tablet .nav-link {
  font-size: 0.87rem; /* Reducción del 8-9% desde 0.95rem */
  letter-spacing: 0.2px; /* Menos letter-spacing */
  padding: 0.45rem 0; /* Menos padding vertical */
  white-space: nowrap !important; /* Garantizar una línea */
}

body.device-ipad .nav-arrow,
body.device-tablet .nav-arrow {
  width: 9px; /* SVG arrow ligeramente más pequeña */
  height: 5px;
}

/* CTA del header optimizado para iPad */
body.device-ipad .btn-nav-primary,
body.device-tablet .btn-nav-primary {
  padding: 0.65rem 1.5rem; /* Más compacto */
  font-size: 0.82rem; /* Más pequeño */
  letter-spacing: 0.2px;
  white-space: nowrap !important;
}

body.device-ipad .nav-login,
body.device-tablet .nav-login {
  font-size: 0.82rem;
  padding: 0.5rem 0.8rem;
}

/* Megamenús más compactos en iPad */
body.device-ipad .megamenu,
body.device-tablet .megamenu {
  min-width: 240px; /* Ligeramente más estrecho */
  font-size: 0.92rem;
}

body.device-ipad .megamenu-title,
body.device-tablet .megamenu-title {
  font-size: 0.68rem !important; /* Compacto pero legible */
  font-weight: 500 !important;
  color: rgba(212, 182, 128, 0.75) !important;
  letter-spacing: 1px !important;
  margin-bottom: 0.7rem !important;
  padding-bottom: 0.4rem !important;
  border-bottom: 1px solid rgba(212, 182, 128, 0.10) !important;
}

body.device-ipad .megamenu-link,
body.device-tablet .megamenu-link {
  font-size: 0.80rem !important; /* Más compacto y elegante */
  padding: 0.3rem 0 !important;
}

body.device-ipad .megamenu-subtitle,
body.device-tablet .megamenu-subtitle {
  font-size: 0.72rem !important; /* Más compacto */
}

body.device-ipad .megamenu-microcopy,
body.device-tablet .megamenu-microcopy {
  font-size: 0.75rem;
}

/* Ajuste de espaciado del menú en iPad */
body.device-ipad .nav-menu,
body.device-tablet .nav-menu {
  gap: 1.8rem; /* Menos espacio entre ítems (antes 2.5rem) */
}

/* ================================================
   ADAPTACIONES ESPECÍFICAS PARA DESKTOP
   Aplicadas cuando body.device-desktop está presente
   ================================================ */

body.device-desktop .nav-link {
  font-size: 0.95rem; /* Tamaño completo */
  letter-spacing: 0.3px;
  padding: 0.5rem 0;
  white-space: nowrap; /* Garantizar una línea */
}

body.device-desktop .btn-nav-primary {
  padding: 0.75rem 1.8rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

body.device-desktop .nav-menu {
  gap: 2.5rem; /* Espacio completo */
}

/* Megamenú desktop - Tamaños compactos y elegantes */
body.device-desktop .megamenu-title {
  font-size: 0.70rem !important;
  font-weight: 500 !important;
  color: rgba(212, 182, 128, 0.75) !important;
  letter-spacing: 1px !important;
}

body.device-desktop .megamenu-link {
  font-size: 0.82rem !important;
  padding: 0.3rem 0 !important;
  letter-spacing: 0.3px !important;
}

body.device-desktop .megamenu-subtitle {
  font-size: 0.75rem !important;
  line-height: 1.35 !important;
  color: rgba(255, 252, 245, 0.55) !important;
  font-weight: 300 !important;
}

body.device-desktop .megamenu-title-esencial {
  font-size: 0.70rem !important;
  font-weight: 500 !important;
  color: rgba(212, 182, 128, 0.75) !important;
  letter-spacing: 1px !important;
}

/* ================================================
   ADAPTACIONES ESPECÍFICAS PARA MOBILE
   Menú colapsado tipo hamburguesa (futuro)
   ================================================ */

body.device-mobile .nav-menu {
  display: flex !important; /* Mostrar menú en mobile */
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding: 0 1rem;
}

body.device-mobile .nav-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body.device-mobile .btn-nav-primary {
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

body.device-mobile .nav-login {
  display: none; /* Ocultar "Iniciar sesión" en mobile */
}

/* Navbar compacto en mobile */
body.device-mobile .navbar {
  padding: 0.8rem 0 !important;
}

body.device-mobile .nav-container {
  padding: 0 1rem !important;
  gap: 0.5rem !important;
}

body.device-mobile .nav-logo {
  height: 32px !important;
  max-height: 32px !important;
}

body.device-mobile .nav-item {
  font-size: 0.85rem !important;
}

body.device-mobile .nav-link {
  padding: 0.5rem 0.8rem !important;
  font-size: 0.85rem !important;
}

/* Ocultar flechas dropdown en mobile */
body.device-mobile .nav-arrow {
  display: none !important;
}

/* Ocultar megamenús en mobile (no son touch-friendly) */
body.device-mobile .megamenu {
  display: none !important;
}

body.device-mobile .has-megamenu:hover .megamenu {
  display: none !important;
}

/* ================================================
   GARANTÍAS DE UNA SOLA LÍNEA
   Aplicadas globalmente para todos los dispositivos
   ================================================ */

.nav-item {
  flex-shrink: 0; /* No permitir que los ítems se encojan */
}

.nav-link,
.btn-nav-primary,
.nav-login {
  display: inline-flex;
  align-items: center;
  white-space: nowrap !important; /* Forzar una línea siempre */
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Evitar que el contenedor del menú se rompa */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* NO permitir wrap */
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap; /* NO permitir wrap */
  flex-shrink: 1; /* Permitir encogimiento del menú si es necesario */
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0; /* Mantener acciones siempre visibles */
}

/* ================================================
   DEBUG: Indicador visual de dispositivo detectado
   (solo para desarrollo, comentar en producción)
   ================================================ */

/*
body.device-desktop::before {
  content: '🖥️ DESKTOP';
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(0, 255, 0, 0.8);
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 9999;
}

body.device-ipad::before {
  content: '📱 IPAD';
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(255, 165, 0, 0.8);
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 9999;
}

body.device-tablet::before {
  content: '📱 TABLET';
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(255, 255, 0, 0.8);
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 9999;
}

body.device-mobile::before {
  content: '📱 MOBILE';
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 9999;
}
*/

/* ================================================
   TRANSICIONES SUAVES PARA CAMBIOS ADAPTATIVOS
   ================================================ */

.nav-link,
.btn-nav-primary,
.nav-logo,
.megamenu {
  transition: 
    font-size 0.3s ease,
    padding 0.3s ease,
    letter-spacing 0.3s ease;
}


/* ================================================
   SISTEMA DE CONTENIDO ADAPTATIVO EDITORIAL
   Adaptaciones inteligentes para hero, secciones,
   headlines, subheadlines, CTAs, cards e imágenes
   ================================================ */

/* ================================================
   ADAPTACIONES HERO PARA IPAD/TABLET
   ================================================ */

body.device-ipad .hero-title,
body.device-tablet .hero-title {
  font-size: 3.6rem !important; /* Optimizado para iPad */
  line-height: 1.26 !important;
  letter-spacing: -0.75px !important;
  margin-bottom: 1.6rem !important;
}

body.device-ipad .hero-description,
body.device-tablet .hero-description {
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  max-width: 540px !important;
  margin-bottom: 2.4rem !important;
}

body.device-ipad .hero-badge,
body.device-tablet .hero-badge {
  font-size: 0.66rem !important;
  padding: 0.52rem 1.25rem !important;
  margin-bottom: 1.8rem !important;
}

body.device-ipad .hero-cta,
body.device-tablet .hero-cta {
  /* CTAs horizontales en iPad - CRÍTICO */
  flex-direction: row !important; /* Botones uno al lado del otro */
  gap: 1.2rem !important; /* Gap horizontal entre botones */
  align-items: center !important;
  margin-top: 0 !important;
  flex-wrap: nowrap !important; /* No permitir wrap */
}

/* ================================================
   BOTONES PREMIUM PARA IPAD - TOUCH-FIRST
   Diseñados específicamente para tablet premium
   ================================================ */

body.device-ipad .btn-primary,
body.device-tablet .btn-primary {
  /* Touch-first: mayor altura y padding generoso */
  padding: 1.3rem 3.5rem;
  
  /* Tipografía premium: más grande y semibold */
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  
  /* Bordes más suaves */
  border-radius: 60px;
  
  /* Micro-sombra sutil para profundidad */
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(201, 168, 112, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  
  /* Transición lenta y controlada */
  transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  
  /* Sensación de objeto de valor */
  background: linear-gradient(
    135deg,
    rgba(212, 182, 128, 0.90) 0%,
    rgba(201, 168, 112, 0.88) 100%
  );
  
  width: auto;
  min-width: 220px; /* Mínimo ancho para evitar botones estrechos */
}

body.device-ipad .btn-primary:hover,
body.device-tablet .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(201, 168, 112, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(
    135deg,
    rgba(220, 190, 136, 0.95) 0%,
    rgba(212, 182, 128, 0.92) 100%
  );
}

body.device-ipad .btn-primary:active,
body.device-tablet .btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease;
}

/* Botón secundario: discreto pero elegante */
body.device-ipad .btn-secondary,
body.device-tablet .btn-secondary {
  /* Touch-friendly pero más sutil que el primario */
  padding: 1.15rem 3rem;
  
  /* Tipografía ligeramente más pequeña que primario */
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  
  /* Bordes suaves */
  border-radius: 60px;
  
  /* Fondo muy transparente */
  background: rgba(0, 0, 0, 0.18);
  
  /* Borde sutil pero presente */
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  
  /* Color discreto */
  color: rgba(255, 255, 255, 0.72);
  
  /* Glassmorphism sutil */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  /* Micro-sombra muy sutil */
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  
  /* Transición lenta */
  transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  
  width: auto;
  min-width: 200px;
}

body.device-ipad .btn-secondary:hover,
body.device-tablet .btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(201, 168, 112, 0.35);
  color: rgba(212, 182, 128, 0.95);
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(201, 168, 112, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.device-ipad .btn-secondary:active,
body.device-tablet .btn-secondary:active {
  transform: translateY(0) scale(0.98);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 
    0 3px 12px rgba(0, 0, 0, 0.15),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease;
}

/* ================================================
   ADAPTACIONES HERO PARA MOBILE
   ================================================ */

body.device-mobile .hero {
  min-height: 100vh !important; /* Full height en mobile */
  max-height: 100vh !important;
  padding-top: 70px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

body.device-mobile .hero-container {
  padding: 0 1.5rem;
}

body.device-mobile .hero-content {
  max-width: 100%;
  padding: 0 1rem;
  text-align: center;
}

body.device-mobile .hero-title {
  font-size: 2rem !important; /* Más compacto para mobile */
  line-height: 1.25 !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 1rem !important;
  padding: 0 0.5rem;
}

body.device-mobile .hero-description {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  max-width: 100% !important;
  margin-bottom: 1.5rem !important;
  padding: 0 0.5rem;
}

body.device-mobile .hero-badge {
  font-size: 0.65rem !important; /* !important para sobrescribir media queries */
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.5rem;
}

body.device-mobile .hero-cta {
  flex-direction: row !important; /* Horizontal en mobile */
  gap: 0.8rem !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 1.5rem !important;
  flex-wrap: wrap !important; /* Permitir wrap si no caben */
}

/* ================================================
   BOTONES PREMIUM PARA MOBILE
   Anchos, cómodos para el pulgar, un solo CTA
   ================================================ */

body.device-mobile .btn-primary {
  /* Ancho automático para caber lado a lado */
  width: auto;
  flex: 0 1 auto; /* No crecer, sí encoger */
  min-width: 140px;
  max-width: 48%; /* Máximo 48% para que quepan 2 */
  
  /* Altura cómoda para pulgar */
  padding: 0.9rem 1.3rem;
  
  /* Tipografía clara y compacta */
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  
  /* Centrado */
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  /* Bordes suaves */
  border-radius: 50px;
  
  /* Sombra pronunciada para mobile */
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(201, 168, 112, 0.2);
  
  /* Fondo sólido y confiable */
  background: linear-gradient(
    135deg,
    rgba(212, 182, 128, 0.92) 0%,
    rgba(201, 168, 112, 0.90) 100%
  );
  
  /* Transición rápida en mobile */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.device-mobile .btn-primary:active {
  transform: scale(0.97);
  box-shadow: 
    0 4px 14px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

body.device-mobile .btn-secondary {
  /* Mostrar botón secundario en mobile */
  display: inline-flex !important;
  width: auto;
  flex: 0 1 auto;
  min-width: 140px;
  max-width: 48%;
  padding: 0.9rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

body.device-mobile .hero-floating-badge {
  display: block !important; /* MOSTRAR badge en mobile */
  position: fixed !important; /* Fixed para que esté siempre visible */
  bottom: 2rem !important;
  right: 1rem !important;
  left: auto !important;
  padding: 0.7rem 1rem !important;
  font-size: 0.7rem !important;
  max-width: 180px !important;
  text-align: center !important;
  z-index: 100 !important; /* Por encima del contenido pero debajo del navbar */
}

/* ================================================
   ADAPTACIONES SECCIONES PARA IPAD/TABLET
   ================================================ */

body.device-ipad .section,
body.device-tablet .section {
  padding: 7rem 2.5rem; /* Más compacto pero con aire */
}

body.device-ipad .cf-headline,
body.device-ipad .ia-headline,
body.device-ipad .motor-headline,
body.device-ipad .perfil-headline,
body.device-ipad .disp-headline,
body.device-ipad .conn-headline,
body.device-ipad .app-headline,
body.device-tablet .cf-headline,
body.device-tablet .ia-headline,
body.device-tablet .motor-headline,
body.device-tablet .perfil-headline,
body.device-tablet .disp-headline,
body.device-tablet .conn-headline,
body.device-tablet .app-headline {
  font-size: 2.6rem; /* Ligeramente reducido */
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 700px;
}

body.device-ipad .cf-subheadline,
body.device-ipad .ia-subheadline,
body.device-ipad .motor-subheadline,
body.device-ipad .perfil-subheadline,
body.device-ipad .disp-subheadline,
body.device-ipad .conn-subheadline,
body.device-ipad .app-subheadline,
body.device-tablet .cf-subheadline,
body.device-tablet .ia-subheadline,
body.device-tablet .motor-subheadline,
body.device-tablet .perfil-subheadline,
body.device-tablet .disp-subheadline,
body.device-tablet .conn-subheadline,
body.device-tablet .app-subheadline {
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 650px;
  margin-bottom: 2.5rem;
}

/* Cards más compactas pero manteniendo jerarquía */
body.device-ipad .cf-step,
body.device-ipad .perfil-card,
body.device-ipad .disp-source,
body.device-ipad .conn-form,
body.device-ipad .app-feature,
body.device-tablet .cf-step,
body.device-tablet .perfil-card,
body.device-tablet .disp-source,
body.device-tablet .conn-form,
body.device-tablet .app-feature {
  padding: 2rem 1.8rem;
}

/* ================================================
   ADAPTACIONES SECCIONES PARA MOBILE
   ================================================ */

body.device-mobile .section {
  padding: 4rem 1.5rem; /* Ritmo vertical claro */
}

body.device-mobile .cf-headline,
body.device-mobile .ia-headline,
body.device-mobile .motor-headline,
body.device-mobile .perfil-headline,
body.device-mobile .disp-headline,
body.device-mobile .conn-headline,
body.device-mobile .app-headline {
  font-size: 2rem; /* Directo y emocional */
  line-height: 1.25;
  margin-bottom: 1.5rem;
  max-width: 100%;
  text-align: center;
}

body.device-mobile .cf-subheadline,
body.device-mobile .ia-subheadline,
body.device-mobile .motor-subheadline,
body.device-mobile .perfil-subheadline,
body.device-mobile .disp-subheadline,
body.device-mobile .conn-subheadline,
body.device-mobile .app-subheadline {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}

body.device-mobile .cf-label,
body.device-mobile .ia-label,
body.device-mobile .motor-label,
body.device-mobile .perfil-label,
body.device-mobile .disp-label,
body.device-mobile .conn-label,
body.device-mobile .app-label {
  font-size: 0.65rem;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.5rem;
}

/* Cards en mobile: una por línea, compactas */
body.device-mobile .cf-step,
body.device-mobile .perfil-card,
body.device-mobile .disp-source,
body.device-mobile .conn-form,
body.device-mobile .app-feature {
  padding: 1.5rem 1.2rem;
  margin-bottom: 1rem;
}

/* Grids en mobile: una columna */
body.device-mobile .cf-steps-grid,
body.device-mobile .perfil-proceso-grid,
body.device-mobile .perfil-incluye-grid,
body.device-mobile .perfil-beneficios-grid,
body.device-mobile .disp-sources-grid,
body.device-mobile .conn-forms-grid,
body.device-mobile .conn-benefits-grid,
body.device-mobile .app-features-grid {
  grid-template-columns: 1fr !important;
  gap: 1rem;
}

/* ================================================
   ADAPTACIONES CTAs PARA IPAD/TABLET
   ================================================ */

body.device-ipad .motor-hero-cta,
body.device-ipad .perfil-cta,
body.device-ipad .disp-cta,
body.device-ipad .conn-cta,
body.device-ipad .app-cta,
body.device-tablet .motor-hero-cta,
body.device-tablet .perfil-cta,
body.device-tablet .disp-cta,
body.device-tablet .conn-cta,
body.device-tablet .app-cta {
  padding: 0.85rem 2rem;
  font-size: 0.88rem;
}

/* ================================================
   ADAPTACIONES CTAs PARA MOBILE
   ================================================ */

body.device-mobile .motor-hero-cta,
body.device-mobile .perfil-cta,
body.device-mobile .disp-cta,
body.device-mobile .conn-cta,
body.device-mobile .app-cta {
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  display: block;
}

/* CTAs secundarios ocultos en mobile */
body.device-mobile .btn-secondary,
body.device-mobile .motor-explicativo a:last-child,
body.device-mobile .perfil-cierre a:last-child,
body.device-mobile .disp-cierre a:last-child,
body.device-mobile .conn-cierre a:last-child,
body.device-mobile .app-cierre a:last-child {
  display: none;
}

/* ================================================
   ADAPTACIONES IMÁGENES Y VISUALES
   ================================================ */

/* Hero image en mobile */
body.device-mobile .hero-image {
  object-position: 65% 35% !important; /* Enfoque en la mascota */
  object-fit: cover !important;
  transform: scale(1.1) !important; /* Zoom ligero para mejor encuadre */
}

/* Mockups más compactos en tablet */
body.device-ipad .app-mockups,
body.device-tablet .app-mockups {
  gap: 2rem;
  padding: 0 1.5rem;
}

body.device-ipad .app-mockup-placeholder,
body.device-tablet .app-mockup-placeholder {
  max-width: 200px;
}

/* Mockups en mobile: uno por línea */
body.device-mobile .app-mockups {
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
}

body.device-mobile .app-mockup-placeholder {
  max-width: 180px;
  margin: 0 auto;
}

/* ================================================
   ADAPTACIONES TIPOGRÁFICAS GENERALES
   ================================================ */

/* Desktop: máxima jerarquía */
body.device-desktop h2 {
  font-size: 2.8rem;
  line-height: 1.3;
}

body.device-desktop h3 {
  font-size: 1.8rem;
  line-height: 1.35;
}

body.device-desktop p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
}

/* iPad: optimizado para lectura */
body.device-ipad h2,
body.device-tablet h2 {
  font-size: 2.6rem;
  line-height: 1.3;
}

body.device-ipad h3,
body.device-tablet h3 {
  font-size: 1.6rem;
  line-height: 1.35;
}

body.device-ipad p,
body.device-tablet p {
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 620px;
}

/* Mobile: directo y calmado */
body.device-mobile h2 {
  font-size: 2rem;
  line-height: 1.25;
}

body.device-mobile h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}

body.device-mobile p {
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 100%;
}

/* ================================================
   AIRE Y RESPIRACIÓN VISUAL
   ================================================ */

/* Desktop: máximo aire */
body.device-desktop .section {
  padding: 10rem 0 12rem 0;
}

body.device-desktop .container {
  max-width: 1600px;
  padding: 0 3rem;
}

/* iPad: aire reducido pero presente */
body.device-ipad .section,
body.device-tablet .section {
  padding: 7rem 0 8rem 0;
}

body.device-ipad .container,
body.device-tablet .container {
  max-width: 900px;
  padding: 0 2rem;
}

/* Mobile: ritmo vertical claro */
body.device-mobile .section {
  padding: 4rem 0 5rem 0;
}

body.device-mobile .container {
  max-width: 100%;
  padding: 0 1.5rem;
}

/* ================================================
   TRANSICIONES SUAVES CONTENIDO ADAPTATIVO
   ================================================ */

.hero-title,
.hero-description,
.btn-primary,
.btn-secondary,
.cf-headline,
.ia-headline,
.motor-headline,
.perfil-headline,
.disp-headline,
.conn-headline,
.app-headline,
h2, h3, p {
  transition: 
    font-size 0.3s ease,
    line-height 0.3s ease,
    padding 0.3s ease,
    margin 0.3s ease,
    max-width 0.3s ease;
}


/* ================================================
   BOTONES PREMIUM PARA DESKTOP
   Elegantes, proporción clásica, transiciones suaves
   ================================================ */

body.device-desktop .btn-primary {
  /* Proporción clásica desktop */
  padding: 1rem 2.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 50px;
  
  /* Sombra elegante */
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 4px rgba(201, 168, 112, 0.1);
  
  /* Fondo premium */
  background: rgba(201, 168, 112, 0.85);
  
  /* Transición suave */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.device-desktop .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 6px 25px rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(201, 168, 112, 0.4);
  background: rgba(212, 182, 128, 0.95);
}

body.device-desktop .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(201, 168, 112, 0.3);
}

body.device-desktop .btn-secondary {
  /* Proporción clásica desktop */
  padding: 1rem 2.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 50px;
  
  /* Ghost button elegante */
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  
  /* Transición suave */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.device-desktop .btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 168, 112, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

body.device-desktop .btn-secondary:active {
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.4);
}

/* ================================================
   JERARQUÍA DE CTAs - LAYOUT
   ================================================ */

/* Hero CTAs: vertical en iPad, horizontal en desktop */
/* ================================================
   JERARQUÍA DE CTAs - LAYOUT RESPONSIVE PREMIUM
   iPad: horizontal con jerarquía clara
   ================================================ */

/* iPad/Tablet: SIEMPRE en horizontal en el hero */
body.device-ipad .hero-cta,
body.device-tablet .hero-cta {
  flex-direction: row; /* HORIZONTAL, no vertical */
  gap: 1.2rem; /* Gap visual elegante */
  align-items: center; /* Misma línea base */
  flex-wrap: nowrap; /* No permitir wrap */
}

/* Desktop: horizontal con mayor aire */
body.device-desktop .hero-cta {
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

/* Mobile: vertical con espacio */
body.device-mobile .hero-cta {
  flex-direction: row !important; /* Horizontal en mobile */
  gap: 0.8rem !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 1.5rem !important;
  flex-wrap: wrap !important; /* Permitir wrap si no caben */
}

/* ================================================
   BOTONES EN SECCIONES
   Estilos específicos para CTAs de sección
   ================================================ */

/* iPad/Tablet: botones de sección compactos pero premium */
body.device-ipad .motor-hero-cta,
body.device-ipad .perfil-cta,
body.device-ipad .disp-cta,
body.device-ipad .conn-cta,
body.device-ipad .app-cta,
body.device-tablet .motor-hero-cta,
body.device-tablet .perfil-cta,
body.device-tablet .disp-cta,
body.device-tablet .conn-cta,
body.device-tablet .app-cta {
  padding: 1.1rem 2.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 60px;
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.22),
    0 2px 6px rgba(201, 168, 112, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  min-width: 200px;
}

body.device-ipad .motor-hero-cta:hover,
body.device-ipad .perfil-cta:hover,
body.device-ipad .disp-cta:hover,
body.device-ipad .conn-cta:hover,
body.device-ipad .app-cta:hover,
body.device-tablet .motor-hero-cta:hover,
body.device-tablet .perfil-cta:hover,
body.device-tablet .disp-cta:hover,
body.device-tablet .conn-cta:hover,
body.device-tablet .app-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 7px 28px rgba(0, 0, 0, 0.28),
    0 3px 10px rgba(201, 168, 112, 0.2);
}

/* Mobile: botones de sección full-width */
body.device-mobile .motor-hero-cta,
body.device-mobile .perfil-cta,
body.device-mobile .disp-cta,
body.device-mobile .conn-cta,
body.device-mobile .app-cta {
  padding: 1.05rem 2rem;
  font-size: 0.95rem;
  width: 100%;
  text-align: center;
  display: block;
  border-radius: 50px;
  box-shadow: 
    0 5px 18px rgba(0, 0, 0, 0.28),
    0 2px 6px rgba(201, 168, 112, 0.15);
}

body.device-mobile .motor-hero-cta:active,
body.device-mobile .perfil-cta:active,
body.device-mobile .disp-cta:active,
body.device-mobile .conn-cta:active,
body.device-mobile .app-cta:active {
  transform: scale(0.97);
  box-shadow: 
    0 3px 12px rgba(0, 0, 0, 0.22),
    inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

/* ================================================
   ESTADOS FOCUS PARA ACCESIBILIDAD
   ================================================ */

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid rgba(201, 168, 112, 0.5);
  outline-offset: 3px;
}

body.device-ipad .btn-primary:focus-visible,
body.device-ipad .btn-secondary:focus-visible,
body.device-tablet .btn-primary:focus-visible,
body.device-tablet .btn-secondary:focus-visible {
  outline: 4px solid rgba(201, 168, 112, 0.6);
  outline-offset: 4px;
}

/* ================================================
   RIPPLE EFFECT PARA TOUCH (opcional, futuro)
   ================================================ */

/* Preparado para añadir ripple effect en botones touch */
.btn-primary::after,
.btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}


/* ================================================
   EXPERIENCIA RESPONSIVE PREMIUM ESPECÍFICA IPAD
   Reglas propias, no heredadas de desktop
   ================================================ */

/* ================================================
   1. HERO PRINCIPAL - LAYOUT PREMIUM IPAD
   ================================================ */

body.device-ipad .hero,
body.device-tablet .hero {
  /* Altura optimizada para llenar viewport sin empujar CTAs fuera */
  min-height: 92vh !important; /* Llenar casi todo el viewport */
  max-height: 95vh !important; /* Limitar altura máxima */
  
  /* Padding superior reducido */
  padding-top: 85px !important; /* Compensar navbar */
  padding-bottom: 1rem !important; /* Espacio inferior mínimo */
  
  /* Display y alineación */
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  
  /* Posición relativa para overlays */
  position: relative !important;
  overflow: hidden !important;
}

/* Imagen de fondo optimizada para iPad */
/* ================================================
   SISTEMA DE IMÁGENES RESPONSIVE ESPECÍFICO
   ================================================ */

/* DESKTOP: Imagen completa con zoom sutil */
body.device-desktop .hero-visual {
  height: 100vh;
}

body.device-desktop .hero-image-container {
  height: 100vh;
}

body.device-desktop .hero-image {
  height: 100vh;
  object-position: 40% 40%; /* Enfoque en rostros */
  animation: heroZoom 25s ease-in-out infinite alternate;
}

/* IPAD/TABLET: Imagen adaptada para llenar viewport */
body.device-ipad .hero-visual,
body.device-tablet .hero-visual {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 95vh !important; /* Sincronizado con max-height del hero */
  min-height: 92vh !important;
  max-height: 95vh !important;
  z-index: 1 !important;
  overflow: hidden !important;
}

body.device-ipad .hero-image-container,
body.device-tablet .hero-image-container {
  position: relative !important;
  width: 100% !important;
  height: 95vh !important;
  min-height: 92vh !important;
  max-height: 95vh !important;
  overflow: hidden !important;
}

body.device-ipad .hero-image,
body.device-tablet .hero-image {
  width: 100% !important;
  height: 95vh !important;
  min-height: 92vh !important;
  max-height: 95vh !important;
  object-position: 58% 48% !important; /* Foco optimizado iPad */
  object-fit: cover !important;
  display: block !important;
  
  /* Sin animación en tablet para mejor performance */
  animation: none !important;
  transform: scale(1.02) !important;
  will-change: auto !important;
  
  /* Filtro ligeramente más suave en iPad */
  filter: brightness(1.01) contrast(1.10) saturate(1.12) sepia(0.06) !important;
}

/* MOBILE: Imagen contenida, foco en sujetos */
body.device-mobile .hero-visual {
  height: 90vh; /* Menos altura en mobile */
}

body.device-mobile .hero-image-container {
  height: 90vh;
}

body.device-mobile .hero-image {
  height: 90vh;
  object-position: 50% 30%; /* Centrado y hacia arriba */
  object-fit: cover;
  
  /* Sin animación en mobile */
  animation: none;
  transform: scale(1); /* Sin scale en mobile */
  
  /* Filtro más sutil en mobile */
  filter: brightness(1.00) contrast(1.08) saturate(1.10) sepia(0.04);
}

/* Contenedor del hero: compacto y centrado verticalmente */
body.device-ipad .hero-container,
body.device-tablet .hero-container {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  z-index: 3 !important;
  
  /* Padding horizontal moderado */
  padding: 0 2.5rem !important;
  margin: 0 !important;
}

/* Contenido del hero: compacto y legible */
body.device-ipad .hero-content,
body.device-tablet .hero-content {
  max-width: 620px !important;
  padding: 1.5rem 2rem !important; /* Más compacto */
  position: relative !important;
  z-index: 4 !important;
}

/* Overlay del hero: gradiente suave de apoyo */
body.device-ipad .hero::before,
body.device-tablet .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* Gradiente diagonal suave para iPad */
  background: linear-gradient(
    120deg,
    rgba(20, 16, 14, 0.68) 0%,
    rgba(15, 12, 10, 0.55) 35%,
    rgba(12, 10, 8, 0.42) 50%,
    rgba(8, 6, 5, 0.20) 75%,
    transparent 95%
  );
  
  z-index: 2;
  pointer-events: none;
}

/* ================================================
   2. SECCIONES HERO TIPO "CÓMO FUNCIONA" - IPAD
   ================================================ */

body.device-ipad .section-ia-preventiva,
body.device-ipad .section-motor,
body.device-ipad .cf-hero,
body.device-ipad .ia-hero,
body.device-ipad .motor-hero,
body.device-ipad .perfil-hero,
body.device-ipad .disp-hero,
body.device-ipad .conn-hero,
body.device-ipad .app-hero,
body.device-tablet .section-ia-preventiva,
body.device-tablet .section-motor,
body.device-tablet .cf-hero,
body.device-tablet .ia-hero,
body.device-tablet .motor-hero,
body.device-tablet .perfil-hero,
body.device-tablet .disp-hero,
body.device-tablet .conn-hero,
body.device-tablet .app-hero {
  /* Altura dinámica, no rígida */
  min-height: auto;
  padding: 8rem 3rem; /* Aire vertical generoso */
  
  /* Fondo con gradiente controlado */
  background-size: cover;
  background-position: center center; /* Centrado para iPad */
  background-repeat: no-repeat;
  
  /* Display y alineación */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  /* Posición relativa */
  position: relative;
  overflow: hidden;
}

/* Labels de sección: anclado visualmente */
body.device-ipad .cf-label,
body.device-ipad .ia-label,
body.device-ipad .motor-label,
body.device-ipad .perfil-label,
body.device-ipad .disp-label,
body.device-ipad .conn-label,
body.device-ipad .app-label,
body.device-tablet .cf-label,
body.device-tablet .ia-label,
body.device-tablet .motor-label,
body.device-tablet .perfil-label,
body.device-tablet .disp-label,
body.device-tablet .conn-label,
body.device-tablet .app-label {
  display: inline-block;
  font-size: 0.68rem;
  padding: 0.55rem 1.3rem;
  margin-bottom: 2.2rem;
  
  /* Fondo con anclaje */
  background: rgba(212, 182, 128, 0.08);
  border: 1px solid rgba(212, 182, 128, 0.16);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  
  /* Sombra sutil de presencia */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Headlines de sección: jerarquía clara */
body.device-ipad .cf-headline,
body.device-ipad .ia-headline,
body.device-ipad .motor-headline,
body.device-ipad .perfil-headline,
body.device-ipad .disp-headline,
body.device-ipad .conn-headline,
body.device-ipad .app-headline,
body.device-tablet .cf-headline,
body.device-tablet .ia-headline,
body.device-tablet .motor-headline,
body.device-tablet .perfil-headline,
body.device-tablet .disp-headline,
body.device-tablet .conn-headline,
body.device-tablet .app-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  
  /* Sombra de presencia */
  text-shadow: 
    0 2px 16px rgba(0, 0, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Subheadlines: legibilidad prioritaria */
body.device-ipad .cf-subheadline,
body.device-ipad .ia-subheadline,
body.device-ipad .motor-subheadline,
body.device-ipad .perfil-subheadline,
body.device-ipad .disp-subheadline,
body.device-ipad .conn-subheadline,
body.device-ipad .app-subheadline,
body.device-tablet .cf-subheadline,
body.device-tablet .ia-subheadline,
body.device-tablet .motor-subheadline,
body.device-tablet .perfil-subheadline,
body.device-tablet .disp-subheadline,
body.device-tablet .conn-subheadline,
body.device-tablet .app-subheadline {
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  
  /* Contraste mejorado */
  color: rgba(255, 252, 245, 0.80);
  
  /* Sombra de legibilidad */
  text-shadow: 
    0 2px 12px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ================================================
   3. TRANSICIÓN ENTRE SECCIONES - IPAD
   ================================================ */

/* Secciones: espaciado y transición elegante en iPad */
body.device-ipad .section,
body.device-tablet .section {
  padding: 7rem 2.5rem !important;
  position: relative;
  
  /* Transición suave de fondo */
  transition: background 0.6s ease, padding 0.4s ease;
}

/* Eliminar regla de containers internos en iPad - no es necesaria */

/* Transición visual entre secciones hero y contenido en iPad */
body.device-ipad .hero + .section,
body.device-tablet .hero + .section {
  /* Balance perfecto para iPad */
  padding-top: 4rem !important; /* Espacio respirable */
  margin-top: 0 !important; /* Sin margin negativo */
  
  /* Gradiente de transición superior */
  background: linear-gradient(
    180deg,
    rgba(11, 15, 14, 0.95) 0%,
    rgba(11, 15, 14, 1) 15%,
    rgba(11, 15, 14, 1) 100%
  );
}

/* Separadores visuales sutiles entre secciones */
body.device-ipad .section + .section::before,
body.device-tablet .section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 1px;
  
  /* Línea sutil de separación */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 182, 128, 0.08) 50%,
    transparent 100%
  );
}

/* ================================================
   4. CONTENEDORES Y GRID - IPAD
   ================================================ */

/* Contenedores: ancho optimizado para lectura */
body.device-ipad .container,
body.device-tablet .container {
  max-width: 900px;
  padding: 0 2rem;
  margin: 0 auto;
}

/* Grids: 2 columnas en iPad cuando es posible */
body.device-ipad .cf-steps-grid,
body.device-ipad .perfil-proceso-grid,
body.device-ipad .perfil-beneficios-grid,
body.device-ipad .disp-sources-grid,
body.device-ipad .conn-forms-grid,
body.device-ipad .conn-benefits-grid,
body.device-ipad .app-features-grid,
body.device-tablet .cf-steps-grid,
body.device-tablet .perfil-proceso-grid,
body.device-tablet .perfil-beneficios-grid,
body.device-tablet .disp-sources-grid,
body.device-tablet .conn-forms-grid,
body.device-tablet .conn-benefits-grid,
body.device-tablet .app-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas en iPad */
  gap: 2rem;
  
  /* Transición suave */
  transition: gap 0.3s ease;
}

/* Grid de 4 items: mantener 2x2 en iPad */
body.device-ipad .perfil-incluye-grid,
body.device-tablet .perfil-incluye-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

/* ================================================
   5. CORRECIONES ESPECÍFICAS SECCIONES - IPAD
   ================================================ */

/* Motor de Protocolos: nodo decision ajustado */
body.device-ipad .motor-decision-node,
body.device-tablet .motor-decision-node {
  width: 400px;
  height: 400px;
  filter: blur(55px); /* Menos blur en iPad */
}

/* Perfil Digital: halo ajustado */
body.device-ipad .perfil-hero::before,
body.device-tablet .perfil-hero::before {
  width: 450px;
  height: 450px;
  filter: blur(70px);
}

/* Conectividad: textura flow ajustada */
body.device-ipad .section-conectividad::before,
body.device-tablet .section-conectividad::before {
  opacity: 0.035; /* Más sutil en iPad */
}

/* App: mockups más compactos */
body.device-ipad .app-mockups,
body.device-tablet .app-mockups {
  gap: 2rem;
  padding: 0 1.5rem;
  justify-content: center;
}

body.device-ipad .app-mockup-placeholder,
body.device-tablet .app-mockup-placeholder {
  max-width: 200px;
  opacity: 0.8;
}

/* ================================================
   6. AIRE VISUAL Y RESPIRACIÓN - IPAD
   ================================================ */

/* Títulos de sección: espaciado consistente */
body.device-ipad h2,
body.device-tablet h2 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 1.8rem;
  padding: 0 1rem; /* Padding lateral sutil */
}

body.device-ipad h3,
body.device-tablet h3 {
  font-size: 1.6rem;
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

/* Párrafos: legibilidad optimizada */
body.device-ipad p,
body.device-tablet p {
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards: padding proporcionado */
body.device-ipad .cf-step,
body.device-ipad .perfil-card,
body.device-ipad .disp-source,
body.device-ipad .conn-form,
body.device-ipad .app-feature,
body.device-tablet .cf-step,
body.device-tablet .perfil-card,
body.device-tablet .disp-source,
body.device-tablet .conn-form,
body.device-tablet .app-feature {
  padding: 2rem 1.8rem;
  
  /* Sombra de presencia */
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.15),
    0 1px 4px rgba(0, 0, 0, 0.1);
  
  /* Transición suave */
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

body.device-ipad .cf-step:hover,
body.device-ipad .perfil-card:hover,
body.device-ipad .disp-source:hover,
body.device-ipad .conn-form:hover,
body.device-ipad .app-feature:hover,
body.device-tablet .cf-step:hover,
body.device-tablet .perfil-card:hover,
body.device-tablet .disp-source:hover,
body.device-tablet .conn-form:hover,
body.device-tablet .app-feature:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ================================================
   7. FLOATING BADGE - MANTENER EN IPAD CON AJUSTES
   ================================================ */

body.device-ipad .hero-floating-badge,
body.device-tablet .hero-floating-badge {
  /* Posicionar más arriba para mejor visibilidad en iPad */
  display: block !important;
  position: absolute !important;
  bottom: 4.5rem !important; /* Mucho más arriba del borde inferior */
  right: 2.5rem !important;
  
  /* Tamaño y padding optimizado para iPad */
  font-size: 0.88rem !important;
  padding: 1rem 2rem 1rem 2.4rem !important;
  
  /* Asegurar visibilidad y profundidad */
  z-index: 10 !important;
  backdrop-filter: blur(16px) saturate(105%) !important;
  
  /* Fondo más sólido y visible */
  background: rgba(11, 15, 14, 0.92) !important;
  
  /* Borde más visible */
  border: 1px solid rgba(212, 182, 128, 0.28) !important;
  
  /* Sombras para profundidad */
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5) !important,
    0 4px 16px rgba(0, 0, 0, 0.35) !important,
    inset 0 -1px 0 rgba(212, 182, 128, 0.12) !important;
  
  /* Border radius suave */
  border-radius: 8px !important;
}
}

/* ================================================
   8. NAVBAR EN SCROLL - COMPORTAMIENTO IPAD
   ================================================ */

body.device-ipad .navbar.scrolled,
body.device-tablet .navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(11, 15, 14, 0.95);
  backdrop-filter: blur(24px) saturate(105%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(212, 182, 128, 0.14);
}


/* ================================================
   MENÚ HAMBURGUESA PARA MOBILE - v63.3
   Sistema completo de navegación móvil
   ================================================ */

/* Botón hamburguesa */
.menu-toggle {
  display: none; /* Oculto por defecto */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  -webkit-tap-highlight-color: transparent; /* Quitar highlight azul en iOS */
  touch-action: manipulation; /* Mejorar respuesta táctil */
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: rgba(212, 182, 128, 0.9);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animación del botón cuando el menú está abierto */
body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Panel de menú móvil */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 14, 0.98) 0%,
    rgba(15, 19, 18, 0.98) 100%
  );
  backdrop-filter: blur(24px) saturate(105%);
  -webkit-backdrop-filter: blur(24px) saturate(105%);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 70px 1.5rem 100px 1.5rem;
  border-left: 1px solid rgba(212, 182, 128, 0.12);
}

body.menu-open .mobile-menu-panel {
  right: 0;
}

/* Overlay oscuro */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* Botón de cerrar dentro del panel */
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(212, 182, 128, 0.1);
  border: 1px solid rgba(212, 182, 128, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: rgba(212, 182, 128, 0.9);
}

.mobile-menu-close:hover {
  background: rgba(212, 182, 128, 0.15);
  border-color: rgba(212, 182, 128, 0.35);
  transform: rotate(90deg);
}

/* Navegación del menú móvil */
.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-menu-nav li {
  border-bottom: 1px solid rgba(212, 182, 128, 0.05);
}

.mobile-menu-nav li:last-child {
  border-bottom: none;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.85rem 0;
  color: rgba(255, 252, 245, 0.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.mobile-menu-nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: rgba(212, 182, 128, 0.8);
}

.mobile-menu-nav a:active,
.mobile-menu-nav a:hover {
  color: rgba(212, 182, 128, 1);
  padding-left: 2rem;
}

.mobile-menu-nav a:active::before,
.mobile-menu-nav a:hover::before {
  opacity: 1;
  left: 0.5rem;
}

/* CTA en el menú móvil */
.mobile-menu-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 182, 128, 0.12);
}

.mobile-menu-cta a {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.2) 0%, 
    rgba(201, 168, 112, 0.15) 100%
  );
  border: 1px solid rgba(212, 182, 128, 0.35);
  border-radius: 50px;
  color: rgba(212, 182, 128, 0.95);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu-cta a:active {
  transform: scale(0.97);
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.25) 0%, 
    rgba(201, 168, 112, 0.18) 100%
  );
  border-color: rgba(212, 182, 128, 0.45);
}

/* Mostrar/ocultar elementos según dispositivo */
body.device-mobile .menu-toggle {
  display: flex !important;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

body.device-mobile .nav-menu {
  display: none !important;
}

body.device-mobile .nav-actions {
  display: none !important;
}

/* Prevenir scroll cuando el menú está abierto */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* Navbar compacto con hamburguesa */
body.device-mobile .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem !important;
}

/* ========================================
   TABLET OPTIMIZATION (iPad)
   ======================================== */



/* Para tablets en orientación vertical (portrait) */



/* ================================================================
   TABLET v66.0 - CENTRADO AUTOMÁTICO
   ================================================================ */

@media (min-width: 769px) and (max-width: 1024px) {
    
    /* CENTRAR todos los megamenús automáticamente */
    .megamenu {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-6px) !important;
    }
    
    .nav-item:hover .megamenu,
    .nav-item .megamenu:hover,
    .has-megamenu:hover .megamenu {
        transform: translateX(-50%) translateY(0) !important;
    }
    
    /* ANULAR offsets individuales */
    .nav-item:nth-child(1) .megamenu,
    .nav-item:nth-child(2) .megamenu,
    .nav-item:nth-child(3) .megamenu,
    .nav-item:nth-child(4) .megamenu,
    .nav-item:nth-child(5) .megamenu {
        transform: translateX(-50%) translateY(-6px) !important;
    }
    
    .nav-item:nth-child(1):hover .megamenu,
    .nav-item:nth-child(2):hover .megamenu,
    .nav-item:nth-child(3):hover .megamenu,
    .nav-item:nth-child(4):hover .megamenu,
    .nav-item:nth-child(5):hover .megamenu {
        transform: translateX(-50%) translateY(0) !important;
    }
    
    /* Anchos optimizados */
    .megamenu-3col {
        width: 560px !important;
        max-width: 80vw !important;
    }
    
    .megamenu-4col {
        width: 680px !important;
        max-width: 80vw !important;
    }
    
    .megamenu-2col {
        width: 400px !important;
        max-width: 80vw !important;
    }
    
    .megamenu-1col {
        width: 270px !important;
        max-width: 80vw !important;
    }
    
    .megamenu-container {
        padding: 1.1rem 1.3rem !important;
        gap: 1.4rem !important;
    }
    
    .megamenu-title {
        font-size: 0.92rem !important;
    }
    
    .megamenu-link {
        font-size: 0.84rem !important;
        padding: 0.38rem 0 !important;
    }
}

/* Tablet portrait */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .megamenu-3col {
        width: 520px !important;
    }
    
    .megamenu-4col {
        width: 620px !important;
    }
}
