/* Configuración de Zoom al 90% para todos los navegadores */
html {
  zoom: 0.9;
}

body {
  background: #000 !important;
  color: #e0e0e0;
  font-family: 'Orbitron', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  color: #00ffe7;
}
a, .nav-links a {
  color: #39ff14 !important;
  text-decoration: none;
}
a:hover, .nav-links a:hover {
  color: #fff !important;
  text-decoration: underline;
}
.header {
  background: #000;
  color: #f1f1f1;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  position: relative;
  z-index: 10;
  background: transparent;
}
.logo {
  height: 48px;
  margin-right: 36px;
  z-index: 20;
  position: relative;
  pointer-events: auto;
  display: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  z-index: 15;
  position: relative;
}
.nav-links li {
  list-style: none;
  margin: 0 8px;
  background: none !important;
  overflow: visible !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.nav-links a {
  font-size: 1.35rem;
  font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14, 0 0 2px #222;
  padding: 10px 18px;
  border-radius: 12px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, text-shadow 0.2s;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
  z-index: 16;
  display: inline-block;
  background: transparent;
}
.nav-links a.active,
.nav-links a:hover {
  color: #fff !important;
  background: #000;
  box-shadow: 0 0 18px 6px #39ff14, 0 0 2px 1px #39ff14 inset;
  text-shadow: 0 0 2px #39ff14, 0 0 8px #39ff14, 0 0 16px #39ff14;
  outline: none;
}
.nav-links a.active::before,
.nav-links a:hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid #39ff14;
  box-shadow: 0 0 8px #39ff14, 0 0 18px #39ff14, 0 0 32px #39ff1444;
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
  animation: glitch-glow 0.7s infinite alternate;
}
.navbar .nav-links li a {
  position: relative;
  color: #39ff14;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  z-index: 1;
}
.navbar .nav-links li a.active,
.navbar .nav-links li a:hover {
  color: #fff;
}
.navbar .nav-links li a.active::before,
.navbar .nav-links li a:hover::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  border-radius: 8px;
  background: radial-gradient(circle, #39ff14 60%, transparent 100%);
  box-shadow: 0 0 16px 6px #39ff14, 0 0 32px 12px #39ff1455;
  z-index: -1;
  animation: neon-glow 1.2s infinite alternate;
}
@keyframes glitch-glow {
  0% { filter: blur(1.5px); opacity: 0.7; transform: translate(0, 0);}
  20% { filter: blur(2.5px); opacity: 1; transform: translate(-1px, 1px);}
  40% { filter: blur(1.5px); opacity: 0.8; transform: translate(1px, -1px);}
  60% { filter: blur(2.5px); opacity: 1; transform: translate(-1px, 0);}
  80% { filter: blur(1.5px); opacity: 0.7; transform: translate(1px, 1px);}
  100% { filter: blur(2.5px); opacity: 1; transform: translate(0, 0);}
}
@keyframes neon-glow {
  0% { box-shadow: 0 0 16px 6px #39ff14, 0 0 32px 12px #39ff1455; }
  100% { box-shadow: 0 0 32px 12px #39ff14, 0 0 48px 24px #39ff1444; }
}
.hero {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at 10% 10%, #0b0f12 0%, #000 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Modal / form container used in testimonios.html moved from inline styles */
#form-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  background: #000;
  border-radius: 16px;
  border: 2px solid #39ff14;
  box-shadow: 0 0 20px #39ff14, 0 0 40px #39ff1444;
  padding: 30px;
}
#form-container .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14;
  transition: all 0.3s ease;
  z-index: 10002;
}
#form-container .btn-close:hover {
  color: #fff;
  text-shadow: 0 0 15px #39ff14, 0 0 25px #39ff14;
}
#form-container h2 {
  color: #39ff14;
  font-size: 1.8rem;
  text-shadow: 0 0 8px #39ff14, 0 0 15px #39ff14;
  margin: 0 0 20px 0;
  text-align: center;
}
.centered-action { 
  display: flex;
  justify-content: center;
  margin: 60px 0 40px 0;
}
.input-neon { height: 80px; }
.btn-neon { width:100%; margin-top:10px; }

/* Global main padding moved from inline styles */
main { padding: 40px 20px; }

/* formulario and popup defaults moved from inline attributes */
.formulario-flex { margin-top: 40px; }
#popup-mensaje { display: none; }

.card-date { font-size: 12px; color: #aaa; display: block; margin-top: 6px; }

.saludo-title { color: #00ffe7; text-shadow: 0 0 10px #00ffe7, 0 0 20px #0ff; margin: 0 0 6px 0; }
.saludo-name { color: #ff00c8; }
.saludo-text { font-size: 1.2rem; color: #0ff; margin: 0; }

.titulo-neon {
  color: #39ff14 !important;
  font-size: 4rem;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #0f0, 0 0 80px #0f0;
}
.subtitulo {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ccc;
}
.btn-descargar, .btn-wsp {
  background: #000;
  color: #39ff14;
  border: 2px solid #39ff14;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #39ff1444;
  display: inline-block;
  margin: 12px;
  text-align: center;
  line-height: 1.4;
}
.btn-descargar:hover, .btn-wsp:hover {
  background: #39ff14;
  color: #000;
  box-shadow: 0 0 25px #39ff14;
  transform: scale(1.05);
}
.btn-enviar {
  background: #000;
  color: #39ff14;
  border: 1px solid #39ff14;
  border-radius: 6px;
  padding: 10px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 8px;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
  transition: background 0.2s, color 0.2s;
}
.btn-enviar:hover {
  background: #39ff14;
  color: #000;
  text-shadow: none;
}

.botones-centrados {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.sparkle-btn {
  --color: #39ff14;
  position: relative;
  padding: 16px 42px;
  background: #000;
  font-size: 1.15rem;
  font-weight: 600;
  color: #39ff14;
  border: 3px solid var(--color);
  border-radius: 8px;
  box-shadow: 0 0 15px #39ff1466;
  transition: all .3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  line-height: 1.5;
  text-align: center;
  display: inline-block;
  margin: 12px;
}
.sparkle-btn .star-1, .sparkle-btn .star-6 {
  position: absolute;
  width: 25px;
  height: 25px;
  background: transparent;
  pointer-events: none;
  z-index: 5;
}
.sparkle-btn .star-1 { top: 20%; left: 20%; filter: drop-shadow(0 0 0 #fffdef); transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);}
.sparkle-btn .star-6 { top: 5%; left: 50%; width: 5px; filter: drop-shadow(0 0 0 #fffdef); transition: all .8s ease;}
.sparkle-btn:hover .star-1 { top: -80%; left: -30%; filter: drop-shadow(0 0 10px #fffdef); z-index: 2;}
.sparkle-btn:hover .star-6 { top: 80%; left: 80%; filter: drop-shadow(0 0 10px #fffdef); z-index: 2;}
.sparkle-btn:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 0 30px 5px var(--color);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.sparkle-btn:hover:before { opacity: 1; }

.sparkle-btn:hover {
  background: #39ff14;
  color: #000;
  box-shadow: 0 0 30px #39ff14;
  transform: scale(1.08);
}

/* Botón WhatsApp con color verde neon */
.btn-whatsapp {
  --color: #39ff14;
  border-color: #39ff14 !important;
  box-shadow: 0 0 9px #39ff1455 !important;
}

.btn-whatsapp:hover {
  --color: #39ff14;
}
.beneficios, .contacto {
  padding: 40px 20px;
}
.beneficios ul { list-style: none; padding-left: 0; }
.beneficios li { margin-bottom: 10px; }
.contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tarjeta-contacto, .seccion-destacada {
  background: #0f1113;
  color: #f1f1f1;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #0004;
}
.contactos-flex, .android-tarjetas-flex {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.tarjeta-contacto {
  flex: 1 1 320px;
  max-width: 400px;
  min-width: 260px;
}
.android-tarjetas-flex .tarjeta-contacto {
  flex: 1 1 280px;
  max-width: 340px;
  min-width: 220px;
}
.card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px;
  width: 390px;
  height: 164px;
  perspective: 1000px;
}
.card {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-front, .card-back {
  background: #0f1113 !important;
  border-radius: 12px;
  box-shadow: 0 4px 16px #39ff1460;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  padding: 18px 18px;
  color: #39ff14 !important;
  text-align: center;
  word-break: break-word;
  overflow: hidden;
  box-sizing: border-box;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #0f0;
}
.card-front h3, .card-front strong {
  margin: 0;
  font-size: 1.3rem;
  color: #39ff14 !important;
  word-break: break-word;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #0f0;
}
.card-back { transform: rotateY(180deg);}
.card-container:hover .card,
.card-container:focus-within .card {
  transform: rotateY(180deg);
}
.android-tarjetas-flex,
.androidandroid-tarjetas-flex,
.testimonios-flex,
.contactos-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin: 32px 0;
  width: 100%;
}
.formulario-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
.formulario-container {
  background: #0f1113;
  border-radius: 12px;
  box-shadow: 0 4px 16px #39ff1460;
  padding: 32px 28px;
  width: 390px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.formulario-titulo {
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #0f0;
  margin-bottom: 24px;
  text-align: center;
}
.formulario-container label {
  color: #39ff14;
  margin-top: 12px;
  margin-bottom: 4px;
  width: 100%;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
}
.formulario-container input,
.formulario-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #39ff14;
  background: #000;
  color: #39ff14;
  font-size: 1rem;
  box-sizing: border-box;
  outline: none;
  text-shadow: 0 0 5px #39ff14;
}
.formulario-container input:focus,
.formulario-container textarea:focus {
  border-color: #39ff14;
  box-shadow: 0 0 8px #39ff14;
}
.form-neon {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: none;
  min-width: unset;
  max-width: 100%;
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
  margin-bottom: 20px;
}
.form-neon:last-child {
  margin-bottom: 0;
}
.label-neon {
  color: #39ff14;
  font-size: 1.1rem;
  margin-bottom: 8px;
  margin-top: 15px;
  text-shadow: 0 0 8px #39ff14;
  display: block;
  font-weight: 600;
}
.label-neon:first-of-type {
  margin-top: 0;
}
.input-neon {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  background: #000;
  border: 2px solid #39ff14;
  border-radius: 8px;
  color: #39ff14;
  font-size: 1rem;
  box-sizing: border-box;
  box-shadow: 0 0 6px #39ff14 inset;
  font-family: 'Orbitron', Arial, sans-serif;
  transition: all 0.3s ease;
}
.input-neon:focus { border: 2px solid #fff; }
.btn-neon {
  background: transparent;
  color: #39ff14;
  border: 2px solid #39ff14;
  border-radius: 5px;
  padding: 7px 18px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 0 8px #39ff14, 0 0 2px #000;
  text-shadow: 0 0 8px #39ff14;
}
.btn-neon:hover {
  background: #39ff14;
  color: #191a1e;
}
.popup-mensaje {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: #39ff14;
  border-radius: 12px;
  box-shadow: 0 4px 16px #39ff1460;
  padding: 32px 40px;
  min-width: 220px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-size: 1.3rem;
  text-align: center;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #0f0;
  border: 2px solid #39ff14;
}
.popup-success { border-color: #39ff14; }
.popup-error {
  border-color: #ff3939;
  color: #ff3939;
  text-shadow: 0 0 5px #ff3939, 0 0 10px #ff3939, 0 0 20px #ff3939;
}
.carrusel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  width: 100%;
}
.carrusel-imagen {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: contain;
}
.carrusel-controles button {
  font-size: 1.2rem;
  padding: 6px 12px;
}
.carrusel-label {
  color: #39ff14;
  font-weight: bold;
}
.planes-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.plan-card {
  background: #0f1113;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 30px 25px;
  width: 300px;
  text-align: center;
}
.plan-basic h2, .plan-basic .plan-precio, .plan-basic .plan-lista {
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14;
}
.plan-advanced h2, .plan-advanced .plan-precio, .plan-advanced .plan-lista {
  color: #1bbf72;
}
.plan-business h2, .plan-business .plan-precio, .plan-business .plan-lista {
  color: #ff7e29;
}
.plan-precio { font-size: 2em; margin: 15px 0;}
.plan-precio-mes { font-size: 0.5em;}
.plan-lista { list-style: none; padding: 0; margin-bottom: 20px;}
.check-icon::before { content: "✔"; margin-right: 8px; font-weight: bold;}
.choose-btn {
  background: #000;
  border-radius: 5px;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: bold;
  border: 2px solid;
  transition: background 0.2s, color 0.2s;
}
.plan-basic .choose-btn { color: #39ff14; border-color: #39ff14;}
.plan-advanced .choose-btn { color: #1bbf72; border-color: #1bbf72;}
.plan-business .choose-btn { color: #ff7e29; border-color: #ff7e29;}
.choose-btn:hover { background: #000;}
.planes-nota {
  text-align: center;
  margin-top: 40px;
  color: #888;
}
.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
.mapa iframe {
  border: none;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  height: 250px;
}
body, h1, h2, h3, h4, h5, h6, p, a, li, span, label, input, button, .titulo-neon, .subtitulo, .card-front, .card-back, .tarjeta-testimonio, .tarjeta-contacto, .seccion-destacada {
  color: #39ff14 !important;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 40px #0f0;
}
.tarjeta-contacto, .seccion-destacada, .card-front, .card-back, .btn-descargar, .btn-wsp, .tarjeta-testimonio {
  background: #000 !important;
}
input, textarea, select, button, .btn-descargar, .btn-wsp {
  background: #000 !important;
  border: 1px solid #39ff14;
  color: #39ff14 !important;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
}
@media (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 8px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
    padding: 0;
    margin: 0;
  }
  .nav-links li {
    margin: 0 4px 4px 0;
  }
  .nav-links a {
    font-size: 0.95rem;
    padding: 6px 10px;
    min-width: 80px;
    text-align: center;
  }
}


@media (max-width: 900px) {
  .nav-links a {
    font-size: 0.9rem;
    padding: 5px 8px;
  }
}

@media (max-width: 900px) {
  .card-container {
    width: 98vw;
    max-width: 390px;
    min-width: 220px;
    height: 164px;
  }
  .android-tarjetas-flex,
  .androidandroid-tarjetas-flex,
  .testimonios-flex,
  .contactos-flex {
    gap: 16px;
  }
  .carrusel-imagen {
    max-width: 90vw;
  }
}
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    padding: 6px 5px;
  }
  .logo {
    height: 36px;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .nav-links {
    gap: 8px;
    flex-wrap: wrap;
    font-size: 1rem;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 7px 8px;
    border-radius: 8px;
  }
  #saludo-cibernetico {
    font-size: 1.2rem;
    margin: 18px auto 10px auto;
    padding: 0 4px;
  }
  .titulo-neon {
    font-size: 2rem !important;
    padding: 0 4px;
  }
  .subtitulo {
    font-size: 1rem;
    padding: 0 4px;
  }
  .hero {
    padding: 40px 5px;
  }
  .main-contenido {
    padding: 18px 4px;
  }
  .seccion-destacada {
    padding: 10px 6px;
    font-size: 0.98rem;
    margin-bottom: 16px;
  }
  .carrusel-img {
    max-width: 98vw;
    height: 120px;
    border-width: 2px;
  }
  .carrusel-controles button {
    font-size: 1rem;
    padding: 4px 8px;
  }
  #form-container {
    width: 95%;
    max-width: 95%;
    padding: 20px;
    max-height: 95vh;
  }
  #form-container h2 {
    font-size: 1.5rem;
  }
  #form-container .btn-close {
    font-size: 1.8rem;
    top: 10px;
    right: 10px;
  }
  .formulario-container,
  .form-neon {
    padding: 10px 4px;
    width: 98vw;
    max-width: 100vw;
    min-width: unset;
  }
  .btn-descargar,
  .btn-wsp,
  .btn-enviar,
  .btn-neon,
  .choose-btn {
    width: 100%;
    font-size: 1rem;
    padding: 10px 0;
    margin-bottom: 8px;
  }
  .card-container {
    width: 98vw;
    max-width: 98vw;
    min-width: unset;
    height: 120px;
    margin: 8px 0;
  }
  .card-front, .card-back {
    font-size: 1rem;
    padding: 8px 4px;
  }
  .planes-container {
    flex-direction: column;
    gap: 16px;
  }
  .plan-card {
    width: 98vw;
    max-width: 100vw;
    padding: 14px 4px;
  }
  .footer {
    font-size: 0.9rem;
    padding: 10px 0;
    margin-top: 20px;
  }
}

.logo-hero {
  display: block;
  margin: 0 auto 24px auto;
  width: 280px;
  max-width: 80vw;
  height: auto;
}

@media (max-width: 600px) {
  .logo-hero {
    width: 120px;
    max-width: 60vw;
    margin-bottom: 12px;
  }
}

.choose-btn:focus, .nav-links a:focus {
  outline: 2px solid #39ff14;
  outline-offset: 2px;
}
#cursor-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
#saludo-cibernetico {
  text-align: center;
  margin: 32px auto 24px auto;
  font-size: 2.2rem;
  color: #39ff14;
  font-family: 'Orbitron', 'Arial', sans-serif;
  text-shadow: 0 0 8px #39ff14, 0 0 16px #0f0;
  max-width: 90vw;
  letter-spacing: 1px;
}
.saludo-cibernetico { text-align: center; margin: 30px 0 10px 0;}
.saludo-titulo { font-size: 2.5rem; margin: 0;}
.saludo-subtitulo { font-size: 2rem; margin-top: 0.5rem;}
.main-contenido { padding: 40px 20px;}

/* Carrusel - Estilos base corregidos */
.carrusel { 
  text-align: center; 
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.carrusel-img {
  width: 100%;
  max-width: 90vw;
  height: auto;
  min-height: 320px;
  max-height: 500px;
  border-radius: 12px;
  box-shadow: 0 0 24px #39ff14;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #000;
}

.carrusel-controles { 
  margin: 20px 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
#overlay-publicidad {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 0;
  margin: 0;
}

/* Contenedor para la imagen y botón como unidad */
#overlay-publicidad {
  flex-direction: column;
  gap: 15px;
}

#overlay-publicidad > * {
  position: relative;
}

#publicidadImg {
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  display: block;
}

#cerrarBtnPublicidad {
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  z-index: 10001;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 100px;
}

#cerrarBtnPublicidad:hover {
  background-color: #e8e8e8;
  transform: scale(1.05);
}

#cerrarBtnPublicidad:active {
  transform: scale(0.98);
}


@media (min-width: 700px) {
  #lista-testimonios {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
  }
  #lista-testimonios .tarjeta-testimonio {
    flex: 1 1 320px;
    max-width: 45%;
    min-width: 260px;
    margin: 0;
  }
}

/* Una columna en móviles */
@media (max-width: 699px) {
  #lista-testimonios {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  #lista-testimonios .tarjeta-testimonio {
    max-width: 100%;
    width: 100%;
  }
}

/* ========================================
   OPTIMIZACIONES MOBILE-FIRST
   Core Web Vitals y Performance Mobile
   ======================================== */

/* Optimización para móviles pequeños (menos de 480px) */
@media (max-width: 480px) {
  /* Reducir tamaño del hero para mejorar LCP */
  .hero {
    padding: 60px 15px 40px;
  }
  
  /* Logo hero más pequeño para móviles */
  .logo-hero {
    max-width: 120px;
    height: auto;
  }
  
  /* Títulos optimizados para pantallas pequeñas */
  .titulo-neon {
    font-size: 2rem !important;
    line-height: 1.2;
    text-shadow: 0 0 3px #39ff14, 0 0 6px #39ff14, 0 0 12px #39ff14;
  }
  
  h1.titulo-neon {
    font-size: 1.8rem !important;
    margin-bottom: 15px;
  }
  
  .subtitulo {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  /* Botones más grandes para touch */
  .btn-descargar, .btn-whatsapp {
    padding: 16px 20px;
    font-size: 1.05rem;
    min-height: 52px;
    display: block;
    margin: 15px auto;
    text-align: center;
    line-height: 1.4;
    max-width: 220px;
    border: 2px solid #39ff14 !important;
    box-shadow: 0 0 15px #39ff1455 !important;
  }
  
  .sparkle-btn {
    padding: 16px 20px !important;
    border: 3px solid var(--color) !important;
  }
  
  /* Navegación móvil optimizada */
  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 10px 5px;
  }
  
  .logo {
    height: 40px;
    margin-right: 0;
    margin-bottom: 8px;
  }
  
  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    font-size: 0.95rem;
    padding: 10px 10px;
    display: block;
    width: 100%;
  }
  
  /* Contenido principal */
  .main-contenido {
    padding: 20px 15px;
  }
  
  /* Secciones destacadas */
  .seccion-destacada {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .seccion-destacada h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .seccion-destacada p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .seccion-destacada ul {
    padding-left: 20px;
  }
  
  .seccion-destacada li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  /* Carrusel optimizado para móviles pequeños */
  .carrusel {
    padding: 0 10px;
  }
  
  .carrusel-img {
    max-width: 100%;
    min-height: 200px;
    max-height: 300px;
    object-fit: contain;
  }
  
  .carrusel-controles button {
    padding: 10px 16px;
    font-size: 1.1rem;
    min-width: 48px;
    min-height: 48px;
  }
  
  /* Saludo cibernético */
  #saludo-cibernetico {
    font-size: 1.4rem;
    margin: 20px auto 15px;
  }
  
  .saludo-titulo {
    font-size: 1.6rem;
  }
  
  .saludo-subtitulo {
    font-size: 1.2rem;
  }
}

/* Optimización para tablets y móviles medianos (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    padding: 80px 20px 50px;
  }
  
  .logo-hero {
    max-width: 160px;
    height: auto;
  }
  
  .titulo-neon {
    font-size: 2.8rem !important;
  }
  
  h1.titulo-neon {
    font-size: 2.4rem !important;
  }
  
  .subtitulo {
    font-size: 1.1rem;
  }
  
  .btn-descargar, .btn-whatsapp {
    padding: 12px 26px;
    min-height: 48px;
  }
  
  .nav-links a {
    font-size: 1.15rem;
    padding: 9px 16px;
  }
  
  .seccion-destacada h2 {
    font-size: 1.8rem;
  }
  
  .seccion-destacada p,
  .seccion-destacada li {
    font-size: 1rem;
  }
  
  /* Carrusel optimizado para tablets */
  .carrusel-img {
    max-height: 400px;
    min-height: 280px;
  }
}

/* Optimizaciones generales para todos los móviles */
@media (max-width: 768px) {
  /* Prevenir layout shift */
  body {
    overflow-x: hidden;
  }
  
  /* Mejorar performance de imágenes */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Optimizar animaciones para móviles (reducir complejidad) */
  .sparkle-btn {
    animation: none; /* Desactivar animaciones complejas en móviles */
  }
  
  /* Touch-friendly: espaciado entre elementos interactivos */
  button, a {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Reducir efectos de blur para mejorar performance */
  @keyframes glitch-glow {
    0%, 100% { 
      filter: none; 
      opacity: 0.9; 
      transform: translate(0, 0);
    }
  }
  
  /* Footer optimizado */
  .footer {
    padding: 20px 15px;
    font-size: 0.9rem;
  }
  
  /* Canvas cursor effect: desactivar en móviles para mejorar performance */
  #cursor-canvas {
    display: none;
  }
}

/* Optimización para desktop (mantener diseño original) */
@media (min-width: 769px) {
  /* Asegurar que el diseño desktop se mantiene sin cambios */
  .hero {
    padding: 100px 20px;
  }
  
  .titulo-neon {
    font-size: 4rem;
  }
  
  .navbar {
    flex-direction: row;
  }
  
  .nav-links {
    flex-direction: row;
  }
}

/* Preload de fuentes críticas para mejorar LCP */
@font-face {
  font-family: 'Orbitron';
  font-display: swap;
}

/* Mejora de contraste para accesibilidad en móviles */
@media (max-width: 768px) and (prefers-contrast: high) {
  .titulo-neon {
    text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
  }
  
  .nav-links a {
    text-shadow: 0 0 4px #39ff14;
  }
}

/* Estilos del footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  background: #000;
  border-top: 1px solid #222;
}

.footer p {
  margin: 0;
  color: #ccc;
}

.footer a {
  color: #39ff14 !important;
  text-decoration: none;
}

.footer a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.footer .footer-secondary {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #999;
}

/* Disclaimer legal */
.disclaimer {
  margin-top: 15px;
  padding: 10px;
  background: rgba(57, 255, 20, 0.05);
  border-left: 3px solid #39ff14;
  border-radius: 4px;
}

.disclaimer small {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ========== POLÍTICAS DE PRIVACIDAD ========== */
.fecha-actualizacion {
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 30px;
  text-align: center;
}

.politicas-contenido {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.8;
}

.intro-politicas {
  background: rgba(0, 255, 231, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #00ffe7;
  margin-bottom: 40px;
}

.intro-politicas p {
  margin: 0;
  color: #e0e0e0;
}

.politica-seccion {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 231, 0.1);
  transition: all 0.3s ease;
}

.politica-seccion:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 255, 231, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 231, 0.1);
}

.politica-seccion h2 {
  color: #00ffe7;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(57, 255, 20, 0.3);
}

.politica-seccion p {
  margin-bottom: 15px;
  color: #e0e0e0;
  text-align: justify;
}

.lista-finalidades,
.lista-legitimacion {
  margin: 20px 0;
  padding-left: 30px;
  list-style-type: none;
}

.lista-finalidades li,
.lista-legitimacion li {
  margin-bottom: 12px;
  color: #e0e0e0;
  position: relative;
  padding-left: 20px;
}

.lista-finalidades li:before,
.lista-legitimacion li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #39ff14;
  font-size: 1.2rem;
}

.advertencia-datos {
  background: rgba(57, 255, 20, 0.05);
  padding: 15px;
  border-left: 3px solid #39ff14;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 20px;
}

.contacto-privacidad {
  background: linear-gradient(135deg, rgba(0, 255, 231, 0.1), rgba(57, 255, 20, 0.1));
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
  border: 1px solid rgba(0, 255, 231, 0.3);
}

.contacto-privacidad h3 {
  color: #00ffe7;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contacto-privacidad p {
  margin: 0;
  font-size: 1.1rem;
}

.contacto-privacidad a {
  color: #39ff14 !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contacto-privacidad a:hover {
  color: #fff !important;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Estilos para la sección Proximamente */
.proximamente-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  background: linear-gradient(135deg, #000 0%, #0a1a0f 50%, #000 100%);
  position: relative;
  overflow: hidden;
}

.proximamente-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  top: 10%;
  left: 10%;
}

.proximamente-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 231, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
  bottom: 10%;
  right: 10%;
}

.proximamente-container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.proximamente-titulo {
  font-size: 4rem;
  color: #39ff14;
  text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff1466;
  margin: 0 0 30px 0;
  font-weight: 900;
  letter-spacing: 3px;
  animation: neon-glow 3s ease-in-out infinite;
}

.proximamente-subtitle {
  font-size: 2.2rem;
  color: #00ffe7;
  text-shadow: 0 0 8px #00ffe7, 0 0 15px #00ffe7;
  margin: 20px 0;
  font-weight: 700;
  letter-spacing: 2px;
  animation: neon-glow 3s ease-in-out infinite 0.5s;
}

.proximamente-brand {
  font-size: 1.8rem;
  color: #39ff14;
  text-shadow: 0 0 6px #39ff14, 0 0 12px #39ff14;
  margin: 30px 0 0 0;
  font-weight: 600;
  letter-spacing: 2px;
  animation: neon-glow 3s ease-in-out infinite 1s;
}

@keyframes neon-glow {
  0%, 100% {
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 20px currentColor, 0 0 30px currentColor, 0 0 40px currentColor;
    opacity: 0.95;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive para Proximamente */
@media (max-width: 768px) {
  .proximamente-titulo {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .proximamente-subtitle {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .proximamente-brand {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  
  .proximamente-container {
    padding: 20px 15px;
  }
}

/* Estilos para la sección Libreria */
.libreria-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  background: linear-gradient(135deg, #000 0%, #0a1a0f 50%, #000 100%);
  position: relative;
  overflow: hidden;
}

.libreria-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  top: 10%;
  left: 10%;
}

.libreria-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
  bottom: 10%;
  right: 10%;
}

.libreria-container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.libreria-titulo {
  font-size: 3.5rem;
  color: #00ffe7;
  text-shadow: 0 0 10px #00ffe7, 0 0 20px #00ffe7, 0 0 30px #00ffe766;
  margin: 0 0 30px 0;
  font-weight: 900;
  letter-spacing: 2px;
  animation: neon-glow 3s ease-in-out infinite;
}

.libreria-descripcion {
  font-size: 1.6rem;
  color: #39ff14;
  text-shadow: 0 0 8px #39ff14, 0 0 15px #39ff14;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.6;
  animation: neon-glow 3s ease-in-out infinite 0.5s;
}

/* Responsive para Libreria */
@media (max-width: 768px) {
  .libreria-titulo {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .libreria-descripcion {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  
  .libreria-container {
    padding: 20px 15px;
  }
}

/* Responsive para políticas */
@media (max-width: 768px) {
  .politicas-contenido {
    padding: 10px;
  }
  
  .politica-seccion {
    padding: 15px;
  }
  
  .politica-seccion h2 {
    font-size: 1.2rem;
  }
  
  .lista-finalidades,
  .lista-legitimacion {
    padding-left: 20px;
  }
  
  .contacto-privacidad {
    padding: 20px;
  }
}