:root {
  /* Colores primarios */
  --deep-black: #0B0E14;
  --space-blue: #0F172A;
  --midnight: #131D30;

  /* Colores secundarios */
  --electric-purple: #7C3AED;
  --neon-blue: #38BDF8;

  /* Acentos */
  --energy-green: #22C55E;
  --soft-white: #F8FAFC;
  --light-gray: #CBD5E1;

  /* Otros */
  --card-bg: rgba(25, 35, 60, 0.7);
  --glass-bg: rgba(30, 41, 70, 0.85);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.35);
  --border-radius: 16px;
  --border-radius-lg: 24px;
}


.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 1.2rem 3rem;
  /* Aumentado espaciado lateral y vertical */
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

/* Efecto cuando el header está scrolled */
.floating-header.scrolled {
  padding: 0.7rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.98) 0%, rgba(15, 23, 42, 0.95) 100%);
}

/* Efecto cuando el header se oculta al scrollear hacia abajo */
.floating-header.hidden {
  transform: translateY(-100%);
}


.pilar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.pilar-icon-container {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-blue);
  filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.3));
}

.pilar-item:nth-child(1) .pilar-icon-container {
  color: var(--neon-blue);
}

.pilar-item:nth-child(2) .pilar-icon-container {
  color: var(--electric-purple);
}

.pilar-item:nth-child(3) .pilar-icon-container {
  color: #F59E0B;
}

/* Orange/Gold for business */
.pilar-item:nth-child(4) .pilar-icon-container {
  color: var(--energy-green);
}

.pilar-item:nth-child(5) .pilar-icon-container {
  color: #94A3B8;
}

/* Slate for systems */
.pilar-item:nth-child(6) .pilar-icon-container {
  color: #EF4444;
}

/* Red for heart */

.pilar-item:hover {
  transform: translateY(-5px);
}

.pilar-item:hover .pilar-icon-container {
  filter: drop-shadow(0 0 10px currentColor);
}

.pilar-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: var(--light-gray);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  /* Ligeramente más grande */
  font-weight: 800;
  /* Más peso visual */
  text-decoration: none;
  color: var(--soft-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  /* Aumentado gap para mayor aire */
}

.main-nav a {
  text-decoration: none;
  color: var(--soft-white);
  font-weight: 500;
  font-size: 1.1rem;
  /* Aumentado de 1rem a 1.1rem */
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a:hover {
  color: var(--neon-blue);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-purple), var(--neon-blue));
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Estilos para el icono de búsqueda */
.search-icon {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--soft-white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.search-icon:hover {
  background: rgba(124, 58, 237, 0.15);
  transform: scale(1.1);
}

.cta-button {
  background: linear-gradient(135deg, var(--energy-green), #16a34a);
  color: white;
  padding: 0.8rem 2.2rem;
  /* Más espaciado interno */
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s, transform 0.2s;
  white-space: nowrap;
  font-size: 1.05rem;
  /* Ligeramente más grande */
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Botón de menú para mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--soft-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--soft-white);
  position: absolute;
  transition: all 0.3s;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Estilos para el modal de búsqueda */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.3s;
}

.search-modal-content {
  background: linear-gradient(135deg, var(--midnight), var(--space-blue));
  width: 95%;
  max-width: 800px;
  height: 90vh;
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 50px rgba(124, 58, 237, 0.3);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  flex-direction: column;
}

.search-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--soft-white);
  transition: all 0.2s;
}

.search-close:hover {
  color: var(--electric-purple);
  transform: scale(1.2);
}

#search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 30px;
  font-size: 1.1rem;
  transition: all 0.3s;
  background: rgba(19, 29, 48, 0.7);
  color: var(--soft-white);
  font-family: 'Inter', sans-serif;
}

#search-input::placeholder {
  color: var(--light-gray);
}

#search-input:focus {
  outline: none;
  border-color: var(--electric-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
  background: rgba(19, 29, 48, 0.9);
}

#search-results {
  margin-top: 2rem;
  flex: 1;
  overflow-y: auto;
  padding-right: 1rem;
}

#search-results::-webkit-scrollbar {
  width: 8px;
}

#search-results::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

#search-results::-webkit-scrollbar-thumb {
  background: var(--electric-purple);
  border-radius: 10px;
}

.search-results-item {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.search-results-item:hover {
  background: rgba(124, 58, 237, 0.15);
  transform: translateX(5px);
}

.search-results-item a {
  text-decoration: none;
  color: var(--soft-white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-results-item a:hover {
  color: var(--neon-blue);
}

.search-results-item h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neon-blue);
  margin-bottom: 0.3rem;
}

.search-results-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.5;
}

/* Estilo para cuando no hay resultados */
.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--light-gray);
  font-style: italic;
  font-size: 1.1rem;
}

/* Responsive design */

.mobile-only {
  display: none;
}

@media (max-width: 992px) {

  /* Mobile Menu Close Button */
  .mobile-only {
    display: block;
    width: 100%;
    text-align: right;
    margin-bottom: 0.5rem;
  }

  .close-menu-btn {
    background: none;
    border: none;
    color: var(--soft-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s;
  }

  .close-menu-btn:hover {
    color: var(--electric-purple);
  }

  .main-nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: linear-gradient(180deg, var(--deep-black), var(--space-blue));
    width: 300px;
    height: calc(100vh - 70px);
    padding: 2rem 1.5rem;
    box-shadow: -5px 0 20px rgba(124, 58, 237, 0.3);
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid rgba(124, 58, 237, 0.3);
  }

  .main-nav ul.active {
    right: 0;
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--soft-white);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover::before {
    content: '→ ';
    margin-right: 0.5rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .floating-header {
    padding: 0.8rem 1.5rem;
  }

  .header-actions {
    gap: 0.8rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .header-actions {
    gap: 0.5rem;
  }

  .search-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 0.55rem 1.3rem;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .search-modal-content {
    width: 95%;
    height: 85vh;
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .floating-header {
    padding: 0.7rem 1.2rem;
  }

  .header-actions {
    gap: 0.8rem;
  }

  .main-nav ul {
    width: 260px;
  }

  .search-modal-content {
    width: 95%;
    height: 80vh;
    padding: 1.5rem;
  }

  #search-input {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
}

/* Ajuste de espacio superior para contenido */
body {
  padding-top: 80px;
}

/* Para pantallas grandes */
@media (min-width: 1200px) {
  .main-nav ul {
    gap: 2rem;
  }

  .logo {
    font-size: 1.7rem;
  }
}

/***************/
/* Header End */
/*************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--space-blue) 100%);
  color: var(--soft-white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-attachment: fixed;
}

/* Efecto de partículas de fondo */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.07) 0%, transparent 35%);
  z-index: -2;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.star {
  position: absolute;
  background-color: var(--soft-white);
  border-radius: 50%;
  animation: twinkle var(--duration, 4s) infinite var(--delay, 0s);
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Tipografía */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  /* Estandarizado con la landing */
  font-weight: 800;
  background: linear-gradient(90deg, var(--soft-white) 0%, var(--neon-blue) 50%, var(--electric-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 2.5rem;
  /* Ajustado para mayor consistencia */
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  /* Sincronizado con landing */
  text-align: center;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--energy-green), var(--neon-blue));
  border-radius: 2px;
  opacity: 0.7;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--soft-white);
}

p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--light-gray);
  max-width: 800px;
  /* Estandarizado */
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* Contenedores */
.container {
  width: 90%;
  max-width: 1300px;
  /* Aumentado para un diseño más expansivo y premium */
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  /* Aumentado de 80px a 100px para mayor elegancia */
  position: relative;
}

/* Hero Section con fondo de lobo */
.hero-section {
  min-height: 100vh;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../images/bg_hero2.png');
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  max-width: 760px;
  z-index: 10;
  position: relative;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--light-gray);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* Botones */
.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(90deg, var(--energy-green), #10b981);
  color: var(--deep-black);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(34, 197, 94, 0.7);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--soft-white);
  color: var(--soft-white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Section 2 */
.section-2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-2 p {
  font-size: 1.35rem;
  margin-top: 20px;
  font-weight: 300;
}

/* Section 3 - Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: var(--glass-bg);
  border-radius: var(--border-radius-lg);
  padding: 35px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  z-index: -1;
  transition: var(--transition);
}

.card-icon-container {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-blue);
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
}

.card-1 .card-icon-container {
  color: var(--neon-blue);
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
}

.card-2 .card-icon-container {
  color: var(--electric-purple);
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.4));
}

.card-3 .card-icon-container {
  color: var(--energy-green);
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}

.animated-svg {
  width: 100%;
  height: 100%;
}

.animated-svg path,
.animated-svg circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s ease-in-out;
}

.card.active .animated-svg path,
.card.active .animated-svg circle {
  stroke-dashoffset: 0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  border-color: rgba(56, 189, 248, 0.3);
}

.card:hover::before {
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.card-1 .card-icon {
  color: var(--energy-green);
}

.card-2 .card-icon {
  color: var(--neon-blue);
}

.card-3 .card-icon {
  color: var(--electric-purple);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Section 4 - Cómo funciona */
.center-title {
  text-align: center;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Linea de fondo (track) */
.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  width: 70%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  /* Inactive track */
  border-radius: 2px;
  z-index: 1;
}

/* Linea de progreso (animada) */
.steps-container::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  width: 0%;
  /* Starts empty */
  height: 4px;
  background: linear-gradient(90deg, var(--energy-green), var(--neon-blue), var(--electric-purple));
  border-radius: 2px;
  z-index: 2;
  transition: width 3s linear;
}

/* Estado activo de la linea */
.steps-container.active::after {
  width: 70%;
}

.step {
  text-align: center;
  position: relative;
  z-index: 3;
  /* Above lines */
  width: 33%;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.1);
  /* Inactive border */
  color: var(--soft-white);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.step.active .step-number {
  border-color: var(--electric-purple);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
  transform: scale(1.1);
  color: #fff;
}

.step-number::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(45deg, var(--energy-green), var(--neon-blue), var(--electric-purple));
  border-radius: 50%;
  animation: rotate 8s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.step h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

/* Section 5 - Pilares (NUEVO DISEÑO) */
.explora-pilar {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--space-blue) 100%);
  position: relative;
  overflow: hidden;
}

.pilars-container {
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
  position: relative;

  /* DISEÑO DE EMBUDO PARA PILARES */
  .pilars-embudo {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .pilars-top {
    display: flex;
    justify-content: center;
    /* Center items explicitly */
    gap: 20px;
    /* Explicit 20px gap */
    width: 100%;
    max-width: 1270px;
    /* Fits 6x195 + 5x20 */
    margin-bottom: 40px;
    z-index: 10;
  }

  .pilar-item {
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    align-items: center;
    text-align: left;
    /* Left align text */
    width: 250px;
    /* Wider */
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    padding: 15px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    gap: 15px;
    /* Space between icon and text */
  }

  .pilar-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-glow);
    border-color: var(--electric-purple);
  }

  .pilar-icon {
    font-size: 2.2rem;
    /* Slightly smaller for row layout */
    margin-bottom: 0;
    display: block;
    transition: transform 0.3s;
    min-width: 40px;
    /* Prevent shrink */
  }

  .pilar-item:hover .pilar-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .pilar-item h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--soft-white);
    font-weight: 600;
    margin: 0;
    /* Remove defaults */
  }

  .pilar-item:hover h3 {
    color: var(--neon-blue);
  }

  .pilar-line-pulse {
    filter: drop-shadow(0 0 8px var(--electric-purple));
    opacity: 1;
    stroke-linecap: round;
  }


  .pilars-lines {
    position: absolute;
    top: 120px;
    width: 100%;
    max-width: 1270px;
    /* Match pilars-top width */
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
    /* Ensure centering */
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .central-wolf-container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    width: 100%;
    /* Ensure it doesn't collapse horizontally if needed, though flex handles it */
    pointer-events: none;
    /* Let clicks pass through if needed */
  }

  .central-wolf-img {
    width: 170px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.3));
    animation: float 6s ease-in-out infinite;
  }

  /* Estilos para diferentes dispositivos */
  @media (max-width: 992px) {
    .pilars-lines {
      display: none;
    }

    .pilars-embudo {
      height: 500px;
    }

    .pilars-top {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      max-width: 500px;
      gap: 15px;
    }

    .central-wolf-container {
      display: none;
    }

    .pilar-item {
      width: auto;
      /* Let grid handle width */
    }

    .pilar-item h4 {
      font-size: 0.9rem;
    }

    .pilar-icon {
      font-size: 1.8rem;
    }

    /* Hide CTA button on mobile header */
    .cta-button {
      display: none !important;
    }

    /* Add padding to pillar container on mobile */
    .pilars-container {
      padding: 0 15px;
    }
  }

  @media (max-width: 768px) {
    .pilars-embudo {
      height: 450px;
    }

    .pilars-top {
      max-width: 600px;
    }

    .pilar-item {
      width: 150px;
      padding: 20px 12px;
    }

    .pilar-icon {
      font-size: 2.5rem;
    }

    .pilar-item h3 {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 576px) {
    .pilars-embudo {
      height: 250px;
    }

    .pilars-top {
      max-width: 400px;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }

    .pilar-item {
      width: 100%;
      max-width: 250px;
    }
  }
}

.pilars-title {
  margin-bottom: 20px;
  position: relative;
}

.pilars-title h2 {
  font-size: 2.8rem;
  display: inline-block;
  margin-bottom: 0;
}

.pilars-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--energy-green), var(--neon-blue), var(--electric-purple));
  border-radius: 2px;
  opacity: 0.7;
}


/* Section 6 - Rutas */
.routes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.route-card {
  background: var(--glass-bg);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  z-index: -1;
  transition: var(--transition);
}

.route-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(124, 58, 237, 0.3);
}

.route-card:hover::before {
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
}

.route-card h3 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-icon {
  font-size: 2.2rem;
}

/* Section 7 - Gana con INFOVERZO */
.earn-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.earn-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 35px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.earn-card:hover {
  transform: translateY(-8px);
  background: rgba(40, 50, 85, 0.9);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.15);
}

.earn-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.earn-1 .earn-icon {
  color: var(--energy-green);
}

.earn-2 .earn-icon {
  color: var(--neon-blue);
}

.earn-3 .earn-icon {
  color: var(--electric-purple);
}

/* Section 8 - Comunidad */
.community-section {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--space-blue) 100%);
  position: relative;
  overflow: hidden;
}

.community-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.community-photo {
  border-radius: var(--border-radius);
  height: 200px;
  background: linear-gradient(45deg, var(--electric-purple), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.community-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(124, 58, 237, 0.4);
}

/* Section 9 - CTA Final */
.final-cta {
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--space-blue) 0%, var(--deep-black) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta h2 {
  font-size: 3.1rem;
  margin-bottom: 40px;
  display: block;
  text-align: center;
}

.final-cta h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--energy-green), var(--neon-blue), var(--electric-purple));
  border-radius: 2px;
}

.final-cta p {
  font-size: 1.8rem;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--light-gray);
}

/* Footer */
footer {
  background: rgba(11, 14, 20, 0.95);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--energy-green), var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Animaciones */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .steps-container::before {
    display: none;
  }

  .step {
    width: 100%;
    margin-bottom: 40px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }


}

@media (max-width: 768px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  section {
    padding: 70px 0;
  }

  .hero {
    text-align: center;
    padding-top: 60px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .final-cta h2 {
    font-size: 2.8rem;
  }

  .final-cta p {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
  }


}

@media (max-width: 480px) {
  h1 {
    font-size: 2.8rem;
  }

  .card,
  .route-card,
  .earn-card {
    padding: 25px 20px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .pillar-card {
    padding: 20px 15px;
  }

  .community-photo {
    height: 160px;
    font-size: 3rem;
  }


}


/* ===== MEDIA QUERIES COMPLETAS ===== */

/* Tablets y pantallas medianas (768px - 992px) */
@media (max-width: 992px) {
  :root {
    --border-radius: 12px;
    --border-radius-lg: 20px;
  }

  h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  p {
    font-size: 1.15rem;
  }

  .hero {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 350px;
    padding: 14px 30px;
    font-size: 1rem;
  }

  /* Steps container - versión vertical */
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .steps-container::before,
  .steps-container::after {
    display: none;
  }

  .step {
    width: 100%;
    max-width: 400px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  /* Pilares - ajustar posiciones */


  /* Cards */
  .cards-container,
  .routes-container,
  .earn-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .card,
  .route-card,
  .earn-card {
    padding: 30px 25px;
  }

  /* Footer */
  footer {
    padding: 30px 0;
  }
}

/* Móviles grandes (481px - 767px) */
@media (max-width: 768px) {
  :root {
    --border-radius: 10px;
    --border-radius-lg: 16px;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  h2::after {
    height: 3px;
    bottom: -8px;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .container {
    width: 95%;
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-2 p {
    font-size: 1.15rem;
  }

  /* Cards - una columna */
  .cards-container,
  .routes-container,
  .earn-options {
    grid-template-columns: 1fr;
  }

  .card,
  .route-card,
  .earn-card {
    padding: 28px 20px;
  }

  .card-icon,
  .earn-icon {
    font-size: 3rem;
  }

  /* Steps */
  .step-number {
    width: 65px;
    height: 65px;
    font-size: 1.8rem;
  }


  /* Rutas */
  .route-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
  }

  .route-icon {
    font-size: 1.8rem;
  }

  /* Community */
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .community-photo {
    height: 150px;
    font-size: 2.5rem;
  }

  /* Final CTA */
  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 2.3rem;
    line-height: 1.4;
  }

  .final-cta h2::after {
    width: 80%;
    height: 4px;
  }

  .final-cta p {
    font-size: 1.3rem;
  }

  /* Footer */
  .logo {
    font-size: 1.8rem;
  }

  footer p {
    font-size: 0.9rem;
  }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
  :root {
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
  }

  h1 {
    font-size: 2.3rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }

  h2::after {
    height: 2.5px;
    bottom: -6px;
  }

  h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .btn-primary {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
  }

  /* Header adjustments */
  .floating-header {
    padding: 0.6rem 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .search-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .mobile-menu-toggle {
    width: 32px;
    height: 32px;
  }

  /* Cards */
  .card,
  .route-card,
  .earn-card {
    padding: 22px 15px;
  }

  .card-icon,
  .earn-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .card h3,
  .earn-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  /* Steps */
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .step h3 {
    font-size: 1.4rem;
  }

  .step p {
    font-size: 0.9rem;
  }

  /* Routes */
  .route-card h3 {
    font-size: 1.4rem;
  }

  .route-icon {
    font-size: 1.6rem;
  }

  /* Community */
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .community-photo {
    height: 120px;
    font-size: 2rem;
    border-radius: 10px;
  }

  /* Final CTA */
  .final-cta {
    padding: 60px 0;
  }

  .final-cta h2 {
    font-size: 1.9rem;
  }

  .final-cta p {
    font-size: 1.15rem;
  }

  /* Footer */
  .logo {
    font-size: 1.5rem;
  }

  footer {
    padding: 25px 0;
  }

  footer p {
    font-size: 0.85rem;
  }

  /* Search modal */
  .search-modal-content {
    width: 95%;
    height: 80vh;
    padding: 1.5rem;
  }

  #search-input {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }

  .search-results-item {
    padding: 0.8rem;
  }

  .search-results-item h4 {
    font-size: 1rem;
  }

  .search-results-item p {
    font-size: 0.85rem;
  }
}

/* Móviles muy pequeños (hasta 360px) */
@media (max-width: 360px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .community-photo {
    height: 100px;
    font-size: 1.8rem;
  }

  .final-cta h2 {
    font-size: 1.7rem;
  }

  .final-cta p {
    font-size: 1rem;
  }
}


/* Mejoras específicas para el header responsive */
@media (max-width: 992px) {
  .main-nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--space-blue) 100%);
    width: 85%;
    height: 100vh;
    padding: 80px 2rem 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    border-left: 1px solid rgba(124, 58, 237, 0.3);
    overflow-y: auto;
  }

  .main-nav ul.active {
    right: 0;
  }

  .main-nav li {
    margin-bottom: 1.2rem;
  }

  .main-nav a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--soft-white);
    position: relative;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a::before {
    content: '→';
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .main-nav a:hover::before {
    opacity: 1;
  }

  .header-actions {
    gap: 0.6rem;
  }

  .search-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .main-nav ul {
    width: 90%;
    padding: 70px 1.5rem 1.5rem;
  }

  .main-nav a {
    font-size: 1.1rem;
  }
}


/* Botones más accesibles en mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 48px;
    /* Tamaño mínimo táctil */
    padding: 14px 28px;
  }

  .hero-cta .btn {
    min-height: 52px;
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--soft-white);
  }
}

/* Espaciado táctil para elementos clickeables */
@media (max-width: 768px) {

  .search-results-item,
  .community-photo,
  .card,
  .route-card,
  .earn-card {
    min-height: 44px;
    /* Mínimo recomendado para táctil */
  }
}

.footer-wolf-container {
  margin-top: 15px;
  margin-bottom: 10px;
}

.footer-wolf-icon {
  width: 60px;
  /* Bigger size */
  height: auto;
  vertical-align: middle;
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.6));
  animation: float 5s ease-in-out infinite;
}




/* =========================================
   FIXES MOBILE (Requested)
   ========================================= */
@media (max-width: 768px) {

  /* 1. Header: Busqueda al lado de hamburguesa (y ocultar CTA) */
  .header-actions {
    margin-left: auto;
    /* Empujar a la derecha (junto a la hamburguesa) */
    margin-right: 5px;
    /* Pequeña separación del menú */
  }

  .header-actions .cta-button {
    display: none !important;
  }

  /* 2. Ajustar tamaño titulo "Explora por pilar" para igualar otros titulos */
  .pilars-title h2 {
    font-size: 2rem !important;
  }

  /* 3. Ajustes de la sección Rutas (Pillars) en Mobile */
  /* Contenedor: Padding para separar del borde */
  #rutas .pilars-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Grid: 2 columnas EXACTAMENTE IGUALES */
  #rutas .pilars-top {
    display: grid !important;
    /* minmax(0, 1fr) fuerza a que el contenido no expanda la celda, garantizando 50% exacto */
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    /* Gap ligeramente reducido para ganar espacio */
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center;
  }

  /* Items: Asegurar que encajen en el grid */
  #rutas .pilar-item {
    width: 100% !important;
    margin: 0 !important;
    max-width: none !important;
    /* Quitar limites de ancho */
    padding: 15px 8px !important;
    /* Optimizar padding interno */
    flex-direction: column;
    /* Icono arriba texto abajo para ahorrar espacio horizontal si es necesario, o row si cabe */
    /* Mantengamos row como pidió el cliente implícitamente, pero ajustemos flex */
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px !important;
  }

  /* Texto: Reducir tamaño para que entre en 2 líneas */
  #rutas .pilar-item h4 {
    font-size: 0.8rem !important;
    /* Un poco más pequeño para asegurar fit */
    line-height: 1.25;
    overflow-wrap: break-word;
    word-break: break-word;
    /* Romper palabras si es necesario */
    hyphens: auto;
  }

  /* Icono: Ajustar tamaño */
  #rutas .pilar-icon {
    font-size: 1.6rem !important;
    min-width: 30px;
    margin: 0 !important;
  }

  /* Search Modal: bajar input para que no choque con la X */
  #search-input {
    margin-top: 2rem;
  }
}

/* =========================================
   PRODUCTS PAGE STYLES
   ========================================= */

.products-section {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--soft-white) 0%, var(--neon-blue) 50%, var(--electric-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.products-header p {
  font-size: 1.3rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--glass-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.4);
}

.product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--midnight), var(--space-blue));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.4s ease, opacity 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--electric-purple), var(--neon-blue));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--soft-white);
  line-height: 1.3;
}

.product-description {
  font-size: 0.95rem;
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--energy-green);
  font-family: 'Poppins', sans-serif;
}

.price-original {
  font-size: 1rem;
  color: var(--light-gray);
  text-decoration: line-through;
  opacity: 0.7;
}

.product-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
}

/* Active link style */
.main-nav a.active {
  color: var(--neon-blue);
}

/* Responsive Products */
@media (max-width: 768px) {
  .products-section {
    padding: 100px 0 60px;
  }

  .products-header h1 {
    font-size: 2.5rem;
  }

  .products-header p {
    font-size: 1.1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-image {
    height: 180px;
  }

  .product-info {
    padding: 20px;
  }

  .product-info h3 {
    font-size: 1.25rem;
  }

  .price-current {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .products-header h1 {
    font-size: 2rem;
  }

  .product-image {
    height: 160px;
  }
}

/* ==========================================================================
   LANDING PAGE: MÉTODO INTERRUPTOR EJECUTIVO
   ========================================================================== */

.landing-hero,
.hero-section {
  padding: 120px 0 100px;
  /* Sincronizado espaciado */
  text-align: center;
}

.landing-hero h1 {
  /* Usando valores globales sincronizados */
  max-width: 950px;
  margin: 0 auto 1.5rem;
}

.promise-box {
  max-width: 850px;
  margin: 0 auto 2rem;
}

.promise-box h2 {
  font-size: 2.2rem;
  /* Sincronizado para ser ligeramente menor que el h2 de sección */
  color: var(--neon-blue);
  border: none;
  margin-bottom: 1rem;
}

.subheadline {
  font-size: 1.3rem;
  color: var(--light-gray);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.vsl-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.vsl-placeholder {
  color: var(--light-gray);
  text-align: center;
}

.cta-section {
  text-align: center;
  margin-bottom: 4rem;
}

.microcopy {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--light-gray);
  opacity: 0.8;
}

.bullets-short {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5rem;
}

.bullet-tag {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 1rem;
  color: var(--soft-white);
}

.section-highlight,
.highlight-section {
  background: rgba(15, 23, 42, 0.5);
  padding: 100px 0;
  /* Sincronizado */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.section-method {
  padding: 100px 0;
  text-align: center;
}

.benefit-list,
.offer-list {
  list-style: none;
  max-width: fit-content;
  margin: 2rem auto;
  text-align: left;
  padding: 0;
}

.benefit-list li,
.offer-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
}

.check-svg,
.feature-svg,
.compare-svg {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-svg {
  left: 0;
  stroke: var(--energy-green);
  stroke-width: 3 !important;
}

.feature-svg {
  left: 0;
  stroke: url(#hero-gradient-stroke);
  stroke-width: 2 !important;
}

.compare-svg {
  position: relative;
  display: block;
  margin: 0 auto 15px;
  width: 40px;
  height: 40px;
  stroke-width: 6 !important;
}

.negative .compare-svg {
  stroke: #ef4444;
}

.positive .compare-svg {
  stroke: var(--energy-green);
}

.check-path,
.feature-path,
.compare-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.5s ease-out;
}

/* Dasharray más largo para los iconos gruesos de la comparativa */
.compare-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.is-visible .check-path,
.is-visible .feature-path,
.is-visible .compare-path {
  stroke-dashoffset: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 3rem;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.negative {
  border-left: 4px solid #ef4444;
}

.comparison-card.positive {
  border-left: 4px solid var(--energy-green);
}

.value-anchor {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-white);
  margin: 4rem auto 2rem;
  text-align: center;
  max-width: 800px;
}

.guarantee-box {
  border: 2px dashed rgba(34, 197, 94, 0.4);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(34, 197, 94, 0.05);
}

.expert-advice {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(56, 189, 248, 0.1) 100%);
  padding: 40px;
  border-radius: var(--border-radius);
  margin: 60px 0;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.expert-tag {
  display: inline-block;
  background: var(--electric-purple);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .landing-hero h1 {
    font-size: 2.2rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }
}