/* ================================================
   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;
  scroll-padding-top: 110px; /* Ajustado: navbar padding + logo + margen */
}

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;
  max-width: calc(100vw - 40px); /* Prevenir scroll horizontal */
}

.megamenu-4col {
  width: 1100px;
  max-width: calc(100vw - 40px); /* Prevenir scroll horizontal */
}

.megamenu-1col {
  width: 300px;
  max-width: calc(100vw - 40px); /* Prevenir scroll horizontal */
}

.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.4rem;
  padding: 0.95rem 2rem 0.95rem 1.7rem;
  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);
}

/* Ícono de huella en el botón CTA con estilo dorado visible y premium */
.btn-nav-primary .paw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 0.5rem;
  color: #D4AF37;
  text-shadow: 0 1px 3px rgba(212, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-nav-primary:hover .paw-icon {
  color: #E8C070;
  text-shadow: 0 2px 6px rgba(232, 192, 112, 0.6);
  transform: scale(1.15);
}

/* 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;
  z-index: 1;
  padding-top: 0;
  margin-bottom: 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;
}

/* ========================================
   BOTONES CON TEXTO SIMPLE Y LIMPIO
   Sin spans duplicados ni labels responsive
   ======================================== */

/* 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)
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
  /* Ajustar ancho de megamenús para tablets - VERSIÓN ULTRA COMPACTA */
  .megamenu-3col {
    width: 620px !important;
    max-width: 85vw !important;
  }
  
  .megamenu-4col {
    width: 750px !important;
    max-width: 85vw !important;
  }
  
  .megamenu-2col {
    width: 450px !important;
    max-width: 85vw !important;
  }
  
  /* Reducir padding y gap en tablets */
  .megamenu-container {
    padding: 1.5rem 1.8rem;
    gap: 2rem;
  }
  
  /* Reducir tamaño de títulos en megamenús */
  .megamenu-title {
    font-size: 1rem;
  }
  
  .megamenu-subtitle {
    font-size: 0.8rem;
  }
  
  .megamenu-link {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
  
  .megamenu-microcopy {
    font-size: 0.75rem;
    margin-top: 0.8rem;
  }
  
  /* Ajustar íconos en tablets */
  .megamenu-title svg {
    width: 14px;
    height: 14px;
  }
  
  /* Asegurar que el megamenú no se salga de la pantalla */
  .has-megamenu:hover .megamenu,
  .has-megamenu:focus-within .megamenu {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  
  /* Padding ultra reducido para tablets */
  .megamenu-container {
    padding: 1.2rem 1.4rem !important;
    gap: 1.5rem !important;
  }
  

  
  /* POSICIONAMIENTO DE MEGAMENÚS EN TABLETS - Mover hacia la izquierda */
  .nav-item:nth-child(1) .megamenu {
    transform: translate(-20px, -6px) !important;
  }
  
  .nav-item:nth-child(1):hover .megamenu,
  .nav-item:nth-child(1) .megamenu:hover {
    transform: translate(-20px, 0) !important;
  }
  
  .nav-item:nth-child(2) .megamenu {
    transform: translate(-40px, -6px) !important;
  }
  
  .nav-item:nth-child(2):hover .megamenu,
  .nav-item:nth-child(2) .megamenu:hover {
    transform: translate(-40px, 0) !important;
  }
  
  .nav-item:nth-child(3) .megamenu {
    transform: translate(-80px, -6px) !important;
  }
  
  .nav-item:nth-child(3):hover .megamenu,
  .nav-item:nth-child(3) .megamenu:hover {
    transform: translate(-80px, 0) !important;
  }
  
  .nav-item:nth-child(4) .megamenu {
    transform: translate(-120px, -6px) !important;
  }
  
  .nav-item:nth-child(4):hover .megamenu,
  .nav-item:nth-child(4) .megamenu:hover {
    transform: translate(-120px, 0) !important;
  }
  
  .nav-item:nth-child(5) .megamenu {
    transform: translate(-180px, -6px) !important;
  }
  
  .nav-item:nth-child(5):hover .megamenu,
  .nav-item:nth-child(5) .megamenu:hover {
    transform: translate(-180px, 0) !important;
  }

  /* Reducir tamaño de texto para que quepa mejor */
  .megamenu-title {
    font-size: 0.95rem !important;
  }
  
  .megamenu-link {
    font-size: 0.85rem !important;
    padding: 0.4rem 0 !important;
  }
}

/* Para tablets en orientación vertical (portrait) */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
  .megamenu-3col {
    width: 580px !important;
  }
  
  .megamenu-4col {
    width: 680px !important;
  }
  
  .megamenu-container {
    padding: 1.2rem 1.5rem;
    gap: 1.5rem;
  }
}

/* =====================================================================
   MEGA MENÚ RESPONSIVE v73 - CONTENCIÓN ANTI-DESBORDE DEFINITIVA
   Garantiza que el megamenú NUNCA se desborde en tablets/iPad
   ===================================================================== */

/* ===== TABLET/iPAD: 768px-1199px ===== */
@media (min-width: 768px) and (max-width: 1199px) {
    
    /* ===== ESTRATEGIA: POSITION FIXED + CENTRADO VIEWPORT + CONTENCIÓN ===== */
    
    /* Megamenú anclado al VIEWPORT, no al ítem */
    body .navbar .nav-menu .nav-item.has-megamenu .megamenu {
        /* Position fixed respecto al viewport */
        position: fixed !important;
        
        /* Centrado perfecto horizontal */
        left: 50% !important;
        transform: translateX(-50%) translateY(-8px) !important;
        
        /* Ancho con contención estricta */
        width: min(1100px, calc(100vw - 48px)) !important;
        max-width: calc(100vw - 48px) !important;
        
        /* Altura máxima con scroll interno */
        max-height: calc(100vh - 120px) !important;
        
        /* Contención anti-desborde */
        overflow: hidden !important;
        
        /* Posición vertical */
        top: 85px !important;
        
        /* Reset de otros valores */
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
    }
    
    /* Hover: aparecer sin desplazamiento */
    body .navbar .nav-menu .nav-item.has-megamenu:hover .megamenu,
    body .navbar .nav-menu .nav-item.has-megamenu .megamenu:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(-50%) translateY(0) !important;
    }
    
    /* ELIMINAR todos los offsets individuales por posición */
    body .navbar .nav-menu .nav-item:nth-child(1).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(2).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(3).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(4).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(5).has-megamenu .megamenu {
        position: fixed !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-8px) !important;
        width: min(1100px, calc(100vw - 48px)) !important;
        max-width: calc(100vw - 48px) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(1).has-megamenu:hover .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(2).has-megamenu:hover .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(3).has-megamenu:hover .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(4).has-megamenu:hover .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(5).has-megamenu:hover .megamenu {
        transform: translateX(-50%) translateY(0) !important;
    }
    
    /* ===== CONTENEDOR INTERNO CON SCROLL ===== */
    
    .megamenu-container {
        /* Permitir scroll vertical si el contenido es muy alto */
        overflow-y: auto !important;
        overflow-x: hidden !important;
        
        /* Padding responsive */
        padding: 1.8rem 2rem !important;
        gap: 1.8rem !important;
        
        /* Altura máxima para scroll interno */
        max-height: calc(100vh - 200px) !important;
        
        /* Scroll suave */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(212, 182, 128, 0.3) transparent;
    }
    
    /* Estilo del scrollbar (webkit) */
    .megamenu-container::-webkit-scrollbar {
        width: 6px;
    }
    
    .megamenu-container::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .megamenu-container::-webkit-scrollbar-thumb {
        background: rgba(212, 182, 128, 0.3);
        border-radius: 3px;
    }
    
    .megamenu-container::-webkit-scrollbar-thumb:hover {
        background: rgba(212, 182, 128, 0.5);
    }
    
    /* ===== GRID: FORZAR 2 COLUMNAS MÁXIMO ===== */
    
    /* Todos los megamenús a 2 columnas */
    .megamenu-3col .megamenu-container,
    .megamenu-4col .megamenu-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.8rem !important;
    }
    
    .megamenu-2col .megamenu-container {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .megamenu-1col .megamenu-container {
        grid-template-columns: 1fr !important;
    }
    
    /* Mostrar TODAS las columnas (no ocultar ninguna) */
    .megamenu-column {
        display: block !important;
    }
    
    /* ===== TIPOGRAFÍA Y ESPACIADO ===== */
    
    .megamenu-title {
        font-size: 0.95rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .megamenu-subtitle {
        font-size: 0.78rem !important;
        margin-bottom: 0.7rem !important;
    }
    
    .megamenu-link {
        font-size: 0.88rem !important;
        padding: 0.45rem 0 !important;
    }
    
    .megamenu-microcopy {
        font-size: 0.73rem !important;
    }
    
    .megamenu-title .megamenu-icon,
    .megamenu-title svg {
        width: 15px !important;
        height: 15px !important;
    }
    
    /* ===== HEADER TABLET ===== */
    
    .nav-logo {
        height: 36px !important;
    }
    
    .nav-menu {
        gap: 1.2rem !important;
    }
    
    .nav-link {
        padding: 0.8rem 0.6rem !important;
        font-size: 0.9rem !important;
    }
    
    .btn-nav-primary {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
    
    .nav-login {
        padding: 0.7rem 0.9rem !important;
        font-size: 0.85rem !important;
    }
    
    .nav-login svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* ===== iPAD/TABLET PEQUEÑO: 768px-1024px ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    
    /* Ancho más compacto en tablets pequeños */
    body .navbar .nav-menu .nav-item.has-megamenu .megamenu {
        width: min(950px, calc(100vw - 40px)) !important;
        max-width: calc(100vw - 40px) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(1).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(2).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(3).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(4).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(5).has-megamenu .megamenu {
        width: min(950px, calc(100vw - 40px)) !important;
        max-width: calc(100vw - 40px)) !important;
    }
    
    /* Padding más compacto */
    .megamenu-container {
        padding: 1.6rem 1.8rem !important;
        gap: 1.6rem !important;
    }
    
    /* Ocultar 5to menú solo en tablets MUY pequeños */
    .nav-menu .nav-item:nth-child(5) {
        display: none !important;
    }
}

/* ===== TABLET PORTRAIT: 768px-900px ===== */
@media (min-width: 768px) and (max-width: 900px) and (orientation: portrait) {
    
    /* Ancho aún más compacto en portrait */
    body .navbar .nav-menu .nav-item.has-megamenu .megamenu {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(1).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(2).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(3).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(4).has-megamenu .megamenu,
    body .navbar .nav-menu .nav-item:nth-child(5).has-megamenu .megamenu {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
    }
    
    .megamenu-container {
        padding: 1.5rem 1.6rem !important;
        gap: 1.5rem !important;
    }
    
    .nav-link {
        font-size: 0.85rem !important;
        padding: 0.75rem 0.5rem !important;
    }
}

/* ===== MOBILE: <768px ===== */
@media (max-width: 767px) {
    
    /* En mobile el megamenú se oculta (usar hamburger menu) */
    .megamenu {
        display: none !important;
    }
}

/* ===== DESKTOP: 1200px+ (restaurar comportamiento original) ===== */
@media (min-width: 1200px) {
    
    /* Restaurar posicionamiento absoluto original */
    body .navbar .nav-menu .nav-item.has-megamenu .megamenu {
        position: absolute !important;
        left: 0 !important;
        top: calc(100% + 0.95rem) !important;
        width: auto !important;
        max-width: none !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Restaurar container sin scroll */
    .megamenu-container {
        overflow: visible !important;
        max-height: none !important;
    }
    
    /* Restaurar offsets originales por posición */
    body .navbar .nav-menu .nav-item:nth-child(1).has-megamenu .megamenu {
        transform: translate(40px, -6px) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(1).has-megamenu:hover .megamenu {
        transform: translate(40px, 0) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(2).has-megamenu .megamenu {
        transform: translate(24px, -6px) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(2).has-megamenu:hover .megamenu {
        transform: translate(24px, 0) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(3).has-megamenu .megamenu {
        transform: translate(8px, -6px) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(3).has-megamenu:hover .megamenu {
        transform: translate(8px, 0) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(4).has-megamenu .megamenu {
        transform: translate(0, -6px) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(4).has-megamenu:hover .megamenu {
        transform: translate(0, 0) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(5).has-megamenu .megamenu {
        transform: translate(-80px, -6px) !important;
    }
    
    body .navbar .nav-menu .nav-item:nth-child(5).has-megamenu:hover .megamenu {
        transform: translate(-80px, 0) !important;
    }
    
    /* Restaurar todos los ítems visibles */
    .nav-menu .nav-item {
        display: flex !important;
    }
    
    /* Restaurar grid original en desktop */
    .megamenu-3col .megamenu-container {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .megamenu-4col .megamenu-container {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
/* ========================================
   PELUSHOW v74 - NUEVOS ESTILOS PARA CONTENIDO ACTUALIZADO
   Mantiene 100% la estética visual premium oscuro/dorado
   Solo agrega estilos para nuevas secciones
   ======================================== */

/* ========================================
   SECCIÓN: POR QUÉ PELUSHOW - DISEÑO ELEGANTE E IMPACTANTE
   Mismo contenido, distribución visual premium
   ======================================== */

/* ========================================
   SECCIÓN: POR QUÉ PELUSHOW - ESTRUCTURA CORREGIDA
   ======================================== */

/* Sección principal */
.why-pelushow-section {
    background: #050b09;
    padding: 100px 0 110px;
    scroll-margin-top: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: 0;
}

.why-pelushow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center top, 
        rgba(212, 175, 95, 0.03) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* Contenedor centrado */
.why-pelushow-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Badge elegante */
.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF5F;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 95, 0.15);
    opacity: 0.9;
}

.why-badge::before,
.why-badge::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 95, 0.4), transparent);
}

/* Título impactante */
.why-title {
    color: #ffffff;
    font-size: 44px;
    line-height: 1.12;
    max-width: 900px;
    margin: 0 auto 24px auto;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.why-title br {
    display: block;
}

/* Texto introductorio elegante */
.why-intro {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.65;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}

/* Grid horizontal de 3 cards premium */
.why-pelushow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
    width: 100%;
}

/* Card individual premium */
.why-pelushow-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(212, 175, 95, 0.22);
    border-radius: 24px;
    padding: 30px 28px;
    min-height: 230px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-pelushow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(212, 175, 95, 0.4) 50%,
        transparent 100%
    );
}

.why-pelushow-card:hover {
    border-color: rgba(212, 175, 95, 0.45);
    transform: translateY(-6px);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(212, 175, 95, 0.3);
    background: rgba(255, 255, 255, 0.065);
}

/* Número pequeño */
.why-card-number {
    color: #D4AF5F;
    font-size: 14px;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 18px;
    opacity: 0.85;
}

/* Ícono elegante */
.why-card-icon {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.why-card-icon i {
    color: #D4AF5F;
    font-size: 40px;
    transition: transform 0.3s ease;
}

.why-pelushow-card:hover .why-card-icon i {
    transform: scale(1.1);
}

/* Título de card */
.why-card-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Texto de card */
.why-card-text {
    color: #B8B8B8;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* Bloque de visión - Diseño destacado */
.why-pelushow-vision {
    position: relative;
    margin: 70px auto 0;
    max-width: 900px;
    padding: 42px 56px;
    border-radius: 28px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 95, 0.10) 0%,
        rgba(100, 199, 179, 0.08) 100%
    );
    border: 1px solid rgba(212, 175, 95, 0.22);
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.why-pelushow-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(212, 175, 95, 0.5) 50%,
        transparent 100%
    );
}

/* Título del bloque de visión */
.why-vision-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Texto del bloque de visión */
.why-vision-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA botón premium */
.why-vision-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(212, 175, 95, 0.5);
    color: #D4AF5F;
    background: rgba(212, 175, 95, 0.08);
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(212, 175, 95, 0.1);
}

.why-vision-cta:hover {
    background: #D4AF5F;
    color: #0a0908;
    border-color: #D4AF5F;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 95, 0.25);
}

/* ======================================== 
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .why-pelushow-section {
        padding: 70px 0 100px;
    }
    
    .why-title {
        font-size: 40px;
    }
    
    .why-intro {
        font-size: 16px;
    }
    
    /* Grid de 2 columnas en tablet */
    .why-pelushow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 40px;
    }
    
    .why-pelushow-card {
        min-height: 220px;
        padding: 28px 26px;
    }
    
    .why-pelushow-vision {
        padding: 40px 36px;
        margin-top: 60px;
    }
}

/* ======================================== 
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .why-pelushow-section {
        padding: 70px 0 90px;
        scroll-margin-top: 90px;
    }
    
    .why-pelushow-container {
        padding: 0 20px;
    }
    
    .why-badge {
        font-size: 10px;
        margin-bottom: 18px;
    }
    
    .why-badge::before,
    .why-badge::after {
        width: 24px;
    }
    
    .why-title {
        font-size: 34px;
        margin-bottom: 20px;
        line-height: 1.15;
    }
    
    .why-intro {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Cards apiladas verticalmente en mobile */
    .why-pelushow-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 36px;
    }
    
    .why-pelushow-card {
        padding: 28px 24px;
        min-height: auto;
    }
    
    .why-card-number {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .why-card-icon {
        margin-bottom: 18px;
    }
    
    .why-card-icon i {
        font-size: 36px;
    }
    
    .why-card-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .why-card-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .why-pelushow-vision {
        padding: 36px 24px;
        margin-top: 50px;
    }
    
    .why-vision-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .why-vision-text {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .why-vision-cta {
        padding: 11px 22px;
        font-size: 14px;
    }
}

/* ========================================
   SECCIÓN: PELUSHOW CUIDA
   ======================================== */
/* ========================================
   SECCIÓN: PELUSHOW CUIDA - REDISEÑADA PREMIUM
   ======================================== */

.pelushow-cuida-section {
    background: #070b09;
    background: linear-gradient(135deg, #070b09 0%, #0a0f0d 100%);
    padding: 100px 0 120px;
    scroll-margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.pelushow-cuida-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center top, 
        rgba(100, 199, 179, 0.04) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cuida-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Cabecera de sección centrada */
.cuida-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px auto;
}

.cuida-section-badge {
    display: inline-block;
    color: #D4AF5F;
    background: rgba(212, 175, 95, 0.10);
    border: 1px solid rgba(212, 175, 95, 0.25);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cuida-section-title {
    color: #ffffff;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.cuida-section-intro {
    color: #C9C9C9;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

/* Grid de dos columnas */
.cuida-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

/* Columna izquierda - Contenido */
.cuida-content {
    text-align: left;
}

.cuida-badge {
    display: inline-block;
    color: #D4AF5F;
    background: rgba(212, 175, 95, 0.10);
    border: 1px solid rgba(212, 175, 95, 0.25);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.cuida-title {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 560px;
    letter-spacing: -0.02em;
}

.cuida-subtitle {
    color: #C9C9C9;
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 18px;
}

.cuida-value-line {
    color: #64C7B3;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 24px 0;
    max-width: 560px;
}

.cuida-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.cuida-cta-primary {
    background: #D4AF5F;
    color: #0a0908;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 95, 0.3);
}

.cuida-cta-primary:hover {
    background: #E8C070;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 95, 0.4);
}

.cuida-cta-secondary {
    background: transparent;
    color: #D4AF5F;
    padding: 15px 28px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 95, 0.4);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cuida-cta-secondary:hover {
    border-color: rgba(212, 175, 95, 0.7);
    background: rgba(212, 175, 95, 0.08);
}

.cuida-trust {
    color: #AFAFAF;
    font-size: 14px;
    margin-top: 18px;
}

/* Columna derecha - Mockup */
.cuida-mockup {
    position: relative;
}

/* Indicadores flotantes */
.cuida-indicator {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(10, 9, 8, 0.85);
    border: 1px solid rgba(212, 175, 95, 0.25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #D4AF5F;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.cuida-indicator i {
    font-size: 14px;
}

.cuida-indicator-1 {
    top: -12px;
    left: -24px;
}

.cuida-indicator-2 {
    top: 35%;
    right: -24px;
    transform: translateY(-50%);
}

.cuida-indicator-3 {
    bottom: 70px;
    left: -16px;
}

/* Tarjeta principal del perfil */
.cuida-card-main {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(212, 175, 95, 0.24);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 5;
}

.cuida-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 95, 0.15);
}

.cuida-card-title {
    color: #D4AF5F;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.cuida-status-badge {
    background: rgba(100, 199, 179, 0.15);
    border: 1px solid rgba(100, 199, 179, 0.3);
    color: #64C7B3;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.cuida-pet-info {
    margin-bottom: 24px;
}

.cuida-pet-name {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cuida-pet-details {
    color: #B8B8B8;
    font-size: 15px;
    font-weight: 500;
}

/* Lista de cuidados */
.cuida-care-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cuida-care-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 95, 0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cuida-care-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 95, 0.25);
}

.cuida-care-label {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.cuida-care-status {
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
}

.cuida-care-ok .cuida-care-status {
    background: rgba(100, 199, 179, 0.15);
    color: #64C7B3;
}

.cuida-care-pending .cuida-care-status {
    background: rgba(212, 175, 95, 0.15);
    color: #D4AF5F;
}

.cuida-care-upcoming .cuida-care-status {
    background: rgba(255, 255, 255, 0.08);
    color: #C9C9C9;
}

.cuida-care-available .cuida-care-status {
    background: rgba(255, 255, 255, 0.06);
    color: #AFAFAF;
}

/* Próxima alerta */
.cuida-next-alert {
    padding: 18px;
    background: rgba(100, 199, 179, 0.08);
    border: 1px solid rgba(100, 199, 179, 0.20);
    border-radius: 16px;
}

.cuida-alert-label {
    color: #64C7B3;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.cuida-alert-info {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

/* Mini tarjeta WhatsApp */
.cuida-whatsapp-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.20);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cuida-whatsapp-card i {
    color: #25D366;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cuida-whatsapp-card p {
    color: #E8E8E8;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Sección de beneficios */
.cuida-benefits-section {
    text-align: center;
    padding-top: 48px;
    margin-top: 32px;
    border-top: 1px solid rgba(212, 175, 95, 0.12);
}

.cuida-benefits-title {
    color: #D4AF5F;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 42px;
}

.cuida-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cuida-benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 95, 0.18);
    border-radius: 20px;
    padding: 24px;
    text-align: left;
    transition: all 0.4s ease;
}

.cuida-benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 95, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cuida-benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 199, 179, 0.10);
    border: 1px solid rgba(100, 199, 179, 0.25);
    border-radius: 12px;
    margin-bottom: 16px;
}

.cuida-benefit-icon i {
    color: #64C7B3;
    font-size: 22px;
}

.cuida-benefit-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cuida-benefit-text {
    color: #B8B8B8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .cuida-section-title {
        font-size: 38px;
    }
    
    .cuida-section-intro {
        font-size: 16px;
    }
    
    .cuida-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cuida-title {
        font-size: 42px;
    }
    
    .cuida-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cuida-indicator {
        position: static;
        display: inline-flex;
        margin-bottom: 12px;
        margin-right: 8px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .pelushow-cuida-section {
        padding: 90px 0;
    }
    
    .cuida-section-header {
        margin-bottom: 56px;
    }
    
    .cuida-section-title {
        font-size: 32px;
    }
    
    .cuida-section-intro {
        font-size: 15px;
    }
    
    .cuida-grid {
        gap: 48px;
        margin-bottom: 70px;
    }
    
    .cuida-title {
        font-size: 34px;
    }
    
    .cuida-subtitle {
        font-size: 16px;
    }
    
    .cuida-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cuida-cta-primary,
    .cuida-cta-secondary {
        text-align: center;
    }
    
    .cuida-card-main {
        padding: 24px;
    }
    
    .cuida-pet-name {
        font-size: 24px;
    }
    
    .cuida-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   SECCIÓN: CÓMO FUNCIONA PELUSHOW CUIDA - REDISEÑADA
   ======================================== */

.how-cuida-section {
    background: #070b09;
    background: linear-gradient(135deg, #0a0f0d 0%, #070b09 100%);
    padding: 120px 0 180px;
    scroll-margin-top: 90px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.how-cuida-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center top, 
        rgba(212, 175, 95, 0.03) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.how-cuida-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Cabecera de sección */
.how-cuida-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 54px auto;
}

.how-cuida-badge {
    display: inline-block;
    color: #D4AF5F;
    background: rgba(212, 175, 95, 0.10);
    border: 1px solid rgba(212, 175, 95, 0.25);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.how-cuida-title {
    color: #ffffff;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.how-cuida-intro {
    color: #C9C9C9;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

/* Grid de 4 pasos horizontales */
.how-cuida-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

/* Card de paso */
.how-step-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(212, 175, 95, 0.24);
    border-radius: 24px;
    padding: 34px 26px;
    min-height: 255px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.how-step-card:hover {
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(212, 175, 95, 0.50);
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), 
                0 0 40px rgba(212, 175, 95, 0.12);
}

/* Número del paso */
.how-step-number {
    width: 48px;
    height: 48px;
    background: rgba(100, 199, 179, 0.15);
    border: 2px solid rgba(100, 199, 179, 0.35);
    color: #64C7B3;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

/* Ícono del paso */
.how-step-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.how-step-icon i {
    color: #D4AF5F;
    font-size: 22px;
}

/* Título del paso */
.how-step-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* Texto del paso */
.how-step-text {
    color: #B8B8B8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* CTA final */
.how-cuida-cta {
    text-align: center;
    margin-top: 48px;
    padding-bottom: 40px;
}

.how-cuida-btn {
    display: inline-block;
    background: #D4AF5F;
    color: #0a0908;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 95, 0.3);
}

.how-cuida-btn:hover {
    background: #E8C070;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 95, 0.4);
}

.how-cuida-trust {
    color: #B0B0B0;
    font-size: 14px;
    margin-top: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .how-cuida-section {
        min-height: auto;
    }
    
    .how-cuida-title {
        font-size: 38px;
    }
    
    .how-cuida-intro {
        font-size: 16px;
    }
    
    .how-cuida-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .how-step-card {
        min-height: 260px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .how-cuida-section {
        padding: 90px 0 120px;
        min-height: auto;
    }
    
    .how-cuida-header {
        margin-bottom: 48px;
    }
    
    .how-cuida-title {
        font-size: 34px;
    }
    
    .how-cuida-intro {
        font-size: 15px;
    }
    
    .how-cuida-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-step-card {
        min-height: auto;
        padding: 28px 22px;
    }
    
    .how-cuida-cta {
        margin-top: 48px;
    }
    
    .how-cuida-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   SECCIÓN: ECOSISTEMA PELUSHOW - ESTRUCTURA JERÁRQUICA
   ======================================== */

.ecosystem-section {
    background: #070b09;
    background: linear-gradient(135deg, #0a0f0d 0%, #050807 100%);
    padding: 110px 0 110px;
    scroll-margin-top: 90px;
    position: relative;
    overflow: visible;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center top, 
        rgba(100, 199, 179, 0.04) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.ecosystem-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Cabecera superior */
.ecosystem-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.ecosystem-badge-header {
    display: inline-block;
    color: #D4AF5F;
    background: rgba(212, 175, 95, 0.10);
    border: 1px solid rgba(212, 175, 95, 0.25);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ecosystem-main-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.ecosystem-intro {
    color: #C9C9C9;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.ecosystem-vision {
    color: #8FB8AD;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    padding: 14px 28px;
    background: rgba(100, 199, 179, 0.04);
    border-left: 3px solid rgba(100, 199, 179, 0.30);
    border-radius: 6px;
    margin-top: 24px;
    font-style: italic;
}

/* BLOQUE 1: Activo y en lanzamiento */
.ecosystem-block-active {
    margin-bottom: 80px;
}

.ecosystem-block-title {
    color: #D4AF5F;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 0.02em;
}

.ecosystem-active-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* CARD PRINCIPAL: Pelushow Cuida */
.ecosystem-card-principal {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(212, 175, 95, 0.40);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.40), 
                0 0 60px rgba(212, 175, 95, 0.10);
    transition: all 0.4s ease;
    position: relative;
}

.ecosystem-card-principal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 95, 0.20) 0%, 
        transparent 50%, 
        rgba(100, 199, 179, 0.15) 100%
    );
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ecosystem-card-principal:hover::before {
    opacity: 1;
}

.ecosystem-card-principal:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 95, 0.60);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.50), 
                0 0 80px rgba(212, 175, 95, 0.18);
}

/* CARDS ACTIVAS SECUNDARIAS */
.ecosystem-card-active {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(212, 175, 95, 0.25);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
}

.ecosystem-card-active:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 95, 0.40);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* BLOQUE 2: Próximas líneas */
.ecosystem-block-future {
    margin-bottom: 60px;
}

.ecosystem-block-intro {
    text-align: center;
    color: #B0B0B0;
    font-size: 0.95rem;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.ecosystem-card-future {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 95, 0.12);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
}

.ecosystem-card-future:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(212, 175, 95, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Badges */
.eco-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eco-badge-active {
    background: rgba(100, 199, 179, 0.18);
    color: #64C7B3;
    border: 1px solid rgba(100, 199, 179, 0.35);
}

.eco-badge-beta {
    background: rgba(59, 130, 246, 0.15);
    color: #5B9FE3;
    border: 1px solid rgba(59, 130, 246, 0.30);
}

.eco-badge-commercial {
    background: rgba(212, 175, 95, 0.15);
    color: #D4AF5F;
    border: 1px solid rgba(212, 175, 95, 0.32);
}

.eco-badge-soon {
    background: rgba(212, 175, 95, 0.06);
    color: rgba(212, 175, 95, 0.55);
    border: 1px solid rgba(212, 175, 95, 0.15);
}

.eco-badge-construction {
    background: rgba(139, 92, 246, 0.10);
    color: rgba(167, 139, 250, 0.75);
    border: 1px solid rgba(139, 92, 246, 0.20);
}

.eco-badge-orientation {
    background: rgba(236, 72, 153, 0.10);
    color: rgba(244, 114, 182, 0.75);
    border: 1px solid rgba(236, 72, 153, 0.20);
}

/* Íconos */
.eco-icon-large {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    background: rgba(100, 199, 179, 0.15);
    border: 2px solid rgba(100, 199, 179, 0.35);
    border-radius: 50%;
}

.eco-icon-large i {
    color: #64C7B3;
    font-size: 32px;
}

.eco-icon-medium {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    background: rgba(212, 175, 95, 0.12);
    border: 1.5px solid rgba(212, 175, 95, 0.28);
    border-radius: 50%;
}

.eco-icon-medium i {
    color: #D4AF5F;
    font-size: 24px;
}

.eco-icon-small {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    background: rgba(212, 175, 95, 0.08);
    border: 1px solid rgba(212, 175, 95, 0.18);
    border-radius: 50%;
}

.eco-icon-small i {
    color: rgba(212, 175, 95, 0.70);
    font-size: 18px;
}

/* Títulos */
.eco-title-large {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.eco-title-medium {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.eco-title-small {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Textos */
.eco-text-large {
    color: #B8B8B8;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

.eco-text-medium {
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.eco-text-small {
    color: #A0A0A0;
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
}

/* CTAs */
.eco-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF5F 0%, #B8941F 100%);
    color: #0a0908;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 95, 0.40);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eco-cta-primary:hover {
    background: linear-gradient(135deg, #E8C070 0%, #D4AF5F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212, 175, 95, 0.50);
}

.eco-cta-secondary {
    display: inline-block;
    background: rgba(212, 175, 95, 0.15);
    color: #D4AF5F;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(212, 175, 95, 0.30);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eco-cta-secondary:hover {
    background: rgba(212, 175, 95, 0.25);
    border-color: rgba(212, 175, 95, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 95, 0.25);
}

/* Microtexto final */
.ecosystem-final-note {
    text-align: center;
    max-width: 680px;
    margin: 60px auto 0 auto;
    color: #B0B0B0;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    padding-bottom: 0;
}

/* Responsive - Tablet Horizontal (1024-1179px) */
@media (max-width: 1179px) and (min-width: 1024px) {
    .ecosystem-container {
        padding: 0 32px;
    }
    
    .ecosystem-active-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
    
    .ecosystem-card-principal {
        padding: 38px 30px;
    }
    
    .ecosystem-card-active {
        padding: 28px 24px;
        min-height: 320px;
    }
    
    .ecosystem-future-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

/* Responsive - Tablet Vertical (768-1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .ecosystem-section {
        padding: 90px 0 90px;
    }
    
    .ecosystem-container {
        padding: 0 28px;
    }
    
    .ecosystem-header {
        margin-bottom: 50px;
    }
    
    .ecosystem-main-title {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }
    
    .ecosystem-intro {
        font-size: 1.05rem;
    }
    
    .ecosystem-vision {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .ecosystem-block-active {
        margin-bottom: 64px;
    }
    
    .ecosystem-block-title {
        font-size: 1.2rem;
        margin-bottom: 32px;
    }
    
    .ecosystem-active-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ecosystem-card-principal {
        padding: 36px 32px;
    }
    
    .ecosystem-card-active {
        padding: 32px 28px;
        min-height: auto;
    }
    
    .ecosystem-block-future {
        margin-bottom: 50px;
    }
    
    .ecosystem-future-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .ecosystem-card-future {
        min-height: 200px;
    }
    
    .ecosystem-final-note {
        margin-top: 50px;
    }
}

/* Responsive - Mobile (<768px) */
@media (max-width: 767px) {
    .ecosystem-section {
        padding: 70px 0 80px;
    }
    
    .ecosystem-container {
        padding: 0 20px;
    }
    
    .ecosystem-header {
        margin-bottom: 44px;
    }
    
    .ecosystem-badge-header {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 16px;
    }
    
    .ecosystem-main-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 14px;
    }
    
    .ecosystem-intro {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .ecosystem-vision {
        font-size: 13px;
        padding: 12px 20px;
        margin-top: 20px;
    }
    
    .ecosystem-block-active {
        margin-bottom: 50px;
    }
    
    .ecosystem-block-title {
        font-size: 1.15rem;
        margin-bottom: 28px;
    }
    
    .ecosystem-block-intro {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }
    
    .ecosystem-active-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ecosystem-card-principal {
        padding: 32px 24px;
    }
    
    .eco-icon-large {
        width: 64px;
        height: 64px;
    }
    
    .eco-icon-large i {
        font-size: 28px;
    }
    
    .eco-title-large {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    
    .eco-text-large {
        font-size: 0.98rem;
        margin-bottom: 24px;
    }
    
    .eco-cta-primary {
        width: 100%;
        max-width: 280px;
        padding: 13px 28px;
        font-size: 0.95rem;
    }
    
    .ecosystem-card-active {
        padding: 28px 24px;
        min-height: auto;
    }
    
    .eco-icon-medium {
        width: 52px;
        height: 52px;
    }
    
    .eco-icon-medium i {
        font-size: 22px;
    }
    
    .eco-title-medium {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .eco-text-medium {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .eco-cta-secondary {
        width: 100%;
        max-width: 260px;
        padding: 12px 24px;
        font-size: 0.88rem;
    }
    
    .ecosystem-block-future {
        margin-bottom: 44px;
    }
    
    .ecosystem-future-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ecosystem-card-future {
        padding: 24px 20px;
        min-height: auto;
    }
    
    .eco-icon-small {
        width: 40px;
        height: 40px;
    }
    
    .eco-icon-small i {
        font-size: 16px;
    }
    
    .eco-title-small {
        font-size: 1rem;
    }
    
    .eco-text-small {
        font-size: 0.86rem;
    }
    
    .ecosystem-final-note {
        margin-top: 44px;
        font-size: 0.9rem;
    }
    
    /* Botones con texto simple - sin spans duplicados */
}

/* Mobile específico: 360px - 389px */
@media (max-width: 389px) {
    .ecosystem-container {
        padding: 0 16px;
    }
    
    .ecosystem-card-principal {
        padding: 28px 20px;
    }
    
    .ecosystem-card-active {
        padding: 24px 20px;
    }
    
    .ecosystem-card-future {
        padding: 22px 18px;
    }
    
    .eco-cta-primary,
    .eco-cta-secondary {
        max-width: 100%;
        font-size: 0.85rem;
    }
}

/* ========================================
   SECCIÓN: CONFIANZA
   ======================================== */
.section-confianza {
    background: linear-gradient(135deg, #1a1410 0%, #0f0b08 100%);
    padding: 6rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item i {
    font-size: 3rem;
    color: #d4b680;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4b680;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   SECCIÓN: ACTIVACIÓN (FORMULARIO) - REDISEÑO PREMIUM
   ======================================== */
.activation-section {
    background: linear-gradient(135deg, #0a0f0d 0%, #050807 100%);
    padding: 100px 0 110px;
    scroll-margin-top: 90px;
}

.activation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero de activación */
.activation-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.activation-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.activation-hero-text {
    font-size: 18px;
    color: #C0C0C0;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Badges de beneficios */
.activation-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.activation-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 95, 0.12);
    border: 1px solid rgba(212, 175, 95, 0.3);
    border-radius: 30px;
    padding: 12px 22px;
    color: #D4AF5F;
    font-size: 15px;
    font-weight: 500;
}

.activation-benefit-pill i {
    font-size: 16px;
}

/* Grid principal: formulario + sidebar */
.activation-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Contenedor del formulario */
.activation-form-container {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(212, 175, 95, 0.2);
    border-radius: 24px;
    padding: 38px;
}

/* Indicador de pasos superior */
.activation-steps-indicator {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 38px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(212, 175, 95, 0.15);
}

.step-indicator-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(212, 175, 95, 0.15);
    border: 1px solid rgba(212, 175, 95, 0.35);
    border-radius: 50%;
    color: #D4AF5F;
    font-size: 14px;
    font-weight: 600;
}

.step-label {
    font-size: 15px;
    font-weight: 500;
    color: #B0B0B0;
}

/* Formulario */
.activation-form {
    /* Sin estilos adicionales necesarios, usa form-step */
}

/* Paso individual */
.form-step {
    margin-bottom: 38px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(212, 175, 95, 0.12);
}

.form-step:last-of-type {
    border-bottom: none;
    margin-bottom: 28px;
    padding-bottom: 0;
}

.form-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.form-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(212, 175, 95, 0.15);
    border: 1px solid rgba(212, 175, 95, 0.4);
    border-radius: 50%;
    color: #D4AF5F;
    font-size: 16px;
    font-weight: 700;
}

.form-step-title {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

/* Form group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #E0E0E0;
    margin-bottom: 8px;
}

.optional-label {
    font-weight: 400;
    color: #A0A0A0;
    font-size: 14px;
    font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 95, 0.25);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF5F;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 175, 95, 0.08);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group textarea {
    resize: vertical;
    min-height: 85px;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

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

/* Nota de privacidad */
.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(100, 199, 179, 0.08);
    border: 1px solid rgba(100, 199, 179, 0.2);
    border-radius: 10px;
    margin-bottom: 24px;
}

.form-privacy-note i {
    font-size: 18px;
    color: #64C7B3;
    flex-shrink: 0;
}

.form-privacy-note p {
    margin: 0;
    font-size: 13px;
    color: #B8D4D0;
    line-height: 1.5;
}

/* Consentimiento */
.form-consent {
    margin-top: 24px;
    margin-bottom: 32px;
    padding: 18px 20px;
    background: rgba(212, 175, 95, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 95, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    min-width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #D4AF5F;
}

.form-checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    line-height: 1.6;
    font-size: 14px;
    color: #C0C0C0;
}

.form-checkbox a {
    color: #D4AF5F;
    text-decoration: underline;
}

/* CTA Final */
.form-cta {
    text-align: center;
    margin-top: 36px;
}

.activation-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 42px;
    background: linear-gradient(135deg, #D4AF5F 0%, #B8985E 100%);
    color: #0a0f0d;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 95, 0.25);
}

.activation-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 95, 0.4);
    background: linear-gradient(135deg, #E0BF72 0%, #D4AF5F 100%);
}

.activation-submit-btn i {
    font-size: 20px;
}

.form-trust-text {
    margin-top: 14px;
    font-size: 14px;
    color: #64C7B3;
    font-weight: 500;
}

/* Mensaje de éxito */
.form-success {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    background: rgba(100, 199, 179, 0.08);
    border: 1px solid rgba(100, 199, 179, 0.3);
    border-radius: 20px;
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 64px;
    color: #64C7B3;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.success-text {
    font-size: 17px;
    color: #C0C0C0;
    line-height: 1.7;
}

/* Sidebar de confianza */
.activation-sidebar {
    position: sticky;
    top: 110px;
}

.trust-block {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 95, 0.2);
    border-radius: 20px;
    padding: 36px 30px;
}

.trust-block-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 28px;
    text-align: center;
}

.trust-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-step-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 95, 0.12);
    border: 1px solid rgba(212, 175, 95, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF5F;
    font-size: 18px;
}

.trust-step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.trust-step-content p {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.5;
}

/* ========================================
   SECCIÓN: ALIADOS - REDISEÑO PREMIUM
   ======================================== */
.partners-section {
    background: linear-gradient(135deg, #0a0f0d 0%, #050807 100%);
    padding: 130px 0 140px;
    scroll-margin-top: 90px;
}

.partners-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cabecera */
.partners-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 64px;
}

.partners-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(212, 175, 95, 0.12);
    border: 1px solid rgba(212, 175, 95, 0.3);
    border-radius: 20px;
    color: #D4AF5F;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.partners-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.partners-intro {
    font-size: 17px;
    color: #C0C0C0;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Frase destacada */
.partners-statement {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(100, 199, 179, 0.08);
    border: 1px solid rgba(100, 199, 179, 0.3);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.partners-statement i {
    font-size: 20px;
    color: #64C7B3;
    flex-shrink: 0;
}

.partners-statement p {
    margin: 0;
    font-size: 15px;
    color: #E0E0E0;
    font-weight: 500;
    line-height: 1.5;
}

/* Grid principal */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: start;
    margin-top: 64px;
}

/* Columna izquierda: Propuesta de valor */
.partners-value-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partners-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* Tipos de aliados */
.partners-types {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 95, 0.15);
    border-radius: 16px;
    padding: 32px 28px;
}

.partners-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 95, 0.1);
    border: 1px solid rgba(212, 175, 95, 0.3);
    border-radius: 20px;
    color: #D4AF5F;
    font-size: 14px;
    font-weight: 500;
}

/* Beneficios */
.partners-benefits {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 95, 0.15);
    border-radius: 16px;
    padding: 32px 28px;
}

.partners-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 95, 0.12);
    border: 1px solid rgba(212, 175, 95, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF5F;
    font-size: 17px;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.5;
    margin: 0;
}

/* Columna derecha: Formulario */
.partners-form-column {
    position: sticky;
    top: 110px;
}

.partners-form-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(212, 175, 95, 0.2);
    border-radius: 20px;
    padding: 36px 32px;
}

.partners-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.partners-form-intro {
    font-size: 15px;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 28px;
}

.partners-form .form-group {
    margin-bottom: 20px;
}

.partners-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #E0E0E0;
    margin-bottom: 8px;
}

.partners-form .form-group input,
.partners-form .form-group select,
.partners-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 95, 0.25);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 15px;
    transition: all 0.3s ease;
}

.partners-form .form-group input:focus,
.partners-form .form-group select:focus,
.partners-form .form-group textarea:focus {
    outline: none;
    border-color: #D4AF5F;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 175, 95, 0.08);
}

.partners-form .form-group input::placeholder,
.partners-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.partners-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

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

.partners-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 32px;
    background: linear-gradient(135deg, #D4AF5F 0%, #B8985E 100%);
    color: #0a0f0d;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 95, 0.25);
}

.partners-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 95, 0.4);
    background: linear-gradient(135deg, #E0BF72 0%, #D4AF5F 100%);
}

.partners-submit-btn i {
    font-size: 18px;
}

/* ========================================
   SECCIÓN: COMUNIDAD - REDISEÑO PREMIUM
   ======================================== */
.community-section {
    background: linear-gradient(135deg, #0a0f0d 0%, #050807 100%);
    padding: 130px 0 140px;
    scroll-margin-top: 90px;
}

.community-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cabecera */
.community-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 64px;
}

.community-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(100, 199, 179, 0.12);
    border: 1px solid rgba(100, 199, 179, 0.3);
    border-radius: 20px;
    color: #64C7B3;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.community-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.community-intro {
    font-size: 17px;
    color: #C0C0C0;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Nota de confianza */
.community-trust-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(212, 175, 95, 0.08);
    border: 1px solid rgba(212, 175, 95, 0.25);
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.community-trust-note i {
    font-size: 18px;
    color: #D4AF5F;
    flex-shrink: 0;
}

.community-trust-note p {
    margin: 0;
    font-size: 14px;
    color: #B8B8B8;
    line-height: 1.5;
}

/* Grid de 4 cards */
.community-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.community-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 95, 0.22);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    border-color: rgba(212, 175, 95, 0.4);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.045);
}

.community-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(100, 199, 179, 0.12);
    border: 1px solid rgba(100, 199, 179, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-card-icon i {
    font-size: 28px;
    color: #64C7B3;
}

.community-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.community-card-text {
    font-size: 15px;
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

/* CTA Final */
.community-cta {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 95, 0.15);
}

.community-cta-title {
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.community-cta-text {
    font-size: 16px;
    color: #C0C0C0;
    line-height: 1.7;
    margin-bottom: 32px;
}

.community-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.community-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #D4AF5F 0%, #B8985E 100%);
    color: #0a0f0d;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 95, 0.25);
}

.community-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 95, 0.4);
    background: linear-gradient(135deg, #E0BF72 0%, #D4AF5F 100%);
}

.community-btn-primary i {
    font-size: 18px;
}

.community-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #D4AF5F;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(212, 175, 95, 0.5);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.community-btn-secondary:hover {
    border-color: #D4AF5F;
    background: rgba(212, 175, 95, 0.1);
    transform: translateY(-2px);
}

.community-btn-secondary i {
    font-size: 16px;
}

.community-cta-note {
    font-size: 14px;
    color: #A0A0A0;
    margin: 0;
    font-style: italic;
}
    margin-bottom: 1rem;
}

.community-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   CTA SECTIONS - Links estilo botón para secciones
   ======================================== */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta .btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4b680 0%, #b8985e 100%);
    color: #0f0b08;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.section-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 182, 128, 0.3);
    background: linear-gradient(135deg, #e6c890 0%, #d4b680 100%);
}

/* ========================================
   CONTAINER UTILITY
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   RESPONSIVE: TABLET
   ======================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .steps-grid,
    .ecosystem-grid,
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================
   RESPONSIVE: MOBILE
   ======================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .benefits-grid,
    .steps-grid,
    .ecosystem-grid,
    .trust-grid,
    .features-list,
    .community-preview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card,
    .step-card,
    .ecosystem-card {
        padding: 2rem;
    }
    
    .activation-form,
    .aliados-form {
        padding: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}
/* ========================================
   HERO BUTTON FIX - Forzar estilos originales
   ======================================== */

/* Asegurar que los botones del hero tengan los estilos correctos */
.hero .btn-primary,
.hero-cta .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.6rem !important;
  background: rgba(201, 168, 112, 0.85) !important;
  color: rgba(0, 0, 0, 0.9) !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;
}

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

.hero .btn-secondary,
.hero-cta .btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.6rem !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(212, 182, 128, 0.35) !important;
  border-radius: 50px !important;
  color: rgba(212, 182, 128, 0.95) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;
}

.hero .btn-secondary:hover,
.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(212, 182, 128, 0.50) !important;
  transform: translateY(-1px) !important;
}
/* ========================================
   NAVBAR CTA BUTTON - ESTILO PREMIUM
   Solo afecta al botón del navbar, no al hero
   ======================================== */

/* Botón CTA en el navbar - ESTILO IDÉNTICO AL ORIGINAL */
.nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.9rem 1.8rem !important;
  
  /* Fondo dorado/beige sólido como el original */
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.22) 0%, 
    rgba(212, 182, 128, 0.16) 100%
  ) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(212, 182, 128, 0.40) !important;
  border-radius: 10px !important;
  
  /* Texto claro/blanco */
  color: rgba(255, 252, 245, 0.98) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  
  /* Transición suave */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  
  /* Sombra sutil */
  box-shadow: 0 2px 8px rgba(212, 182, 128, 0.08) !important;
  
  cursor: pointer !important;
}

/* Hover: fondo más intenso */
.nav-cta:hover {
  background: linear-gradient(135deg, 
    rgba(212, 182, 128, 0.30) 0%, 
    rgba(212, 182, 128, 0.24) 100%
  ) !important;
  border-color: rgba(212, 182, 128, 0.50) !important;
  color: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 16px rgba(212, 182, 128, 0.15) !important;
  transform: translateY(-1px) !important;
}

/* Active state */
.nav-cta:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(212, 182, 128, 0.2) !important;
}

/* Icono opcional de huella (si se agrega) */
.nav-cta .fa-paw {
  font-size: 0.85rem !important;
  opacity: 0.8 !important;
}

/* ========================================
   RESPONSIVE: TABLET
   ======================================== */
@media (max-width: 1199px) {
  .nav-cta {
    padding: 0.65rem 1.5rem !important;
    font-size: 0.85rem !important;
  }
}

/* ========================================
   RESPONSIVE: MOBILE
   ======================================== */
@media (max-width: 768px) {
  /* En mobile, el botón está oculto del navbar principal */
  .navbar .nav-cta {
    display: none !important;
  }
  
  /* El botón aparece destacado dentro del menú móvil */
  .mobile-menu-cta a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    margin: 1.5rem 1rem !important;
    
    background: linear-gradient(135deg, rgba(212, 182, 128, 0.15) 0%, rgba(212, 182, 128, 0.1) 100%) !important;
    border: 2px solid rgba(212, 182, 128, 0.6) !important;
    border-radius: 12px !important;
    
    color: rgba(212, 182, 128, 1) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    
    box-shadow: 0 4px 15px rgba(212, 182, 128, 0.2) !important;
    
    transition: all 0.3s ease !important;
  }
  
  .mobile-menu-cta a:hover,
  .mobile-menu-cta a:active {
    background: rgba(212, 182, 128, 0.9) !important;
    color: rgba(0, 0, 0, 0.95) !important;
    transform: scale(1.02) !important;
  }
}

/* ========================================
   RESPONSIVE: ACTIVACIÓN - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .activation-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .activation-sidebar {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .activation-container {
    padding: 0 30px;
  }
  
  .activation-form-container {
    padding: 36px;
  }
}

/* ========================================
   RESPONSIVE: ACTIVACIÓN - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .activation-section {
    padding: 70px 0 80px;
  }
  
  .activation-container {
    padding: 0 20px;
  }
  
  .activation-main-title {
    font-size: 32px;
  }
  
  .activation-hero-text {
    font-size: 16px;
  }
  
  .activation-benefits {
    flex-direction: column;
    gap: 12px;
  }
  
  .activation-benefit-pill {
    width: 100%;
    justify-content: center;
  }
  
  .activation-form-container {
    padding: 32px 28px;
  }
  
  .activation-steps-indicator {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding-bottom: 24px;
    margin-bottom: 28px;
  }
  
  .step-indicator-item {
    justify-content: center;
  }
  
  .form-step {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  
  .form-step-header {
    gap: 12px;
  }
  
  .form-step-title {
    font-size: 17px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 16px;
    font-size: 16px;
  }
  
  .form-privacy-note {
    flex-direction: row;
    padding: 14px 16px;
  }
  
  .form-privacy-note p {
    font-size: 13px;
  }
  
  .form-consent {
    padding: 16px 18px;
  }
  
  .activation-submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
  }
  
  .trust-block {
    padding: 28px 24px;
  }
  
  .trust-block-title {
    font-size: 20px;
  }
  
  .trust-steps {
    gap: 20px;
  }
  
  .trust-step-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .trust-step-content h4 {
    font-size: 15px;
  }
  
  .trust-step-content p {
    font-size: 13px;
  }
}

/* ========================================
   RESPONSIVE: ALIADOS - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .partners-section {
    padding: 100px 0 110px;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  
  .partners-form-column {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .partners-main-title {
    font-size: 36px;
  }
}

/* ========================================
   RESPONSIVE: ALIADOS - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .partners-section {
    padding: 80px 0 90px;
  }
  
  .partners-container {
    padding: 0 20px;
  }
  
  .partners-header {
    margin-bottom: 48px;
  }
  
  .partners-main-title {
    font-size: 28px;
  }
  
  .partners-intro {
    font-size: 16px;
  }
  
  .partners-statement {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
  
  .partners-statement p {
    font-size: 14px;
  }
  
  .partners-grid {
    gap: 36px;
    margin-top: 48px;
  }
  
  .partners-value-column {
    gap: 32px;
  }
  
  .partners-types,
  .partners-benefits {
    padding: 24px 20px;
  }
  
  .partners-subtitle {
    font-size: 20px;
  }
  
  .partners-pills {
    gap: 8px;
  }
  
  .partner-pill {
    font-size: 13px;
    padding: 7px 14px;
  }
  
  .partners-benefit-list {
    gap: 18px;
  }
  
  .benefit-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .benefit-content h4 {
    font-size: 15px;
  }
  
  .benefit-content p {
    font-size: 13px;
  }
  
  .partners-form-card {
    padding: 28px 24px;
  }
  
  .partners-form-title {
    font-size: 22px;
  }
  
  .partners-form-intro {
    font-size: 14px;
  }
  
  .partners-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .partners-submit-btn {
    font-size: 15px;
  }
}

/* ========================================
   RESPONSIVE: COMUNIDAD - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .community-section {
    padding: 100px 0 110px;
  }
  
  .community-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .community-main-title {
    font-size: 36px;
  }
}

/* ========================================
   RESPONSIVE: COMUNIDAD - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .community-section {
    padding: 80px 0 90px;
  }
  
  .community-container {
    padding: 0 20px;
  }
  
  .community-header {
    margin-bottom: 48px;
  }
  
  .community-main-title {
    font-size: 28px;
  }
  
  .community-intro {
    font-size: 16px;
  }
  
  .community-trust-note {
    flex-direction: column;
    text-align: center;
    padding: 14px 20px;
  }
  
  .community-trust-note p {
    font-size: 13px;
  }
  
  .community-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 56px;
  }
  
  .community-card {
    padding: 28px 24px;
  }
  
  .community-card-icon {
    width: 56px;
    height: 56px;
  }
  
  .community-card-icon i {
    font-size: 24px;
  }
  
  .community-card-title {
    font-size: 18px;
  }
  
  .community-card-text {
    font-size: 14px;
  }
  
  .community-cta {
    padding-top: 32px;
  }
  
  .community-cta-title {
    font-size: 22px;
  }
  
  .community-cta-text {
    font-size: 15px;
  }
  
  .community-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .community-btn-primary,
  .community-btn-secondary {
    width: 100%;
    font-size: 15px;
  }
  
  .community-cta-note {
    font-size: 13px;
  }
}

/* ========================================
   SECCIÓN: CONTACTO
   ======================================== */
.contact-section {
    background: linear-gradient(135deg, #0a0f0d 0%, #050807 100%);
    padding: 120px 0 110px;
    scroll-margin-top: 90px;
}

.contact-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cabecera */
.contact-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 56px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(212, 175, 95, 0.12);
    border: 1px solid rgba(212, 175, 95, 0.3);
    border-radius: 20px;
    color: #D4AF5F;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.contact-main-title {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-size: 17px;
    color: #C0C0C0;
    line-height: 1.7;
}

/* Grid de cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(212, 175, 95, 0.22);
    border-radius: 20px;
    padding: 38px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(212, 175, 95, 0.45);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    background: rgba(212, 175, 95, 0.12);
    border: 1px solid rgba(212, 175, 95, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    font-size: 24px;
    color: #D4AF5F;
}

.contact-card-title {
    font-size: 21px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.contact-card-text {
    font-size: 15px;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 26px;
    flex-grow: 1;
}

.contact-card-btn {
    display: inline-block;
    padding: 13px 26px;
    background: transparent;
    color: #D4AF5F;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(212, 175, 95, 0.5);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-btn:hover {
    border-color: #D4AF5F;
    background: rgba(212, 175, 95, 0.1);
    transform: translateY(-2px);
}

/* ========================================
   FOOTER PREMIUM
   ======================================== */
.site-footer {
    background: linear-gradient(135deg, #050807 0%, #020403 100%);
    padding: 70px 0 36px;
    border-top: 1px solid rgba(212, 175, 95, 0.14);
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Grid de 5 columnas */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Columna de marca */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 42px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 15px;
    color: #C0C0C0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-subtitle {
    font-size: 13px;
    color: #909090;
    line-height: 1.6;
    margin: 0;
}

/* Columnas de links */
.footer-col-title {
    font-size: 14px;
    color: #D4AF5F;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A8A8A8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #D4AF5F;
    transform: translateX(4px);
}

/* Footer bottom */
.footer-bottom {
    padding-top: 36px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(212, 175, 95, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: #909090;
    margin: 0;
}

.footer-slogan {
    font-size: 14px;
    color: #A0A0A0;
    margin: 0;
    font-style: italic;
}

/* ========================================
   RESPONSIVE: CONTACTO Y FOOTER - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .contact-section {
        padding: 100px 0 90px;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .contact-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 12px;
    }
}

/* ========================================
   RESPONSIVE: CONTACTO Y FOOTER - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 70px;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-header {
        margin-bottom: 44px;
    }
    
    .contact-main-title {
        font-size: 26px;
    }
    
    .contact-intro {
        font-size: 16px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }
    
    .contact-card {
        padding: 32px 28px;
    }
    
    .contact-card-btn {
        width: 100%;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 36px;
    }
    
    .footer-brand {
        grid-column: 1;
        margin-bottom: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 28px;
    }
    
    .footer-copyright,
    .footer-slogan {
        font-size: 12px;
    }
}

/* ========================================
   SECCIÓN: CONFIANZA Y RESPONSABILIDAD
   ======================================== */

.trust-section {
    background: linear-gradient(135deg, #0a0f0d 0%, #050807 100%);
    padding: 100px 0 110px;
    position: relative;
    scroll-margin-top: 90px;
}

.trust-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.trust-header {
    text-align: center;
    margin-bottom: 54px;
}

.trust-badge {
    display: inline-block;
    padding: 9px 22px;
    background: rgba(212, 175, 95, 0.08);
    border: 1px solid rgba(212, 175, 95, 0.24);
    border-radius: 50px;
    color: rgba(212, 175, 95, 0.92);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(212, 175, 95, 0.12);
    border-color: rgba(212, 175, 95, 0.35);
}

.trust-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 252, 245, 0.96);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.trust-intro {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 252, 245, 0.68);
    max-width: 760px;
    margin: 0 auto;
}

/* Cards Grid */
.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 38px;
}

.trust-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0.008) 100%);
    border: 1px solid rgba(212, 175, 95, 0.20);
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 95, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.trust-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0.015) 100%);
    border-color: rgba(212, 175, 95, 0.38);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

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

.trust-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 95, 0.10);
    border-radius: 50%;
    color: rgba(212, 175, 95, 0.88);
    font-size: 24px;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-card-icon {
    background: rgba(212, 175, 95, 0.16);
    color: rgba(212, 175, 95, 1);
    transform: scale(1.08);
}

.trust-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(212, 175, 95, 0.94);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.trust-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 252, 245, 0.65);
}

/* Disclaimer Note */
.trust-disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 252, 245, 0.52);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

/* ========================================
   RESPONSIVE: TRUST SECTION - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .trust-section {
        padding: 90px 0 100px;
    }
    
    .trust-header {
        margin-bottom: 48px;
    }
    
    .trust-main-title {
        font-size: 34px;
    }
    
    .trust-intro {
        font-size: 16px;
    }
    
    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

/* ========================================
   RESPONSIVE: TRUST SECTION - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .trust-section {
        padding: 80px 0 90px;
    }
    
    .trust-container {
        padding: 0 20px;
    }
    
    .trust-header {
        margin-bottom: 42px;
    }
    
    .trust-badge {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .trust-main-title {
        font-size: 28px;
    }
    
    .trust-intro {
        font-size: 15px;
    }
    
    .trust-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 34px;
    }
    
    .trust-card {
        padding: 28px 22px;
    }
    
    .trust-card-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .trust-card-title {
        font-size: 17px;
    }
    
    .trust-card-text {
        font-size: 14px;
    }
    
    .trust-disclaimer {
        font-size: 13px;
    }
}

/* ========================================
   SECCIÓN: PELUSHOW SELECT - PRODUCTOS
   ======================================== */

.select-section {
    background: linear-gradient(135deg, #070b09 0%, #0a0f0d 100%);
    padding: 130px 0 140px;
    position: relative;
    scroll-margin-top: 90px;
}

.select-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.select-header {
    text-align: center;
    margin-bottom: 56px;
}

.select-badge {
    display: inline-block;
    padding: 9px 22px;
    background: rgba(212, 175, 95, 0.08);
    border: 1px solid rgba(212, 175, 95, 0.24);
    border-radius: 50px;
    color: rgba(212, 175, 95, 0.92);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.select-badge:hover {
    background: rgba(212, 175, 95, 0.12);
    border-color: rgba(212, 175, 95, 0.35);
}

.select-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 252, 245, 0.96);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.select-intro {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 252, 245, 0.68);
    max-width: 820px;
    margin: 0 auto 28px;
}

.select-highlight {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(100, 199, 179, 0.06);
    border: 1px solid rgba(100, 199, 179, 0.22);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: rgba(100, 199, 179, 0.92);
    letter-spacing: -0.01em;
}

/* Grid de categorías */
.select-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.select-category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.022) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(212, 175, 95, 0.22);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.select-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 95, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.select-category-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.018) 100%);
    border-color: rgba(212, 175, 95, 0.40);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.select-category-card:hover::before {
    opacity: 1;
}

.select-cat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 95, 0.10);
    border-radius: 50%;
    color: rgba(212, 175, 95, 0.88);
    font-size: 22px;
    transition: all 0.3s ease;
}

.select-category-card:hover .select-cat-icon {
    background: rgba(212, 175, 95, 0.16);
    color: rgba(212, 175, 95, 1);
    transform: scale(1.08);
}

.select-cat-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(212, 175, 95, 0.94);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.select-cat-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 252, 245, 0.65);
}

/* Bloque de productos destacados */
.select-featured-section {
    margin-bottom: 64px;
}

.select-featured-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(212, 175, 95, 0.96);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.select-featured-intro {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 252, 245, 0.68);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px;
}

/* Grid de productos */
.select-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
    /* 3 columnas desktop para layout 3+2 con 5 productos */
}

.select-product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.022) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(212, 175, 95, 0.22);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.select-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 95, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.select-product-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.018) 100%);
    border-color: rgba(212, 175, 95, 0.40);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.select-product-card:hover::before {
    opacity: 1;
}

/* Contenedor de imagen */
.select-product-image-container {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.select-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.select-product-card:hover .select-product-image {
    transform: scale(1.05);
}

/* Placeholder si no hay imagen */
.select-product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 95, 0.08) 0%, rgba(212, 175, 95, 0.04) 100%);
}

.select-product-placeholder i {
    font-size: 48px;
    color: rgba(212, 175, 95, 0.35);
    margin-bottom: 12px;
}

.select-product-placeholder p {
    font-size: 14px;
    color: rgba(255, 252, 245, 0.45);
    font-weight: 500;
}

/* Contenido del producto */
.select-product-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.select-product-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(100, 199, 179, 0.12);
    border: 1px solid rgba(100, 199, 179, 0.28);
    border-radius: 20px;
    color: rgba(100, 199, 179, 0.96);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.select-product-badge-custom {
    background: rgba(212, 175, 95, 0.12);
    border-color: rgba(212, 175, 95, 0.28);
    color: rgba(212, 175, 95, 0.96);
}

.select-product-badge-kit {
    background: rgba(100, 199, 179, 0.15);
    border-color: rgba(100, 199, 179, 0.35);
    color: rgba(100, 199, 179, 1);
}

.select-product-badge-colors {
    background: rgba(212, 175, 95, 0.12);
    border-color: rgba(212, 175, 95, 0.28);
    color: rgba(212, 175, 95, 0.96);
}

.select-product-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(212, 175, 95, 0.96);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.select-product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 252, 245, 0.62);
    margin-bottom: 16px;
    min-height: 66px;
}

.select-product-price {
    font-size: 28px;
    font-weight: 700;
    color: rgba(212, 175, 95, 0.98);
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.select-product-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 50px;
    color: rgba(37, 211, 102, 0.96);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.select-product-cta:hover {
    background: rgba(37, 211, 102, 0.20);
    border-color: rgba(37, 211, 102, 0.55);
    color: rgba(37, 211, 102, 1);
    transform: translateY(-2px);
}

.select-product-cta i {
    font-size: 16px;
}

/* Microtexto debajo de CTA */
.select-product-note {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 252, 245, 0.45);
    margin-top: 10px;
    text-align: center;
}

/* Sección Cómo comprar */
.select-how-to-buy {
    background: linear-gradient(135deg, rgba(212, 175, 95, 0.03) 0%, rgba(212, 175, 95, 0.01) 100%);
    border: 1px solid rgba(212, 175, 95, 0.15);
    border-radius: 24px;
    padding: 44px 40px;
    margin-bottom: 52px;
    text-align: center;
}

.select-htb-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(212, 175, 95, 0.96);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.select-htb-intro {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 252, 245, 0.66);
    max-width: 680px;
    margin: 0 auto 36px;
}

.select-htb-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.select-htb-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(212, 175, 95, 0.22);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.select-htb-step:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.025) 100%);
    border-color: rgba(212, 175, 95, 0.35);
    transform: translateY(-4px);
}

.select-htb-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(212, 175, 95, 0.15) 0%, rgba(212, 175, 95, 0.08) 100%);
    border: 1px solid rgba(212, 175, 95, 0.30);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: rgba(212, 175, 95, 0.98);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.select-htb-step-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 252, 245, 0.92);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.select-htb-step-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 252, 245, 0.58);
}

/* Responsive para Cómo comprar */
@media (max-width: 1024px) {
    .select-htb-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .select-htb-step {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .select-how-to-buy {
        padding: 36px 24px;
    }
    
    .select-htb-title {
        font-size: 22px;
    }
    
    .select-htb-intro {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .select-htb-number {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .select-htb-step-title {
        font-size: 16px;
    }
    
    .select-htb-step-text {
        font-size: 13px;
    }
}

/* Sección personalizada */
.select-personalized {
    background: linear-gradient(135deg, rgba(100, 199, 179, 0.04) 0%, rgba(100, 199, 179, 0.02) 100%);
    border: 1px solid rgba(100, 199, 179, 0.18);
    border-radius: 24px;
    padding: 44px 40px;
    margin-bottom: 48px;
    text-align: center;
}

.select-pers-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(100, 199, 179, 0.96);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.select-pers-text {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 252, 245, 0.68);
    max-width: 720px;
    margin: 0 auto 32px;
}

/* Card de ejemplo */
.select-example-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(100, 199, 179, 0.28);
    border-radius: 18px;
    padding: 28px 32px;
    max-width: 460px;
    margin: 0 auto;
    text-align: left;
}

.select-example-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(100, 199, 179, 0.15);
}

.select-example-for {
    font-size: 18px;
    font-weight: 600;
    color: rgba(100, 199, 179, 0.96);
}

.select-example-meta {
    font-size: 13px;
    color: rgba(255, 252, 245, 0.52);
}

.select-example-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 252, 245, 0.60);
    margin-bottom: 14px;
}

.select-example-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.select-example-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 252, 245, 0.78);
    margin-bottom: 10px;
}

.select-example-items li:last-child {
    margin-bottom: 0;
}

.select-example-items li i {
    color: rgba(100, 199, 179, 0.88);
    font-size: 14px;
}

/* CTAs finales */
.select-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.select-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(135deg, rgba(212, 175, 95, 0.18), rgba(212, 175, 95, 0.12));
    border: 1px solid rgba(212, 175, 95, 0.38);
    border-radius: 50px;
    color: rgba(212, 175, 95, 0.96);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}

.select-cta-primary:hover {
    background: linear-gradient(135deg, rgba(212, 175, 95, 0.28), rgba(212, 175, 95, 0.20));
    border-color: rgba(212, 175, 95, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.30);
    color: rgba(212, 175, 95, 1);
}

.select-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: transparent;
    border: 1px solid rgba(100, 199, 179, 0.28);
    border-radius: 50px;
    color: rgba(100, 199, 179, 0.92);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.select-cta-secondary:hover {
    background: rgba(100, 199, 179, 0.08);
    border-color: rgba(100, 199, 179, 0.45);
    color: rgba(100, 199, 179, 1);
    transform: translateY(-2px);
}

/* Disclaimer de productos */
.select-products-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 252, 245, 0.48);
    text-align: center;
    font-style: italic;
    margin-top: 8px;
}

/* Disclaimer general */
.select-disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 252, 245, 0.48);
    text-align: center;
    font-style: italic;
}

/* ========================================
   RESPONSIVE: SELECT SECTION - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .select-section {
        padding: 110px 0 120px;
    }
    
    .select-header {
        margin-bottom: 50px;
    }
    
    .select-main-title {
        font-size: 36px;
    }
    
    .select-intro {
        font-size: 16px;
    }
    
    .select-categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }
    
    .select-featured-section {
        margin-bottom: 56px;
    }
    
    .select-featured-title {
        font-size: 26px;
    }
    
    .select-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        margin-bottom: 24px;
    }
    
    .select-product-image-container {
        height: 240px;
    }
    
    .select-personalized {
        padding: 38px 32px;
    }
    
    .select-ctas {
        flex-direction: column;
        gap: 14px;
    }
    
    .select-cta-primary,
    .select-cta-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE: SELECT SECTION - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .select-section {
        padding: 90px 0 100px;
    }
    
    .select-container {
        padding: 0 20px;
    }
    
    .select-header {
        margin-bottom: 44px;
    }
    
    .select-badge {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .select-main-title {
        font-size: 30px;
    }
    
    .select-intro {
        font-size: 15px;
    }
    
    .select-highlight {
        font-size: 15px;
        padding: 12px 24px;
    }
    
    .select-categories-grid {
        margin-bottom: 48px;
    }
    
    .select-category-card {
        padding: 28px 24px;
    }
    
    .select-cat-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .select-cat-title {
        font-size: 19px;
    }
    
    .select-featured-section {
        margin-bottom: 48px;
    }
    
    .select-featured-title {
        font-size: 24px;
    }
    
    .select-featured-intro {
        font-size: 15px;
    }
    
    .select-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .select-product-image-container {
        height: 280px;
    }
    
    .select-product-content {
        padding: 20px;
    }
    
    .select-product-title {
        font-size: 18px;
    }
    
    .select-product-desc {
        font-size: 14px;
        min-height: auto;
    }
    
    .select-product-price {
        font-size: 20px;
    }
    
    .select-personalized {
        padding: 32px 24px;
    }
    
    .select-pers-title {
        font-size: 22px;
    }
    
    .select-pers-text {
        font-size: 15px;
    }
    
    .select-example-card {
        padding: 24px;
    }
    
    .select-example-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .select-cta-primary,
    .select-cta-secondary {
        font-size: 15px;
        padding: 14px 28px;
    }
}

/* ================================================
   RESPONSIVE DESIGN - SISTEMA COMPLETO OPTIMIZADO
   Correcciones exhaustivas para iPad, Tablet y Mobile
   ================================================ */

/* ================================================
   DESKTOP GRANDE: 1440px+
   ================================================ */
@media (min-width: 1440px) {
    .nav-container,
    .container-wide,
    .hero-container {
        max-width: 1600px;
    }
    
    .section-container {
        max-width: 1400px;
    }
}

/* ================================================
   DESKTOP/LAPTOP: 1180px - 1439px
   ================================================ */
@media (max-width: 1439px) and (min-width: 1180px) {
    .nav-container {
        padding: 0 2.5rem;
    }
    
    .container-wide,
    .section-container {
        padding: 0 2.5rem;
    }
    
    /* Mantener menú horizontal si cabe */
    .nav-menu {
        gap: 1.8rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

/* ================================================
   TABLET HORIZONTAL: 1024px - 1179px
   IMPORTANTE: Activar hamburguesa desde 1024px
   ================================================ */
@media (max-width: 1179px) and (min-width: 1024px) {
    /* Scroll offset ajustado */
    html {
        scroll-padding-top: 95px;
    }
    
    /* NAVEGACIÓN: Activar hamburguesa */
    .nav-menu {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: rgba(212, 175, 95, 0.9);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* CTA header - versión corta */
    .btn-nav-primary .paw-icon {
        margin-right: 6px;
    }
    
    .btn-nav-primary {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    /* Containers optimizados para tablet */
    .nav-container {
        padding: 0 2rem;
    }
    
    .container-wide,
    .section-container {
        max-width: 960px;
        padding: 0 32px;
        margin: 0 auto;
    }
    
    /* Hero tablet horizontal */
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 0 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 5vw, 3.8rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: clamp(1rem, 1.8vw, 1.15rem);
        max-width: 680px;
        margin: 0 auto 2rem;
        line-height: 1.65;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        min-width: 200px;
        padding: 14px 24px;
    }
    
    /* Grids - 2 columnas */
    .why-grid,
    .cuida-pillars,
    .ecosystem-cards,
    .trust-cards-grid,
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    /* Select Categories - 3 columnas compactas */
    .select-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* Select Products - 3 columnas */
    .select-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
    
    /* Pelushow Cuida - Grid 1 columna, contenido centrado */
    .cuida-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cuida-content {
        text-align: center;
        margin: 0 auto;
        max-width: 700px;
    }
    
    .cuida-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-title {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-value-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-ctas {
        justify-content: center;
    }
    
    .cuida-trust {
        text-align: center;
    }
    
    .cuida-mockup {
        max-width: 540px;
        margin: 0 auto;
    }
    
    .cuida-indicator {
        position: static;
        display: inline-flex;
        margin: 0 6px 12px 6px;
    }
}

/* ================================================
   TABLET VERTICAL / iPAD: 768px - 1023px
   CRÍTICO: No debe parecer desktop comprimido
   ================================================ */
@media (max-width: 1023px) and (min-width: 768px) {
    /* Scroll offset ajustado */
    html {
        scroll-padding-top: 90px;
    }
    
    /* NAVEGACIÓN: Hamburguesa activada */
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-logo {
        height: 55px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    .btn-nav-primary {
        font-size: 13px;
        padding: 9px 14px;
    }
    
    /* Mobile menu activo */
    .mobile-menu-overlay {
        display: block;
    }
    
    .mobile-menu-panel {
        display: block;
    }
    
    /* CONTAINERS: Max-width optimizado para tablet vertical */
    .container-wide,
    .section-container {
        max-width: 920px;
        padding: 0 28px;
        margin: 0 auto;
    }
    
    /* HERO: No debe parecer comprimido */
    .hero {
        min-height: 65vh;
    }
    
    .hero-content {
        padding: 0 2rem;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(2.4rem, 4.5vw, 3.2rem);
        margin-bottom: 1.3rem;
        line-height: 1.25;
    }
    
    .hero-description {
        font-size: clamp(0.98rem, 1.8vw, 1.1rem);
        max-width: 640px;
        margin: 0 auto 2rem;
        line-height: 1.7;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 14px 24px;
        min-height: 48px;
    }
    
    /* PELUSHOW CUIDA: Layout 1 columna centrado tablet vertical */
    .cuida-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cuida-content {
        text-align: center;
        margin: 0 auto;
        max-width: 680px;
    }
    
    .cuida-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-title {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-value-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-ctas {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cuida-cta-primary,
    .cuida-cta-secondary {
        min-width: 200px;
    }
    
    .cuida-trust {
        text-align: center;
    }
    
    .cuida-mockup {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cuida-indicator {
        position: static;
        display: inline-flex;
        margin: 0 6px 12px 6px;
        justify-content: center;
    }
    
    /* Pills de Pelushow Cuida */
    .cuida-benefits-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    /* GRIDS: 2 columnas balanceadas */
    .why-grid,
    .cuida-pillars,
    .ecosystem-cards,
    .trust-cards-grid,
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Select Categories - 3 columnas compactas */
    .select-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .select-category-card {
        padding: 1.5rem 1.2rem;
    }
    
    .select-category-title {
        font-size: 1rem;
    }
    
    /* Select Products - 2 columnas */
    .select-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .select-product-image-container {
        height: 240px;
    }
    
    /* Cómo comprar - 3 columnas compactas */
    .select-htb-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .select-htb-step {
        padding: 1.3rem 0.9rem;
    }
    
    .select-htb-number {
        width: 42px;
        height: 42px;
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .select-htb-step-title {
        font-size: 15px;
    }
    
    .select-htb-step-text {
        font-size: 13px;
    }
    
    /* Formularios - mantener 2 columnas si respira */
    .form-row {
        gap: 1.2rem;
    }
    
    /* Footer - 2 columnas */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Secciones - reducir padding vertical */
    section {
        padding: 4rem 0;
    }
}

/* ================================================
   MOBILE GRANDE: 430px - 767px
   ================================================ */
@media (max-width: 767px) and (min-width: 430px) {
    /* Scroll offset */
    html {
        scroll-padding-top: 82px;
    }
    
    /* Navegación */
    .navbar {
        padding: 0.95rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    /* CTA header - ocultar en mobile */
    .btn-nav-primary {
        display: none !important;
    }
    
    /* Containers */
    .container-wide,
    .section-container {
        padding: 0 20px;
    }
    
    /* HERO */
    .hero {
        min-height: 58vh;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.9rem, 5vw, 2.6rem);
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: clamp(0.92rem, 2vw, 1.02rem);
        margin-bottom: 1.8rem;
        line-height: 1.65;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    /* BOTONES MOBILE: Width 100%, max-width 300px, min-height 48px, textos cortos */
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 14px 18px;
        font-size: 15px;
        min-height: 48px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        text-overflow: unset;
    }
    
    /* Asegurar que spans internos no causen problemas */
    .hero-cta .btn-primary span,
    .hero-cta .btn-secondary span,
    .btn-primary span,
    .btn-secondary span {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        max-width: 100%;
        text-align: center;
        line-height: 1.2;
        display: inline;
    }
    
    
    
    /* Versiones cortas de CTAs en mobile */
    .btn-nav-primary,
    .hero-cta .btn-primary {
        /* Botones con texto simple y limpio */
    }
    
    .cuida-cta-group .btn-primary,
    .cuida-cta-group .btn-secondary {
        width: 100%;
        padding: 14px 20px;
        min-height: 48px;
    }
    
    /* Títulos de sección */
    .section-title,
    .why-title,
    .cuida-section-title,
    .ecosystem-title,
    .select-title {
        font-size: clamp(1.85rem, 4.5vw, 2.3rem);
        margin-bottom: 1.1rem;
    }
    
    .section-subtitle,
    .cuida-section-intro {
        font-size: clamp(0.92rem, 2vw, 1.02rem);
        margin-bottom: 2rem;
    }
    
    /* PELUSHOW CUIDA: 1 columna centrado mobile */
    .cuida-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cuida-content {
        text-align: center;
    }
    
    .cuida-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-title {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-value-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cuida-ctas {
        flex-direction: column;
        gap: 0.9rem;
        align-items: center;
    }
    
    .cuida-cta-primary,
    .cuida-cta-secondary {
        width: 100%;
        max-width: 360px;
        text-align: center;
    }
    
    .cuida-trust {
        text-align: center;
    }
    
    .cuida-mockup {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .cuida-indicator {
        position: static;
        display: inline-flex;
        margin: 0 6px 12px 6px;
        justify-content: center;
    }
    
    .cuida-benefits-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* GRIDS: 1 columna */
    .why-grid,
    .cuida-pillars,
    .ecosystem-cards,
    .trust-cards-grid,
    .community-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }
    
    /* Select Categories - 1 columna */
    .select-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Select Products - 1 columna */
    .select-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .select-product-card {
        max-width: 100%;
    }
    
    .select-product-image-container {
        height: 280px;
    }
    
    .select-product-price {
        font-size: 25px;
        margin-top: 17px;
        margin-bottom: 17px;
    }
    
    .select-product-cta {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 48px;
        width: 100%;
    }
    
    /* Cómo comprar - 1 columna */
    .select-htb-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .select-how-to-buy {
        padding: 2.5rem 1.5rem;
    }
    
    .select-htb-title {
        font-size: 1.85rem;
    }
    
    .select-htb-intro {
        font-size: 14px;
        margin-bottom: 2rem;
    }
    
    /* FORMULARIOS: 1 columna */
    .activation-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        width: 100% !important;
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px; /* Evita zoom en iOS */
        min-height: 48px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-submit-form {
        width: 100%;
        padding: 15px 24px;
        font-size: 16px;
        min-height: 50px;
    }
    
    /* Stepper vertical */
    .stepper {
        padding: 1.5rem 1rem;
        flex-wrap: wrap;
    }
    
    .stepper-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        min-width: 80px;
    }
    
    .stepper-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .stepper-label {
        font-size: 12px;
    }
    
    .stepper-line {
        display: none;
    }
    
    /* Footer - 1 columna */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Secciones */
    section {
        padding: 3.2rem 0;
    }
    
    .why-pelushow-section,
    .pelushow-cuida-section,
    .ecosystem-section,
    .select-section {
        padding: 3.5rem 0;
    }
}

/* ================================================
   MOBILE MEDIO: 390px - 429px
   ================================================ */
@media (max-width: 429px) and (min-width: 390px) {
    .nav-logo {
        height: 48px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.2rem);
    }
    
    .hero-description {
        font-size: 0.92rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        padding: 14px 20px;
        font-size: 14.5px;
    }
    
    .select-product-image-container {
        height: 260px;
    }
    
    .select-product-price {
        font-size: 23px;
    }
    
    .container-wide,
    .section-container {
        padding: 0 18px;
    }
}

/* ================================================
   MOBILE PEQUEÑO: 360px - 389px
   ================================================ */
@media (max-width: 389px) and (min-width: 360px) {
    .nav-container {
        padding: 0 1.2rem;
    }
    
    .nav-logo {
        height: 46px;
    }
    
    .hero-title {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }
    
    .hero-description {
        font-size: 0.88rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        padding: 13px 18px;
        font-size: 14px;
    }
    
    .select-product-image-container {
        height: 240px;
    }
    
    .select-product-price {
        font-size: 21px;
    }
    
    .container-wide,
    .section-container {
        padding: 0 16px;
    }
}

/* ================================================
   MOBILE MUY PEQUEÑO: < 360px
   ================================================ */
@media (max-width: 359px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        height: 44px;
    }
    
    .hero-title {
        font-size: 1.55rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .container-wide,
    .section-container {
        padding: 0 14px;
    }
    
    section {
        padding: 2.8rem 0;
    }
}

/* ================================================
   AJUSTES ESPECÍFICOS iPAD PRO 12.9" PORTRAIT
   ================================================ */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .select-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .select-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .container-wide,
    .section-container {
        max-width: 940px;
    }
}

/* ================================================
   AJUSTES ESPECÍFICOS iPAD MINI / iPAD AIR
   ================================================ */
@media (min-width: 768px) and (max-width: 834px) {
    .nav-logo {
        height: 52px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .select-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container-wide,
    .section-container {
        max-width: 900px;
    }
}

/* ================================================
   UTILIDADES RESPONSIVE GENERALES
   ================================================ */

/* Ocultar elementos según breakpoint */
@media (max-width: 1179px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 1180px) {
    .hide-desktop {
        display: none !important;
    }
    
    .menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay,
    .mobile-menu-panel {
        display: none !important;
    }
}

/* Prevenir zoom en iOS para inputs */
@media (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Asegurar que las imágenes sean responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Asegurar aspect-ratio en imágenes de productos */
.select-product-image,
.ecosystem-card img,
.cuida-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Botones táctiles mínimos 44px */
button,
.btn-primary,
.btn-secondary,
.btn-submit-form,
.select-product-cta,
a.btn-nav-primary {
    min-height: 44px;
    min-width: 44px;
}

/* Mejorar área táctil de links en mobile */
@media (max-width: 767px) {
    .nav-link,
    .mobile-menu-nav a,
    .footer-link {
        padding: 0.9rem 0;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Asegurar que no haya scroll horizontal */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

/* Contenedores no deben desbordar */
.container-wide,
.section-container,
.nav-container,
.hero-container {
    max-width: 100%;
    box-sizing: border-box;
}

/* ================================================
   PELUSHOW ENCUENTRA - REDISEÑO PREMIUM VISUAL
   ================================================ */

/* Sección principal */
.encuentra-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.encuentra-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 168, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Header */
.encuentra-header {
    text-align: center;
    margin-bottom: 60px;
}

.encuentra-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.encuentra-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.encuentra-intro {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 32px;
}

.encuentra-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 168, 107, 0.1) 100%);
    border-left: 4px solid #D4AF37;
    padding: 20px 32px;
    border-radius: 8px;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.encuentra-highlight i {
    font-size: 24px;
    color: #D4AF37;
}

.encuentra-highlight span {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 600;
}

/* Cards de acción */
.encuentra-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.encuentra-action-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 44px 36px;
    transition: all 0.3s ease;
    text-align: center;
}

.encuentra-action-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.encuentra-action-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 168, 107, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.encuentra-action-icon i {
    font-size: 32px;
    color: #D4AF37;
}

.encuentra-action-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.encuentra-action-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 28px;
}

.encuentra-action-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    text-align: left;
}

.encuentra-action-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.encuentra-action-checklist li i {
    color: #00A86B;
    font-size: 18px;
    flex-shrink: 0;
}

.encuentra-action-buttons {
    display: flex;
    justify-content: center;
}

.encuentra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 50px;
}

.encuentra-btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
    border: none;
}

.encuentra-btn-primary:hover {
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

/* Reportes recientes - CON IMÁGENES */
.encuentra-reportes-section {
    margin-bottom: 80px;
}

.encuentra-reportes-header {
    text-align: center;
    margin-bottom: 48px;
}

.encuentra-reportes-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.encuentra-reportes-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.encuentra-reportes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Tarjetas de reporte con imagen */
.encuentra-reporte-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.encuentra-reporte-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Contenedor de imagen con badge */
.encuentra-reporte-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.encuentra-reporte-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.encuentra-reporte-card:hover .encuentra-reporte-image {
    transform: scale(1.05);
}

/* Badge sobre la imagen */
.encuentra-reporte-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.encuentra-badge-lost {
    background: rgba(239, 68, 68, 0.90);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.encuentra-badge-found {
    background: rgba(59, 130, 246, 0.90);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.encuentra-badge-reunited {
    background: rgba(0, 168, 107, 0.90);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Contenido del reporte */
.encuentra-reporte-content {
    padding: 24px 20px;
}

.encuentra-reporte-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.encuentra-reporte-type {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.encuentra-reporte-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.encuentra-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.encuentra-meta-item i {
    color: #D4AF37;
    font-size: 14px;
    width: 16px;
}

.encuentra-reporte-description {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 40px;
}

/* Botones del reporte */
.encuentra-reporte-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.encuentra-reporte-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.encuentra-reporte-btn-primary:hover {
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
    transform: translateY(-2px);
}

.encuentra-reporte-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 211, 102, 0.3);
    text-align: center;
}

.encuentra-reporte-btn-secondary:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
}

/* Cómo funciona */
.encuentra-como-section {
    margin-bottom: 80px;
}

.encuentra-como-header {
    text-align: center;
    margin-bottom: 48px;
}

.encuentra-como-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
}

.encuentra-como-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.encuentra-step {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.encuentra-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.encuentra-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 168, 107, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4AF37;
}

.encuentra-step-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.encuentra-step-icon i {
    font-size: 24px;
    color: #D4AF37;
}

.encuentra-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.encuentra-step-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Final */
.encuentra-cta-final {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 168, 107, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 80px;
}

.encuentra-cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.encuentra-cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.encuentra-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.encuentra-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.encuentra-cta-btn-primary,
.encuentra-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 50px;
}

.encuentra-cta-btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
}

.encuentra-cta-btn-primary:hover {
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.encuentra-cta-btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.encuentra-cta-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.encuentra-cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-style: italic;
}
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.encuentra-reportes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.encuentra-reporte-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.encuentra-reporte-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

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

.encuentra-reporte-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.encuentra-status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.encuentra-status-lost {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.encuentra-status-found {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.encuentra-status-reunited {
    background: rgba(0, 168, 107, 0.15);
    color: #00A86B;
    border: 1px solid rgba(0, 168, 107, 0.3);
}

.encuentra-reporte-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.encuentra-reporte-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.encuentra-reporte-detail i {
    color: #D4AF37;
    font-size: 14px;
    width: 16px;
}

.encuentra-reporte-description {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
}

.encuentra-reporte-contact {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.encuentra-reporte-contact:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.encuentra-reporte-contact i {
    margin-right: 8px;
}

/* Cómo funciona */
.encuentra-como-section {
    margin-bottom: 80px;
}

.encuentra-como-header {
    text-align: center;
    margin-bottom: 48px;
}

.encuentra-como-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.encuentra-como-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.encuentra-step {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.encuentra-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.encuentra-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 168, 107, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #D4AF37;
}

.encuentra-step-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.encuentra-step-icon i {
    font-size: 26px;
    color: #D4AF37;
}

.encuentra-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.encuentra-step-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Seguridad y responsabilidad */
.encuentra-seguridad-section {
    margin-bottom: 80px;
}

.encuentra-seguridad-header {
    text-align: center;
    margin-bottom: 48px;
}

.encuentra-seguridad-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.encuentra-seguridad-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.encuentra-seguridad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.encuentra-seguridad-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.encuentra-seguridad-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 168, 107, 0.2);
}

.encuentra-seguridad-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 168, 107, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.encuentra-seguridad-icon i {
    font-size: 22px;
    color: #00A86B;
}

.encuentra-seguridad-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.encuentra-seguridad-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Formulario */
.encuentra-form-section {
    margin-bottom: 80px;
}

.encuentra-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.encuentra-form-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.encuentra-form-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.encuentra-form {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px;
}

.encuentra-form-group {
    margin-bottom: 28px;
}

.encuentra-form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.encuentra-form-required {
    color: #EF4444;
    margin-left: 4px;
}

.encuentra-form-input,
.encuentra-form-select,
.encuentra-form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
}

.encuentra-form-input:focus,
.encuentra-form-select:focus,
.encuentra-form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.encuentra-form-textarea {
    min-height: 120px;
    resize: vertical;
}

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

.encuentra-form-file-wrapper {
    position: relative;
    display: block;
}

.encuentra-form-file-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.encuentra-form-file-input:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.encuentra-form-help {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    line-height: 1.5;
}

.encuentra-form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.encuentra-form-checkbox {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.encuentra-form-checkbox-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    cursor: pointer;
}

.encuentra-form-checkbox-label a {
    color: #D4AF37;
    text-decoration: underline;
}

.encuentra-form-checkbox-label a:hover {
    color: #E5C158;
}

.encuentra-submit-btn {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 32px auto 0;
    padding: 16px 32px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 54px;
}

.encuentra-submit-btn:hover {
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.encuentra-submit-btn:active {
    transform: translateY(0);
}

/* CTA final */
.encuentra-cta-final {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 168, 107, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.encuentra-cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.encuentra-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.encuentra-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.encuentra-cta-button-primary,
.encuentra-cta-button-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.encuentra-cta-button-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #1a1a1a;
    border: none;
}

.encuentra-cta-button-primary:hover {
    background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.encuentra-cta-button-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.encuentra-cta-button-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.encuentra-cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
    line-height: 1.5;
}

/* ================================================
   COMUNIDAD - DATOS PARA CUIDAR MEJOR
   ================================================ */

.community-data-section {
    margin-top: 80px;
    margin-bottom: 60px;
}

.community-data-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.community-data-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.community-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.community-data-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.community-data-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.community-data-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 168, 107, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.community-data-icon i {
    font-size: 26px;
    color: #D4AF37;
}

.community-data-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.community-data-card-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.community-data-note {
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 32px;
    line-height: 1.5;
    font-style: italic;
}

/* Community Data Card - Interactiva */
.community-data-card {
    cursor: pointer;
    position: relative;
}

.community-data-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #D4AF37;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.community-data-card-link i {
    font-size: 0.9rem;
}

.community-data-card:hover .community-data-card-link {
    opacity: 1;
}

/* ================================================
   MODALES DE DATOS RESPONSABLES
   ================================================ */

/* Overlay del modal */
.dato-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dato-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.dato-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

/* Contenedor del modal */
.dato-modal-content {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 48px);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.98) 0%, rgba(30, 30, 30, 0.96) 100%);
    border-radius: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(212, 175, 55, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dato-modal.active .dato-modal-content {
    transform: scale(1);
}

/* Botón de cerrar */
.dato-modal-close {
    position: sticky;
    top: 20px;
    float: right;
    margin: 20px 20px 0 0;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.dato-modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    transform: rotate(90deg);
}

/* Cuerpo del modal */
.dato-modal-body {
    padding: 32px 40px 40px 40px;
    clear: both;
}

/* Badge */
.dato-modal-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 168, 107, 0.15);
    border: 1px solid rgba(0, 168, 107, 0.3);
    border-radius: 50px;
    color: #00A86B;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* Título */
.dato-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 28px;
    line-height: 1.3;
}

/* Dato destacado */
.dato-modal-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 168, 107, 0.08) 100%);
    border-left: 4px solid #D4AF37;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 28px;
    text-align: center;
}

.dato-highlight-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 12px;
}

.dato-highlight-text {
    display: block;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.4;
}

.dato-highlight-text-only {
    display: block;
    font-size: 1.4rem;
    color: #D4AF37;
    font-weight: 700;
    line-height: 1.4;
}

/* Texto principal */
.dato-modal-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Sección de ayuda */
.dato-modal-help {
    background: rgba(0, 168, 107, 0.06);
    border: 1px solid rgba(0, 168, 107, 0.15);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 24px;
}

.dato-modal-help-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00A86B;
    margin-bottom: 12px;
}

.dato-modal-help-text {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Fuente */
.dato-modal-source {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: 32px;
}

/* Botones de acción */
.dato-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dato-modal-btn-primary {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A870 100%);
    border: none;
    border-radius: 50px;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.dato-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #E0C491 0%, #D4AF37 100%);
}

.dato-modal-btn-primary i {
    font-size: 1.1rem;
}

.dato-modal-btn-secondary {
    flex: 1;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dato-modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    transform: translateY(-2px);
}

/* Responsive Tablet */
@media (max-width: 1179px) and (min-width: 768px) {
    .dato-modal-content {
        width: min(90vw, 680px);
        max-width: 680px;
        max-height: calc(100vh - 48px);
    }
    
    .dato-modal-body {
        padding: 28px 32px 36px 32px;
    }
    
    .dato-modal-title {
        font-size: 1.75rem;
    }
    
    .dato-highlight-number {
        font-size: 3rem;
    }
    
    .dato-modal-actions {
        flex-direction: column;
    }
    
    .dato-modal-btn-primary,
    .dato-modal-btn-secondary {
        width: 100%;
        min-width: auto;
    }
}

/* Responsive Mobile */
@media (max-width: 767px) {
    .dato-modal.active {
        padding: 14px;
    }
    
    .dato-modal-content {
        width: calc(100% - 28px);
        max-width: none;
        max-height: calc(100vh - 28px);
        border-radius: 16px;
    }
    
    .dato-modal-close {
        top: 12px;
        margin: 12px 12px 0 0;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .dato-modal-body {
        padding: 24px 20px 28px 20px;
    }
    
    .dato-modal-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    
    .dato-modal-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .dato-modal-highlight {
        padding: 20px 20px;
    }
    
    .dato-highlight-number {
        font-size: 2.5rem;
    }
    
    .dato-highlight-text {
        font-size: 1rem;
    }
    
    .dato-highlight-text-only {
        font-size: 1.2rem;
    }
    
    .dato-modal-text {
        font-size: 0.95rem;
    }
    
    .dato-modal-help {
        padding: 20px 20px;
    }
    
    .dato-modal-help-title {
        font-size: 1rem;
    }
    
    .dato-modal-help-text {
        font-size: 0.92rem;
    }
    
    .dato-modal-actions {
        flex-direction: column;
    }
    
    .dato-modal-btn-primary,
    .dato-modal-btn-secondary {
        width: 100%;
        min-width: auto;
    }
    
    .community-data-card-link {
        font-size: 0.85rem;
    }
}

/* ================================================
   CONTACTO - 4 CARDS LAYOUT
   ================================================ */

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* ================================================
   RESPONSIVE: PELUSHOW ENCUENTRA REDISEÑADO
   ================================================ */

/* Tablet Horizontal: 1024px - 1179px */
@media (max-width: 1179px) and (min-width: 1024px) {
    .encuentra-container {
        padding: 0 32px;
    }
    
    .encuentra-actions-grid {
        gap: 24px;
    }
    
    .encuentra-action-card {
        padding: 36px 28px;
    }
    
    .encuentra-reportes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .encuentra-reporte-image-container {
        height: 220px;
    }
    
    .encuentra-como-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .encuentra-step {
        padding: 28px 20px;
    }
    
    .encuentra-cta-final {
        padding: 50px 36px;
    }
}

/* Tablet Vertical: 768px - 1023px */
@media (max-width: 1023px) and (min-width: 768px) {
    .encuentra-section {
        padding: 80px 0;
    }
    
    .encuentra-container {
        padding: 0 28px;
    }
    
    .encuentra-header {
        margin-bottom: 50px;
    }
    
    .encuentra-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
    
    .encuentra-intro {
        font-size: 1.05rem;
    }
    
    .encuentra-highlight {
        padding: 18px 28px;
    }
    
    .encuentra-highlight i {
        font-size: 20px;
    }
    
    .encuentra-highlight span {
        font-size: 1rem;
    }
    
    /* Acciones: 2 columnas */
    .encuentra-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 64px;
    }
    
    .encuentra-action-card {
        padding: 36px 28px;
    }
    
    .encuentra-action-icon {
        width: 64px;
        height: 64px;
    }
    
    .encuentra-action-icon i {
        font-size: 28px;
    }
    
    .encuentra-action-title {
        font-size: 1.6rem;
    }
    
    .encuentra-action-text {
        font-size: 1rem;
    }
    
    .encuentra-action-checklist li {
        font-size: 0.95rem;
    }
    
    /* Reportes: 2 columnas */
    .encuentra-reportes-section {
        margin-bottom: 64px;
    }
    
    .encuentra-reportes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .encuentra-reporte-image-container {
        height: 220px;
    }
    
    .encuentra-reporte-content {
        padding: 22px 18px;
    }
    
    .encuentra-reporte-name {
        font-size: 1.35rem;
    }
    
    /* Cómo funciona: 2 columnas */
    .encuentra-como-section {
        margin-bottom: 64px;
    }
    
    .encuentra-como-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .encuentra-step {
        padding: 28px 22px;
    }
    
    /* CTA Final */
    .encuentra-cta-final {
        padding: 48px 32px;
    }
    
    .encuentra-cta-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .encuentra-cta-text {
        font-size: 1rem;
    }
    
    .encuentra-cta-buttons {
        gap: 14px;
    }
}

/* Mobile: menos de 768px */
@media (max-width: 767px) {
    .encuentra-section {
        padding: 60px 0;
    }
    
    .encuentra-container {
        padding: 0 20px;
    }
    
    .encuentra-header {
        margin-bottom: 44px;
    }
    
    .encuentra-badge {
        font-size: 0.7rem;
        padding: 8px 18px;
        margin-bottom: 20px;
    }
    
    .encuentra-title {
        font-size: clamp(1.7rem, 5vw, 2.2rem);
        margin-bottom: 16px;
    }
    
    .encuentra-intro {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .encuentra-highlight {
        padding: 16px 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .encuentra-highlight i {
        font-size: 20px;
    }
    
    .encuentra-highlight span {
        font-size: 0.95rem;
    }
    
    /* Acciones: 1 columna */
    .encuentra-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .encuentra-action-card {
        padding: 32px 24px;
    }
    
    .encuentra-action-icon {
        width: 60px;
        height: 60px;
    }
    
    .encuentra-action-icon i {
        font-size: 26px;
    }
    
    .encuentra-action-title {
        font-size: 1.4rem;
    }
    
    .encuentra-action-text {
        font-size: 0.95rem;
    }
    
    .encuentra-action-checklist li {
        font-size: 0.9rem;
    }
    
    .encuentra-btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Textos responsive en botones */
    
    
    
    
    /* Reportes: 1 columna */
    .encuentra-reportes-section {
        margin-bottom: 50px;
    }
    
    .encuentra-reportes-header {
        margin-bottom: 36px;
    }
    
    .encuentra-reportes-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 14px;
    }
    
    .encuentra-reportes-intro {
        font-size: 0.95rem;
    }
    
    .encuentra-reportes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .encuentra-reporte-image-container {
        height: 260px;
    }
    
    .encuentra-reporte-badge {
        top: 12px;
        right: 12px;
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    
    .encuentra-reporte-content {
        padding: 22px 18px;
    }
    
    .encuentra-reporte-name {
        font-size: 1.35rem;
    }
    
    .encuentra-reporte-type {
        font-size: 0.9rem;
    }
    
    .encuentra-meta-item {
        font-size: 0.85rem;
    }
    
    .encuentra-reporte-description {
        font-size: 0.88rem;
        min-height: auto;
    }
    
    .encuentra-reporte-btn-primary,
    .encuentra-reporte-btn-secondary {
        padding: 11px 18px;
        font-size: 0.85rem;
    }
    
    /* Cómo funciona: 1 columna */
    .encuentra-como-section {
        margin-bottom: 50px;
    }
    
    .encuentra-como-header {
        margin-bottom: 36px;
    }
    
    .encuentra-como-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }
    
    .encuentra-como-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .encuentra-step {
        padding: 28px 22px;
    }
    
    .encuentra-step-number {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .encuentra-step-icon {
        width: 52px;
        height: 52px;
    }
    
    .encuentra-step-icon i {
        font-size: 22px;
    }
    
    .encuentra-step-title {
        font-size: 1.1rem;
    }
    
    .encuentra-step-text {
        font-size: 0.88rem;
    }
    
    /* CTA Final */
    .encuentra-cta-final {
        padding: 40px 24px;
        margin-top: 50px;
    }
    
    .encuentra-cta-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        margin-bottom: 14px;
    }
    
    .encuentra-cta-text {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    
    .encuentra-cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .encuentra-cta-btn-primary,
    .encuentra-cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 13px 28px;
        font-size: 0.9rem;
    }
    
    /* Textos responsive en CTAs */
    
    
    
    
    .encuentra-cta-note {
        font-size: 0.82rem;
        margin-top: 20px;
    }
}

/* Mobile específico: 360px - 389px */
@media (max-width: 389px) {
    .encuentra-container {
        padding: 0 16px;
    }
    
    .encuentra-action-card {
        padding: 28px 20px;
    }
    
    .encuentra-reporte-image-container {
        height: 240px;
    }
    
    .encuentra-reporte-content {
        padding: 20px 16px;
    }
    
    .encuentra-step {
        padding: 24px 18px;
    }
    
    .encuentra-cta-final {
        padding: 36px 18px;
    }
    
    .encuentra-cta-btn-primary,
    .encuentra-cta-btn-secondary {
        max-width: 100%;
        font-size: 0.87rem;
    }
}

    }
    
    .encuentra-step-title {
        font-size: 1.15rem;
    }
    
    .encuentra-step-text {
        font-size: 0.9rem;
    }
    
    /* Seguridad: mantener 2 columnas */
    .encuentra-seguridad-section {
        margin-bottom: 64px;
    }
    
    .encuentra-seguridad-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .encuentra-seguridad-item {
        padding: 24px;
        gap: 16px;
    }
    
    .encuentra-seguridad-icon {
        width: 44px;
        height: 44px;
    }
    
    .encuentra-seguridad-icon i {
        font-size: 20px;
    }
    
    .encuentra-seguridad-content h4 {
        font-size: 1.05rem;
    }
    
    .encuentra-seguridad-content p {
        font-size: 0.88rem;
    }
    
    /* Formulario */
    .encuentra-form-section {
        margin-bottom: 64px;
    }
    
    .encuentra-form {
        padding: 36px;
    }
    
    .encuentra-form-row {
        gap: 16px;
    }
    
    /* CTA final */
    .encuentra-cta-final {
        padding: 48px 32px;
    }
    
    .encuentra-cta-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .encuentra-cta-text {
        font-size: 1rem;
    }
    
    .encuentra-cta-buttons {
        gap: 14px;
    }
    
    /* Comunidad Datos */
    .community-data-section {
        margin-top: 64px;
        margin-bottom: 50px;
    }
    
    .community-data-title {
        font-size: clamp(1.7rem, 3vw, 2.2rem);
    }
    
    .community-data-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .community-data-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .community-data-card {
        padding: 28px 20px;
    }
    
    .community-data-icon {
        width: 56px;
        height: 56px;
    }
    
    .community-data-icon i {
        font-size: 24px;
    }
    
    .community-data-card-title {
        font-size: 1.1rem;
    }
    
    .community-data-card-text {
        font-size: 0.9rem;
    }
    
    /* Contacto: 2 columnas se mantiene */
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile: menos de 768px */
@media (max-width: 767px) {
    .encuentra-section {
        padding: 60px 0;
    }
    
    .encuentra-container {
        padding: 0 20px;
    }
    
    .encuentra-header {
        margin-bottom: 40px;
    }
    
    .encuentra-badge {
        font-size: 0.7rem;
        padding: 8px 18px;
        margin-bottom: 20px;
    }
    
    .encuentra-title {
        font-size: clamp(1.7rem, 5vw, 2.2rem);
        margin-bottom: 16px;
    }
    
    .encuentra-intro {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .encuentra-highlight {
        padding: 18px 24px;
        border-left-width: 3px;
    }
    
    .encuentra-highlight p {
        font-size: 0.95rem;
    }
    
    /* Acciones: 1 columna */
    .encuentra-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .encuentra-action-card {
        padding: 28px 24px;
    }
    
    .encuentra-action-icon {
        width: 52px;
        height: 52px;
    }
    
    .encuentra-action-icon i {
        font-size: 22px;
    }
    
    .encuentra-action-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .encuentra-action-text {
        font-size: 0.92rem;
        text-align: center;
    }
    
    .encuentra-action-list {
        margin-bottom: 28px;
    }
    
    .encuentra-action-list li {
        font-size: 0.88rem;
    }
    
    .encuentra-action-cta {
        width: 100%;
        max-width: 280px;
        padding: 13px 28px;
        font-size: 0.9rem;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    
    /* Reportes: 1 columna */
    .encuentra-reportes-section {
        margin-bottom: 50px;
    }
    
    .encuentra-reportes-header {
        margin-bottom: 36px;
    }
    
    .encuentra-reportes-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 14px;
    }
    
    .encuentra-reportes-intro {
        font-size: 0.95rem;
    }
    
    .encuentra-reportes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .encuentra-reporte-card {
        padding: 24px 20px;
    }
    
    .encuentra-reporte-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .encuentra-reporte-name {
        font-size: 1.2rem;
    }
    
    .encuentra-status-badge {
        align-self: flex-start;
    }
    
    .encuentra-reporte-detail {
        font-size: 0.85rem;
    }
    
    .encuentra-reporte-description {
        font-size: 0.88rem;
    }
    
    .encuentra-reporte-contact {
        width: 100%;
        text-align: center;
        padding: 11px 18px;
        font-size: 0.82rem;
    }
    
    /* Cómo funciona: 1 columna */
    .encuentra-como-section {
        margin-bottom: 50px;
    }
    
    .encuentra-como-header {
        margin-bottom: 36px;
    }
    
    .encuentra-como-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 14px;
    }
    
    .encuentra-como-intro {
        font-size: 0.95rem;
    }
    
    .encuentra-como-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .encuentra-step {
        padding: 28px 24px;
    }
    
    .encuentra-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .encuentra-step-icon {
        width: 52px;
        height: 52px;
    }
    
    .encuentra-step-icon i {
        font-size: 20px;
    }
    
    .encuentra-step-title {
        font-size: 1.15rem;
    }
    
    .encuentra-step-text {
        font-size: 0.88rem;
    }
    
    /* Seguridad: 1 columna */
    .encuentra-seguridad-section {
        margin-bottom: 50px;
    }
    
    .encuentra-seguridad-header {
        margin-bottom: 36px;
    }
    
    .encuentra-seguridad-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 14px;
    }
    
    .encuentra-seguridad-intro {
        font-size: 0.95rem;
    }
    
    .encuentra-seguridad-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .encuentra-seguridad-item {
        padding: 24px 20px;
        gap: 16px;
    }
    
    .encuentra-seguridad-icon {
        width: 42px;
        height: 42px;
    }
    
    .encuentra-seguridad-icon i {
        font-size: 18px;
    }
    
    .encuentra-seguridad-content h4 {
        font-size: 1.05rem;
    }
    
    .encuentra-seguridad-content p {
        font-size: 0.86rem;
    }
    
    /* Formulario */
    .encuentra-form-section {
        margin-bottom: 50px;
    }
    
    .encuentra-form-header {
        margin-bottom: 36px;
    }
    
    .encuentra-form-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 14px;
    }
    
    .encuentra-form-intro {
        font-size: 0.95rem;
    }
    
    .encuentra-form {
        padding: 32px 24px;
    }
    
    .encuentra-form-group {
        margin-bottom: 24px;
    }
    
    .encuentra-form-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .encuentra-form-input,
    .encuentra-form-select,
    .encuentra-form-textarea {
        padding: 13px 16px;
        font-size: 16px; /* Prevenir zoom en iOS */
    }
    
    .encuentra-form-textarea {
        min-height: 100px;
    }
    
    .encuentra-form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .encuentra-form-file-input {
        padding: 13px 16px;
        font-size: 16px;
    }
    
    .encuentra-form-help {
        font-size: 0.82rem;
    }
    
    .encuentra-form-checkbox-group {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .encuentra-form-checkbox {
        width: 18px;
        height: 18px;
    }
    
    .encuentra-form-checkbox-label {
        font-size: 0.86rem;
    }
    
    .encuentra-submit-btn {
        width: 100%;
        max-width: 100%;
        padding: 15px 28px;
        font-size: 1rem;
        min-height: 52px;
    }
    
    /* Botones de Encuentra con texto simple */
    
    /* CTA final */
    .encuentra-cta-final {
        padding: 40px 24px;
    }
    
    .encuentra-cta-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        margin-bottom: 14px;
    }
    
    .encuentra-cta-text {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    
    .encuentra-cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .encuentra-cta-button-primary,
    .encuentra-cta-button-secondary {
        width: 100%;
        max-width: 300px;
        padding: 13px 28px;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .encuentra-cta-note {
        font-size: 0.82rem;
        margin-top: 20px;
    }
    
    /* Comunidad Datos */
    .community-data-section {
        margin-top: 50px;
        margin-bottom: 40px;
    }
    
    .community-data-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 16px;
    }
    
    .community-data-intro {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .community-data-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .community-data-card {
        padding: 28px 24px;
    }
    
    .community-data-icon {
        width: 52px;
        height: 52px;
    }
    
    .community-data-icon i {
        font-size: 22px;
    }
    
    .community-data-card-title {
        font-size: 1.1rem;
    }
    
    .community-data-card-text {
        font-size: 0.88rem;
    }
    
    .community-data-note {
        font-size: 0.84rem;
        margin-top: 28px;
        padding: 0 10px;
    }
    
    /* Contacto: 1 columna */
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 32px 24px;
    }
    
    .contact-card-icon {
        width: 52px;
        height: 52px;
    }
    
    .contact-card-icon i {
        font-size: 22px;
    }
    
    .contact-card-title {
        font-size: 1.3rem;
    }
    
    .contact-card-text {
        font-size: 0.92rem;
    }
    
    .contact-card-btn {
        width: 100%;
        max-width: 280px;
        padding: 13px 24px;
        font-size: 0.9rem;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    /* Botones de contacto con texto simple */
}

/* Mobile específico: 430px - 767px */
@media (max-width: 767px) and (min-width: 430px) {
    .encuentra-title {
        font-size: 2rem;
    }
    
    .encuentra-action-title {
        font-size: 1.4rem;
    }
    
    .encuentra-reportes-title,
    .encuentra-como-title,
    .encuentra-seguridad-title,
    .encuentra-form-title {
        font-size: 1.8rem;
    }
    
    .community-data-title {
        font-size: 1.8rem;
    }
    
    .encuentra-cta-title {
        font-size: 1.6rem;
    }
}

/* Mobile específico: 390px - 429px */
@media (max-width: 429px) and (min-width: 390px) {
    .encuentra-container {
        padding: 0 18px;
    }
    
    .encuentra-action-card,
    .encuentra-reporte-card,
    .encuentra-step,
    .encuentra-seguridad-item {
        padding: 24px 20px;
    }
    
    .encuentra-form {
        padding: 28px 20px;
    }
    
    .encuentra-cta-final {
        padding: 36px 20px;
    }
}

/* Mobile específico: 360px - 389px */
@media (max-width: 389px) {
    .encuentra-container {
        padding: 0 16px;
    }
    
    .encuentra-badge {
        font-size: 0.65rem;
        padding: 7px 16px;
    }
    
    .encuentra-title {
        font-size: 1.7rem;
    }
    
    .encuentra-intro {
        font-size: 0.9rem;
    }
    
    .encuentra-highlight {
        padding: 16px 20px;
    }
    
    .encuentra-highlight p {
        font-size: 0.9rem;
    }
    
    .encuentra-action-card {
        padding: 24px 18px;
    }
    
    .encuentra-action-title {
        font-size: 1.2rem;
    }
    
    .encuentra-action-text {
        font-size: 0.88rem;
    }
    
    .encuentra-action-list li {
        font-size: 0.85rem;
    }
    
    .encuentra-action-cta {
        max-width: 100%;
        font-size: 0.87rem;
    }
    
    .encuentra-reportes-title,
    .encuentra-como-title,
    .encuentra-seguridad-title,
    .encuentra-form-title {
        font-size: 1.6rem;
    }
    
    .encuentra-reportes-intro,
    .encuentra-como-intro,
    .encuentra-seguridad-intro,
    .encuentra-form-intro {
        font-size: 0.9rem;
    }
    
    .encuentra-reporte-card {
        padding: 22px 18px;
    }
    
    .encuentra-step {
        padding: 26px 20px;
    }
    
    .encuentra-seguridad-item {
        padding: 22px 18px;
    }
    
    .encuentra-form {
        padding: 26px 18px;
    }
    
    .encuentra-cta-final {
        padding: 32px 18px;
    }
    
    .encuentra-cta-title {
        font-size: 1.4rem;
    }
    
    .encuentra-cta-text {
        font-size: 0.9rem;
    }
    
    .encuentra-cta-button-primary,
    .encuentra-cta-button-secondary {
        max-width: 100%;
        font-size: 0.87rem;
    }
    
    .community-data-title {
        font-size: 1.6rem;
    }
    
    .community-data-intro {
        font-size: 0.9rem;
    }
    
    .community-data-card {
        padding: 26px 20px;
    }
    
    .community-data-card-title {
        font-size: 1.05rem;
    }
    
    .community-data-card-text {
        font-size: 0.86rem;
    }
}

/* ================================================
   MODALES DE PELUSHOW ENCUENTRA
   ================================================ */

/* Modal base - oculto por defecto */
.encuentra-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Modal visible con animación */
.encuentra-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* Overlay de fondo oscuro semitransparente */
.encuentra-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

/* Contenedor del modal */
.encuentra-modal-content {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: calc(100vh - 48px);
    background: linear-gradient(
        145deg,
        rgba(20, 20, 20, 0.98) 0%,
        rgba(30, 30, 30, 0.96) 100%
    );
    border-radius: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 182, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Animación de entrada del modal */
.encuentra-modal.active .encuentra-modal-content {
    transform: scale(1);
}

/* Botón de cerrar */
.encuentra-modal-close {
    position: sticky;
    top: 20px;
    float: right;
    margin: 20px 20px 0 0;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.encuentra-modal-close:hover {
    background: rgba(212, 182, 128, 0.2);
    border-color: rgba(212, 182, 128, 0.4);
    color: #d4b680;
    transform: rotate(90deg);
}

/* Contenedor de imagen */
.encuentra-modal-image-container {
    position: relative;
    width: 100%;
    height: 360px;
    max-height: 42vh;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95) 0%, rgba(25, 25, 25, 0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.encuentra-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

/* Badge de estado en la imagen */
.encuentra-modal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.encuentra-modal-badge i {
    font-size: 1rem;
}

/* Badge estado: Perdida (rojo) */
.encuentra-modal-badge-lost {
    background: rgba(220, 53, 69, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Badge estado: Encontrada (azul) */
.encuentra-modal-badge-found {
    background: rgba(13, 110, 253, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Badge estado: Reunida (verde) */
.encuentra-modal-badge-reunited {
    background: rgba(25, 135, 84, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Cuerpo del modal */
.encuentra-modal-body {
    padding: 32px;
}

/* Título principal */
.encuentra-modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4b680;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

/* Subtítulo (tipo de mascota) */
.encuentra-modal-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 24px 0;
    font-weight: 400;
}

/* Metadatos (ubicación, fecha) */
.encuentra-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.encuentra-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.encuentra-modal-meta-item i {
    font-size: 1.1rem;
    color: #d4b680;
}

/* Sección de contenido */
.encuentra-modal-section {
    margin-bottom: 28px;
}

.encuentra-modal-section:last-of-type {
    margin-bottom: 32px;
}

/* Título de sección */
.encuentra-modal-section-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px 0;
}

/* Texto de contenido */
.encuentra-modal-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Lista de características */
.encuentra-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.encuentra-modal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.encuentra-modal-list li i {
    font-size: 1rem;
    color: #7fa855;
}

/* Contenedor de acciones */
.encuentra-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

/* Botón primario del modal */
.encuentra-modal-btn-primary {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #d4b680 0%, #c9a870 100%);
    border: none;
    border-radius: 50px;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 182, 128, 0.3);
}

.encuentra-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 182, 128, 0.4);
    background: linear-gradient(135deg, #e0c491 0%, #d4b680 100%);
}

.encuentra-modal-btn-primary i {
    font-size: 1.2rem;
}

/* Botón secundario del modal */
.encuentra-modal-btn-secondary {
    flex: 1;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.encuentra-modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 182, 128, 0.3);
    color: #d4b680;
    transform: translateY(-2px);
}

/* ================================================
   HOVER EFFECTS PARA TARJETAS DE REPORTES
   ================================================ */

.encuentra-reporte-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.encuentra-reporte-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 182, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.encuentra-reporte-card:hover .encuentra-reporte-btn-primary {
    background: linear-gradient(135deg, #e0c491 0%, #d4b680 100%);
    box-shadow: 0 6px 20px rgba(212, 182, 128, 0.4);
}

/* ================================================
   RESPONSIVE MODALES - TABLET
   ================================================ */

@media (max-width: 1179px) and (min-width: 768px) {
    .encuentra-modal-content {
        width: min(90vw, 820px);
        max-width: 820px;
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .encuentra-modal-image-container {
        height: 300px;
        max-height: 38vh;
    }
    
    .encuentra-modal-body {
        padding: 28px 26px;
    }
    
    .encuentra-modal-title {
        font-size: 2rem;
    }
    
    .encuentra-modal-subtitle {
        font-size: 1rem;
    }
    
    .encuentra-modal-actions {
        flex-direction: column;
    }
    
    .encuentra-modal-btn-primary,
    .encuentra-modal-btn-secondary {
        width: 100%;
        min-width: auto;
    }
}

/* ================================================
   RESPONSIVE MODALES - MOBILE
   ================================================ */

@media (max-width: 767px) {
    .encuentra-modal.active {
        padding: 14px;
    }
    
    .encuentra-modal-content {
        width: calc(100% - 28px);
        max-width: none;
        max-height: calc(100vh - 28px);
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 16px;
    }
    
    .encuentra-modal-close {
        top: 12px;
        margin: 12px 12px 0 0;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .encuentra-modal-image-container {
        height: 240px;
        max-height: 32vh;
    }
    
    .encuentra-modal-badge {
        top: 12px;
        left: 12px;
        padding: 8px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .encuentra-modal-badge i {
        font-size: 0.9rem;
    }
    
    .encuentra-modal-body {
        padding: 24px 20px;
    }
    
    .encuentra-modal-title {
        font-size: 1.75rem;
    }
    
    .encuentra-modal-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .encuentra-modal-meta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .encuentra-modal-meta-item {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .encuentra-modal-section {
        margin-bottom: 24px;
    }
    
    .encuentra-modal-section-title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .encuentra-modal-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .encuentra-modal-list li {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .encuentra-modal-actions {
        flex-direction: column;
        gap: 10px;
        padding-top: 4px;
    }
    
    .encuentra-modal-btn-primary,
    .encuentra-modal-btn-secondary {
        width: 100%;
        min-width: auto;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .encuentra-modal-btn-primary i {
        font-size: 1.1rem;
    }
    
    /* Ajuste para evitar que el modal se corte en pantallas pequeñas */
    .encuentra-modal-content {
        margin: 10px 0;
    }
}

/* Prevenir scroll del body cuando modal está abierto */
body.modal-open {
    overflow: hidden;
}

/* ================================================
   MODAL DE FORMULARIO - REPORTAR MASCOTA
   ================================================ */

/* Modal de formulario - ancho mayor */
.encuentra-modal-form .encuentra-modal-content {
    max-width: 860px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    overflow-x: hidden;
}

.encuentra-form-modal-content {
    overflow-y: auto;
}

/* Cuerpo del modal de formulario */
.encuentra-form-modal-body {
    padding: 0;
}

/* Cabecera del formulario */
.encuentra-form-modal-header {
    padding: 32px 32px 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(
        180deg,
        rgba(30, 30, 30, 0.5) 0%,
        rgba(20, 20, 20, 0) 100%
    );
}

.encuentra-form-badge-container {
    margin-bottom: 16px;
}

.encuentra-form-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(127, 168, 85, 0.15);
    border: 1px solid rgba(127, 168, 85, 0.3);
    border-radius: 50px;
    color: #7fa855;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.encuentra-form-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d4b680;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.encuentra-form-modal-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
}

.encuentra-form-security-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(212, 182, 128, 0.08);
    border-left: 3px solid #d4b680;
    border-radius: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.encuentra-form-security-note i {
    color: #d4b680;
    font-size: 1rem;
}

/* Formulario */
.encuentra-form-modal-form {
    padding: 32px;
}

/* Form groups */
.form-group {
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: 1 / -1;
}

/* Form rows (2 columnas) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

/* Labels */
.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

/* Inputs y selects */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 182, 128, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 182, 128, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form hints */
.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Selector de tipo de reporte (tabs premium) */
.encuentra-tipo-reporte-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.tipo-reporte-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tipo-reporte-tab i {
    font-size: 1.2rem;
}

.tipo-reporte-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 182, 128, 0.3);
    color: #d4b680;
}

.tipo-reporte-tab.active {
    background: rgba(212, 182, 128, 0.15);
    border-color: #d4b680;
    color: #d4b680;
    box-shadow: 0 4px 12px rgba(212, 182, 128, 0.2);
}

/* Opciones de tamaño */
.encuentra-tamano-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.tamano-option {
    position: relative;
    cursor: pointer;
}

.tamano-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tamano-option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tamano-option-label i {
    font-size: 1.3rem;
}

.tamano-option:hover .tamano-option-label {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 182, 128, 0.3);
    color: #d4b680;
}

.tamano-option input[type="radio"]:checked + .tamano-option-label {
    background: rgba(127, 168, 85, 0.15);
    border-color: #7fa855;
    color: #7fa855;
    box-shadow: 0 4px 12px rgba(127, 168, 85, 0.2);
}

/* File upload personalizado */
.form-file-upload {
    margin-top: 8px;
}

.form-file-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-file-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-file-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 182, 128, 0.4);
}

.form-file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(212, 182, 128, 0.15);
    border-radius: 50%;
    color: #d4b680;
    font-size: 1.5rem;
}

.form-file-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-file-main {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.form-file-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-file-name {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(127, 168, 85, 0.15);
    border-left: 3px solid #7fa855;
    border-radius: 6px;
    color: #7fa855;
    font-size: 0.9rem;
    display: none;
}

.form-file-name.active {
    display: block;
}

/* Caja de seguridad */
.encuentra-form-security-box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid #d4b680;
    border-radius: 8px;
    margin-bottom: 24px;
}

.security-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.security-box-header i {
    color: #d4b680;
    font-size: 1.2rem;
}

.security-box-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.encuentra-form-security-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
}

.security-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-box-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.security-box-list li i {
    color: #7fa855;
    font-size: 0.9rem;
}

/* Checkboxes personalizados */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #d4b680;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/* Mensaje de error */
.form-error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(220, 53, 69, 0.15);
    border-left: 3px solid #dc3545;
    border-radius: 6px;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.form-error-message i {
    font-size: 1.1rem;
}

/* Botones de acción del formulario */
.encuentra-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.encuentra-form-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.encuentra-form-btn-primary {
    background: linear-gradient(135deg, #d4b680 0%, #c9a870 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 182, 128, 0.3);
}

.encuentra-form-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 182, 128, 0.4);
    background: linear-gradient(135deg, #e0c491 0%, #d4b680 100%);
}

.encuentra-form-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.encuentra-form-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 182, 128, 0.3);
    color: #d4b680;
    transform: translateY(-2px);
}

/* Estado de éxito */
.encuentra-form-success {
    padding: 48px 32px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 168, 85, 0.15);
    border-radius: 50%;
}

.success-icon i {
    font-size: 3rem;
    color: #7fa855;
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7fa855;
    margin: 0 0 16px 0;
}

.success-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ================================================
   RESPONSIVE - MODAL DE FORMULARIO TABLET
   ================================================ */

@media (max-width: 1179px) and (min-width: 768px) {
    .encuentra-modal-form .encuentra-modal-content {
        width: min(90vw, 820px);
        max-width: 820px;
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .encuentra-form-modal-header {
        padding: 28px 28px 20px 28px;
    }
    
    .encuentra-form-modal-title {
        font-size: 1.8rem;
    }
    
    .encuentra-form-modal-form {
        padding: 28px;
    }
    
    .form-row {
        gap: 16px;
    }
    
    .encuentra-form-actions {
        flex-direction: column;
    }
    
    .encuentra-form-btn {
        width: 100%;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .encuentra-form-btn {
        width: 100%;
    }
}

/* ================================================
   RESPONSIVE - MODAL DE FORMULARIO MOBILE
   ================================================ */

@media (max-width: 767px) {
    .encuentra-modal-form .encuentra-modal-content {
        width: calc(100% - 28px);
        max-width: none;
        max-height: calc(100vh - 28px);
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 16px;
    }
    
    .encuentra-form-modal-header {
        padding: 24px 20px 20px 20px;
    }
    
    .encuentra-form-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .encuentra-form-modal-title {
        font-size: 1.5rem;
    }
    
    .encuentra-form-modal-subtitle {
        font-size: 0.9rem;
    }
    
    .encuentra-form-security-note {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    
    .encuentra-form-modal-form {
        padding: 24px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 0.9rem;
        padding: 12px 14px;
    }
    
    .encuentra-tipo-reporte-tabs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .tipo-reporte-tab {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .encuentra-tamano-options {
        grid-template-columns: 1fr;
    }
    
    .tamano-option-label {
        flex-direction: row;
        justify-content: center;
        padding: 14px 16px;
    }
    
    .form-file-label {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    
    .encuentra-form-security-box {
        padding: 16px;
    }
    
    .security-box-header h4 {
        font-size: 0.95rem;
    }
    
    .encuentra-form-security-box p,
    .security-box-list li {
        font-size: 0.85rem;
    }
    
    .checkbox-text {
        font-size: 0.85rem;
    }
    
    .encuentra-form-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
    }
    
    .encuentra-form-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .encuentra-form-success {
        padding: 32px 20px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .success-icon i {
        font-size: 2.5rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-text {
        font-size: 0.9rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-actions .encuentra-form-btn {
        width: 100%;
    }
}
