* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #f0f0f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  user-select: none;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  padding: 25px 40px;
  background-color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.8);
  border-bottom: 2px solid #007bff;
  user-select: none;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.03);
}

.header-icon {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

.header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  user-select: text;
}

.header-text h1 {
  font-size: 2.2rem;
  color: #00a8ff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-text p {
  margin: 0;
  color: #ccc;
  font-size: 1rem;
}


/* Para que el contenido no quede detrás del header fijo */
body > :not(header) {
  padding-top: 110px; /* Ajusta si el header cambia de tamaño */
}


/* HERO Jett */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
  padding-top: 150px;
}

.texto-hero {
  flex: 1.2;
  max-width: 650px;
  margin-right: 40px;
  text-align: center;
}

.texto-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #007bff;
  font-family: 'Valorant', sans-serif;
}

.texto-hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #ddd;
}

.btn-hero {
  background-color: #007bff;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.btn-hero:hover {
  background-color: #e13b4a;
  cursor: pointer;
}

.imagen-hero {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagen-hero img {
  max-width: 350px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 0 15px #007bff);
}

.hamburguesa {
  display: none; /
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    padding-top: 200px;
  }}

  .texto-hero {
    margin-right: 0;
  }

  .imagen-hero {
    margin-top: 20px;
  }

  /* Estilos generales para escritorio */
.menu {
  margin-left: auto; /* Empuja el menú a la derecha */
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu li {
  display: inline;
}

.menu a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu a:hover,
.menu a:focus {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 0 10px #007bff;
  outline: none;
  cursor: pointer;
}

/* Header estilo móvil */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
  }
  

  /* Hamburguesa fija a la derecha */
  .hamburguesa {
    cursor: pointer;
    font-size: 1.8rem;
    color: #00a8ff;
    position: fixed;
    top: 20px;
    right: 8px;
    z-index: 10000;
    display: block;
    user-select: none;
  }

  /* Menú lateral oculto inicialmente, fijo a la derecha */
  .menu {
    position: fixed;
    top: 0; /* Ajusta según la altura del header */
    right: 0;
    background-color: #222;
    width: 250px;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-left: 0; /* quitar margen */
    z-index: 9999;
  }

  /* Menú visible cuando activo */
  .menu.activo {
    transform: translateX(0);
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
    margin: 0 10px;
    padding: 0;
  }

  .menu li {
    display: block;
    width: 100%;
  }

  .menu a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
  }
}

/* Otros estilos responsivos que tengas */
@media (max-width: 1024px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    padding-top: 200px;
  }

  .texto-hero {
    margin-right: 0;
  }

  .imagen-hero {
    margin-top: 20px;
  }

  .menu ul {
    gap: 15px;
  }
}


/* Hero Reyna */
.sobre-nosotros-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
  padding-top: 150px;
  padding-bottom: 100px;
}

.sobre-nosotros-texto {
  flex: 1.2;
  max-width: 650px;
  margin-right: 40px;
}

.sobre-nosotros-texto h2 {
  background-color: rgba(0, 0, 0, 0.6); 
  border: 2px solid rgba(128, 0, 128, 0.8); 
  box-shadow: 0 0 15px rgba(128, 0, 128, 0.8); 
  border-radius: 15px;
  padding: 30px;
  color: white;
  max-width: 650px;
}

.texto-sobre {
  width: 800px;       /* ancho fijo más amplio */
  min-width: 600px;   /* para que no se achique demasiado */
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(128, 0, 128, 0.8);
  box-shadow: 0 0 15px rgba(128, 0, 128, 0.8);
  border-radius: 15px;
  color: white;
  font-size: 1.3rem;   /* corregido */
  line-height: 1.5;
  text-align: center;
}

.texto-sobre h2 {
  font-size: 2.5rem;  /* corregido */
  margin-bottom: 25px;
  color: #9b30ff;          
}

/* Estilos para la imagen de Reyna */
.sobre-nosotros-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-nosotros-imagen img {
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 0 15px rgba(128, 0, 128, 0.8));
  transition: transform 0.3s ease;
}

.sobre-nosotros-imagen img:hover {
  transform: scale(1.05);  /* efecto hover para darle dinamismo */
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .sobre-nosotros-container {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .sobre-nosotros-texto {
    max-width: 100%;
    margin-right: 0;
    padding: 0 20px;
    text-align: center;
  }

  .texto-sobre {
    width: 100% !important;
    min-width: auto !important;
    padding: 20px !important;
  }

  .sobre-nosotros-imagen {
    margin-top: 30px;
  }

  .sobre-nosotros-imagen img {
    max-width: 80vw;
  }
}


/* SECCIÓN PAQUETES */
main.servicios {
  padding-bottom: 20px;
  margin-bottom: 20px; /* antes 60px y 0 */
  text-align: center;
}

main.servicios h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #00a8ff;
  text-shadow: 0 0 10px #00a8ff88;
}

.fila {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.paquete {
  background: rgba(30, 30, 30, 0.85);
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,123,255,0.3);
  transition: transform 0.3s ease;
  cursor: default;
}

.paquete:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.6);
}
.paquete.no-hover:hover {
  transform: none;
  box-shadow: 0 8px 20px rgba(0,123,255,0.3); /* como el original sin hover */
}

.paquete img {
  width: 100px;
  height: auto;
  margin-top: 18px;
  margin-bottom: 10px;
  border-radius: 10px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.paquete img:hover {
  transform: scale(1.1);
}

.paquete h3 {
  margin-bottom: 10px;
  color: #00a8ff;
}

.paquete p.precio {
  font-size: 2.5rem; /* antes 2.5rem */
  font-weight: 700;
  margin: 15px 0;
  color: #00d1ff; /* antes #00d1ff */
  text-shadow: 0 0 15px #00d1ffcc;
}
/* Descuento */
.paquete p.precio-descuento {
  color: #00d1ff;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 15px 0;
  text-shadow: 0 0 15px #00d1ffcc;
}
  

.promo-banner {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgb(0, 0, 0, 0.1);
  z-index: 999;
  animation: fadeInBanner 1s ease-in-out;
}

/* Para pantallas pequeñas */
@media (max-width: 600px) {
  #contador {
    font-size: 0.8rem;
    right: 8px !important;
    top: auto !important;
    bottom: 8px !important;
    transform: none !important;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
  }
}

.promo-banner {
  position: relative;
  padding-right: 140px; /* deja espacio a la derecha para el contador */
  font-size: 1rem;
  color: white;
  /* Otros estilos que ya tengas */
}

#contador {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 0 4px #00d1ff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* En pantallas pequeñas (móviles) */
@media (max-width: 600px) {
  .promo-banner {
    padding-right: 15px; /* elimina espacio derecho extra */
    padding-bottom: 40px; /* espacio debajo para el contador */
    text-align: center;
  }

  #contador {
    position: static;
    transform: none;
    margin-top: 10px;
    font-size: 0.85rem;
    justify-content: center;
    white-space: normal;
  }
}



@keyframes fadeInBanner {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.paquete p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #d1d1d1;
  letter-spacing: 0.02em;
}

.paquete ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 350px;
  text-align: left;
}

.paquete ul li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  color: #c7eaff;
}

.paquete ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00a8ff;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 0 0 5px #00a8ffcc;
}

.paquete a {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: linear-gradient(45deg, #007bff, #00d1ff);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0,123,255,0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.paquete a:hover {
  background: linear-gradient(45deg, #00d1ff, #007bff);
  box-shadow: 0 7px 20px rgba(0,212,255,0.7);
  cursor: pointer;
}

.paquete.no-hover:hover {
  transform: none;
  box-shadow: 0 8px 20px rgba(0,123,255,0.3); /* como el original sin hover */
}

/* Botones de PayPal */

[id$="-paypal-button"],
[id$="-card-button"] {
  margin-top: 20px;
  border-radius: 8px;       
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); 
  overflow: hidden;         
}


/* Sistema de codigo descuentos */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

.codigo-descuento-container {
  background-color: #0e0e0e;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.5);
  max-width: 320px;
  margin: 80px auto;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeInScale 0.7s ease forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.codigo-descuento-container p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 0 6px rgba(0, 123, 255, 0.7);
}

#codigo-input {
  padding: 10px 12px;
  border: 2px solid #007bff;
  border-radius: 6px;
  width: 85%;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #007bff;
  background-color: #1a1a1a;
  font-weight: 700;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 0 6px rgba(0, 123, 255, 0.2);
}

#codigo-input:focus {
  border-color: #00d1ff;
  box-shadow: 0 0 10px #00d1ff, inset 0 0 8px #007bff;
}

#aplicar-codigo {
  margin-top: 30px;
  padding: 14px 24px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}

#aplicar-codigo:hover {
  background-color: #00d1ff;
  box-shadow: 0 6px 14px rgba(0, 209, 255, 0.7);
}

#mensaje-codigo {
  margin-top: 10px;
  font-size: 1rem;
  color: #00ffcc;
  font-weight: 700;
  min-height: 24px;
}




/* SECCIÓN SOBRE NOSOTROS */
.sobre-nosotros {
  margin-top: 20px;
}

.coaching {
  padding: 4rem 2rem;
  background-color: #0d0d0d;
  color: #fff;
  margin-top: 4rem;
}

.coaching-contenido {
  max-width: 900px;
  margin: 0 auto;
}

.coaching h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #00ffff;
}

.coach-info {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


.bloque {
  margin-bottom: 2rem;
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 5px solid #00ffff;
}

.coaching a {
  display: inline-block;
  width: max-content;
  margin-top: 12px auto 0 auto;
  padding: 12px 20px;
  background: linear-gradient(45deg, #007bff, #00d1ff);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0,123,255,0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.coaching a:hover {
  background: linear-gradient(45deg, #00d1ff, #007bff);
  box-shadow: 0 7px 20px rgba(0,212,255,0.7);
  cursor: pointer;
}

.bloque h3 {
  margin-bottom: 0.8rem;
  color: #00e6e6;
}

.bloque p {
  font-weight: 700;       
  font-size: 1.1rem;       
  margin-bottom: 1rem;     
  color: #00a8ff;          
}

.bloque ul li {
  margin-bottom: 0.75rem;  
  padding-left: 1rem;      
}

.bloque ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-left: 0;
}

.bloque ul li {
  margin-bottom: 0.5rem;
}

#overlay-cargando {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-box {
  text-align: center;
  color: white;
  font-size: 1.5em;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #00AEEF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer */
footer {
  background-color: #1f1f1f;
  padding: 5px 10px; 
  text-align: center;
  font-size: 0.8em;
  margin-top: 0px;
  color: #888;
  letter-spacing: 0.03em;
  border-top: 1px solid #444;
  margin-top: auto;
  text-align: center;
  line-height: 1.1;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 50px; /* Más separación entre columnas */
  padding: 30px 20px;
  color: #ccc;
  text-align: left;
}

.footer-container > div {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-container h3 {
  color: #00a8ff;
  margin-bottom: 15px; /* Más separación debajo del título */
  font-size: 1.1rem;
}

.footer-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-container ul li {
  margin: 10px 0; /* Más separación entre elementos */
  font-size: 0.9rem;
}

.footer-container i {
  margin-right: 8px;
  color: #00a8ff;
}

.footer-container a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-container a:hover {
  color: #00d1ff;
  text-decoration: underline;
}

footer {
  background-color: #1f1f1f;
  padding: 35px 10px 20px;
  border-top: 1px solid #444;
  line-height: 1.6;
}

.copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.75rem;
  color: #777;
}
