/* Elimina márgenes y paddings generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #000b1d;
}



.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #6b7280; /* gris medio */
  opacity: 0.6;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: #4f46e5; /* violeta elegante */
  opacity: 1;
  transform: scale(1.2);
}



/* Navbar encabezado estilos */
.navbar-personal {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #00152b, #001e3c);
  padding: 0.8rem 2rem;
  height: 75px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: relative;
  z-index: 20;
}

.navbar-izquierda {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.link-inicio {
  color: #f6f6f6;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  transition: color 0.3s ease;
}

.link-inicio:hover {
  color: #f36f1d;
}

.navbar-espaciador {
  flex-grow: 1;
}

.navbar-derecha {
  display: flex;
  list-style: none;
  gap: 5rem;
  margin: 0;
  padding: 0;
  margin-left: 190px;
}

.navbar-derecha a {
  color: #f6f6f6;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  transition: color 0.3s ease;
}

.navbar-derecha a:hover {
  color: #f36f1d;
}

/* HERO VISUAL NUEVO */
.hero-visual {
  min-height: 100vh;
  background: linear-gradient(rgba(0,38,74,1), rgba(0,11,29,1));
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 649px;
  background-color: rgba(0, 11, 29, 1);
}

.hero-side-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 540px;
  height: 100%;
  background: url("../img/v2.png") center center / cover no-repeat;
}

.hero-content {
  position: absolute;
  top: 253px;
  left: 75px;
  width: 700px;
  z-index: 2;
}

.hero-titulo-nuevo {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  color: #f36f1d;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-content {
  text-align: center;
}

.hero-subtitulo-nuevo {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 600px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #f0f0f0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}





@media (min-width: 1233px) {
  .hero-titulo-nuevo {
    margin-top: -90px; /* ajustá este valor como quieras */
  }
}



.hero-subtitulo-nuevo {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  max-width: 600px;
}

.boton-hero-nuevo {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: linear-gradient(135deg, #f36f1d, #ff914d);
  color: #000b1d;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    
    margin-top: 3rem; /* Esto  baja el boton **/
}

.boton-hero-nuevo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 111, 29, 0.5);
}


/* Botón hamburguesa */
.navbar-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none; 
  color: #f6f6f6;
  cursor: pointer;
  z-index: 30;
}

/* Responsive solo en móviles */
@media (max-width: 1233px) {
  .navbar-personal {
    flex-wrap: wrap;
    height: auto;
  }

  .navbar-izquierda {
    width: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .navbar-toggle {
    display: block;
    margin-left: auto;
    z-index: 1001;
  }

  /* Oculta menú horizontal */
  .navbar-derecha {
    display: none !important;
  }

  /* Menú hamburguesa flotante */
  .menu-flotante {
    display: none;
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 320px;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(15, 15, 15, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    animation: menuFadeSlide 0.3s ease forwards;
  }

  .menu-flotante.active {
    display: block;
  }

  .menu-flotante ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .menu-flotante ul li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background 0.3s;
    text-align: center;
  }

  .menu-flotante ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f36f1d;
  }

  @keyframes menuFadeSlide {
    0% {
      opacity: 0;
      transform: translate(-50%, -10px);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
}

/* HERO responsive */
@media (max-width: 1233px) {
  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 20px; /* Reducido para eliminar el espacio vacío */
  }

  .hero-content {
    position: static;
    width: 90%;
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(3px);
  }

  .hero-side-image {
    display: none;
  }

  .hero-titulo-nuevo {
    font-size: 28px;
  }

  .hero-subtitulo-nuevo {
    font-size: 18px;
  }

  .boton-hero-nuevo {
    font-size: 16px;
    padding: 0.8rem 1.4rem;
    margin-top: 1.5rem; /* Más separación del texto */
  }

  .hero-overlay {
    display: none;
  }
}








.hero-extras {
  margin-top: 2.5rem;
  text-align: center;
}

.frase-final {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #ffffffcc;
  margin-bottom: 1rem;
  animation: aparecer 1.2s ease-in-out;
}

.iconos-hero {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #f6f6f6;
  background-color: rgba(255,255,255,0.03);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.icono-item {
  background-color: rgba(0,0,0,0.15);
  padding: 0.6rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.icono-item:hover {
  background-color: rgba(255,255,255,0.08);
}

@keyframes aparecer {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}







/* MENÚ OVERLAY MODAL FLOTANTE EN MOBILE */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.menu-overlay.active {
  display: flex;
}

.menu-box {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  max-width: 90%;
  width: 320px;
  text-align: center;
  position: relative;
}

.menu-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.menu-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  transition: color 0.2s ease;
}

.menu-links a:hover {
  color: #f36f1d;
}

/* SOLO APARECE EN MOBILE */
@media (min-width: 1233px) {
  .menu-overlay {
    display: none !important;
  }
}




/* Overlay simple que se activa en mobile */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 11, 29, 0.95);
  z-index: 999;
  padding-top: 120px;
  text-align: center;
}

.menu-overlay.active {
  display: block;
}

.menu-overlay .menu-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-links a {
  color: #ffffff;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #f36f1d;
}

/* Menú flotante justo debajo de la navbar */
.menu-flotante {
  display: none;
  position: absolute;
  top: 87px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 320px;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  animation: menuFadeSlide 0.3s ease forwards;

}
.menu-flotante.active {
  display: block;
}


.menu-flotante ul li a {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  text-transform: none;
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background 0.3s;
}

.menu-flotante ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@keyframes menuFadeSlide {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}





/* Solo en móvil */
@media (min-width: 1233px) {
  .menu-flotante {
    display: none !important;
  }
}

.menu-flotante ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.menu-flotante a {
  color: white;
  font-size: 18px;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
  text-align: center;
}

.menu-flotante a:hover {
  border-bottom: 2px solid #f36f1d;
  color: #f36f1d;
}







@media (max-width: 1233px) {
  .hero-visual {
    background: linear-gradient(to bottom, rgba(0,38,74,1), rgba(0,11,29,1)), 
                url("../assets/v2_20.png") center top / cover no-repeat;
  }

  .hero-overlay {
    background: rgba(0, 11, 29, 0.8); /* oscurece un poco el fondo */
  }

  .hero-content {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(3px);
  }
}
@media (max-width: 1233px) {
  .hero-deco {
    width: 60px;
    height: 4px;
    background: #f36f1d;
    margin: 0 auto 1rem auto;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(243, 111, 29, 0.5);
  }
}






/* Logo decorativo (solo visible en mobile) */
.hero-deco-icon {
  display: none;
}

@media (max-width: 1233px) {
  .hero-deco-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: logoFadeIn 1.2s ease-out forwards;
  }

  .hero-deco-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(243, 111, 29, 0.4);
    animation: glowLoop 2.5s ease-in-out infinite;
    transition: transform 0.3s ease;
  }

  @keyframes logoFadeIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes glowLoop {
    0%, 100% {
      box-shadow: 0 0 8px rgba(243, 111, 29, 0.4);
    }
    50% {
      box-shadow: 0 0 16px rgba(243, 111, 29, 0.8);
    }
  }
}



.navbar-derecha a,
.link-inicio,
.menu-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 1000;
  font-size: 15.5px;
  letter-spacing: 0.4px;
  text-transform: none;
}













.beneficios {
  background-color: #e1e2e2;
  padding: 3rem 2rem;
}

.lista-beneficios {
  list-style: none;
  font-size: 1.1rem;
  color: #374151;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  padding-left: 0;
}

.lista-beneficios li {
  margin-bottom: 1.2rem;
  padding-left: 2rem;
  position: relative;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.lista-beneficios li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #5b21b6;
  font-size: 1.2rem;
}

/* Animación secuencial */
.beneficio-animado {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s ease-out forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}










.contenedor {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.seccion-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #db0808; /* Azul gris muy oscuro */
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  line-height: 1.2;
}
.titulo-beneficios {
  background: linear-gradient(to right, #f97316, #7c3aed);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  display: inline-block;
  overflow: visible;
}
.titulo-beneficios::before {
  content: "🚀";
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  opacity: 0.95;
  animation: flotandoSuave 2.5s ease-in-out infinite;

  /* Reversión del degradado heredado */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
}

/* Estado inicial: oculto y abajo */
.titulo-beneficios {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Cuando tenga .in-view: se desvanece y sube */
.titulo-beneficios.in-view {
  opacity: 1;
  transform: translateY(0);
}


@keyframes flotandoSuave {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(-8px); }
  100% { transform: translateX(-50%) translateY(0); }
}






  /* Precio de lanzamiento de landingPage*/

  /* Precio de lanzamiento */
.precio {
  background: linear-gradient(to right, #1f2937, #111827); /* fondo oscuro tech */
  padding: 4rem 2rem;
  color: #f3f4f6; /* texto claro */
  text-align: center;
  border-top: 4px solid #f97316;
  border-bottom: 4px solid #7c3aed;
}

.precio-texto {
  color: #facc15; /* dorado moderno */
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.titulo-precio {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 1rem;
  letter-spacing: -0.5px;
  color: #facc15; /* fallback si el degradado no carga */
}

/* 🔥 Ícono flotante arriba */
.titulo-precio::before {
  content: "🔥";
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  animation: flotandoSuave 2.5s ease-in-out infinite;

  /* ✅ Forzar visibilidad y nitidez */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
  color: #f97316;
}

/* Línea decorativa abajo */
.titulo-precio::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #f97316, #7c3aed);
  margin: 12px auto 0;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

/* 🌈 Degradado blanco → violeta */
.degradado-precio {
  background: linear-gradient(to right, #ffffff, #1a0285);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.nota-legal {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-top: 0;
  margin-bottom: 25px;
}

.metodos-pago {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.boton-pago {
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.boton-pago:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.boton-pago.mp {
  background: linear-gradient(135deg, #005EFF, #0041c9);
}

.boton-pago.paypal {
  background: linear-gradient(135deg, #003087, #001f5b);
}

.boton-pago.transferencia {
  background: linear-gradient(135deg, #16a34a, #065f2c);
}

.nota {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #94a3b8;
}





/* Courrusel */


.carrousel-portafolio {
  background-color: #ffffff;
}

.titulo-carrusel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  position: relative;
}

.titulo-carrusel::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #f97316, #7c3aed);
  margin: 12px auto 0;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

.carousel-inner img {
  object-fit: cover;
  max-height:1000px;
  border-radius: 12px;
}


.bg-caption {
  background-color: rgba(0, 0, 0, 0.5); /* fondo semi-transparente */
  padding: 0.8rem 1rem;
  border-radius: 80px;
  font-size: 10rem;
  max-width: 40%;
  margin: 0 auto;
}
/* Flechas de navegación del carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(20%) sepia(100%) saturate(400%) hue-rotate(250deg); /* violeta oscuro */
}


.carousel-indicators [data-bs-target] {
  margin: 0 4px;
}

.carousel-indicators [data-bs-target] {
  margin: 0 4px;
}

.carousel-caption h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f3f4f6;
}

.carousel-caption p {
  font-size: 0.95rem;
  color: #d1d5db;
  margin-bottom: 0;
}















/* Caja ¿Qué es una Landing Page? */
.info-landing {
  background: linear-gradient(to bottom right, #1e1e2e, #111827);
  padding: 3rem 2rem;
  color: #f3f4f6;
  border-radius: 20px;
  margin: 3rem auto 2rem;
  max-width: 800px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
}


.seccion-titulo0 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  color: #062768; /* fallback si el degradado no carga */
}

/* 💡 Ícono flotante arriba */
.seccion-titulo0::before {
  content: "💡";
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  animation: flotandoSuave 2.5s ease-in-out infinite;

  /* 👇 Esto corrige la herencia del degradado */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
  color: #facc15;
}


/* Línea decorativa abajo */
.seccion-titulo0::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #8b16f9, #1a0285);
  margin: 12px auto 0;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(139, 22, 249, 0.4);
}

/* 🌈 Degradado blanco → violeta */
.degradado-landing {
  background: linear-gradient(to right, #ffffff, #1a0285);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Animación flotante suave */
@keyframes flotandoSuave {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}












.texto-info {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #cbd5e1;
}

.seccion-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  color: #f3f4f6;
}

.titulo-landing::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #f97316, #fb923c);
  margin: 12px auto 0;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}



.contacto {
  padding: 3rem 2rem;
  background-color: #f3f4f6;
}

.contacto {
  padding: 3rem 2rem;
  background-color: #f3f4f6;
}

.boton-wsp,
.boton-mail {
  display: inline-block;
  margin: 1rem 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #257041);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.boton-mail {
  background: linear-gradient(135deg, #3b82f6, #02246d);
}

.boton-wsp:hover,
.boton-mail:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15),
              0 0 10px rgba(249, 115, 22, 0.3); /* glow leve */
}


.seccion-titul0 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  color: #062768;
}

/* Ícono ❓ flotando arriba */
.seccion-titul0::before {
  content: "❓";
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: #8b16f9; /* mismo tono violeta del degradado */
  animation: flotandoSuave 2.5s ease-in-out infinite;
  text-shadow: 0 0 6px rgba(139, 22, 249, 0.3); /* sutil brillo */
}

/* Línea decorativa inferior */
.seccion-titul0::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #8b16f9, #1a0285);
  margin: 12px auto 0;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

/* Animación flotante */
@keyframes flotandoSuave {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}





.footerindex {
  background-color: #0f172a;
  padding: 2rem 1rem;
  text-align: center;
  color: #000000;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgb(0, 0, 0);
  margin-top: 4rem;
}

.footerindex p {
  margin: 0;
}
/* ---------------------------------- Abajo estilos para testimonios  ---------------------------------*/


.seccion-testimonios {
  padding: 4rem 1rem;
  background: linear-gradient(to right, #0f172a, #000b1d);
  font-family: 'Poppins', sans-serif;
}

.titulo-testimonios {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #f3f4f6;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.titulo-testimonios::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(to right, #f97316, #7c3aed);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

.contenedor-testimonios {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.testimonio {
  display: flex;
  gap: 1rem;
  background-color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.testimonio:hover {
  transform: translateY(-5px);
}

.avatar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #f97316; 
  border: 2px solid #7c3aed; /* violeta elegante */
  box-shadow: 0 0 6px rgba(124, 58, 237, 0.4); /* glow suave */
  
}

.contenido-testimonio {
  flex: 1;
}

.nombre-testimonio {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #facc15;
}

.tiempo {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 4px 0 10px;
}

.texto {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.5;
}

/* Flecha flotante */
.flecha-arriba {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(to right, #f97316, #7c3aed);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
  z-index: 100;
  transition: transform 0.3s ease;
}

.flecha-arriba:hover {
  transform: scale(1.1);
}









.bodyinicio {
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  font-family: 'Poppins', sans-serif;
  color: #f3f4f6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
  
.container {
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: #1f1f1f;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.03);
}

/* TOOLTIP moderno */
.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%; /* aparece arriba del botón */
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e293b;
  color: #f1f5f9;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* Flechita del tooltip */
.tooltip::before {
  content: "";
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1e293b;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mostrar tooltip al hacer hover */
.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
}



  .titulo-principal {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #f43f5e, #f97316, #facc15); /* rojo → naranja → amarillo */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .arroba {
    color: #facc15;
  }
  .nombre {
    background: linear-gradient(to right, #facc15, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .borde-perfil {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #facc15, #f97316);
    margin: 0 auto 1.5rem;
    position: relative;
    animation: brilloPerfil 4s ease-in-out infinite alternate;
  }
  
  @keyframes brilloPerfil {
    from {
      box-shadow: 0 0 8px #facc15;
    }
    to {
      box-shadow: 0 0 18px #f97316;
    }
  }

  .borde-perfil img.perfil {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  
  
  h1 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
  }
  
  /* Descripción */
.descripcion {
  font-size: 1.05rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}
  
  
  .links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  
  
  .footerindex {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
    background-color: #0e0e0e; /* mismo tono final del body */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* línea sutil */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.6);

  }
  
  
  
  



  .boton-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    animation-timing-function: ease-out;
  }
  
  .boton-wrapper:nth-child(1) { animation-delay: 0.3s; }
  .boton-wrapper:nth-child(2) { animation-delay: 0.5s; }
  .boton-wrapper:nth-child(3) { animation-delay: 0.7s; }
  .boton-wrapper:nth-child(4) { animation-delay: 0.9s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .boton-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(72, 61, 139, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
   
  }
  
  /* ✨ Brillo que cruza */
  .boton-link::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%
    );
    transform: rotate(25deg);
    transition: all 0.6s ease;
    pointer-events: none;
    opacity: 0;
  }
  
  .boton-link:hover::after {
    left: 100%;
    top: 100%;
    opacity: 1;
  }
  
  .boton-link:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 25px rgba(138, 43, 226, 0.35);
  }
  
  
  
  


  


  .container {
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: aparecer 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  @keyframes aparecer {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .boton {
    transition: transform 0.2s ease, background 0.3s ease;
  }
  
  .boton:hover {
    transform: scale(1.03);
    background-color: #fffb00;
    box-shadow: 0 0 15px #facc15;
    transform: translateY(-2px);
  }


  /* Estilos del botón */
.boton-tema {
  background-color: #facc15;
  color: #111827;
  border: none;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton-tema:hover {
  background-color: #eab308;
}


.redes-sociales {
  margin-top: 2rem;
}

.redes-sociales a {
  font-size: 1.8rem;
  margin: 0 0.6rem;
  transition: transform 0.3s ease;
}

/* Color verde para WhatsApp */
.icono-wpp {
  color: #25d366;
}

/* Gradiente original de Instagram */
.icono-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.redes-sociales a:hover {
  transform: scale(1.2);
}













body.modo-oscuro {
  background: linear-gradient(to bottom, #111827, #1f2937);
  color: #ffffff;
}

body.modo-claro {
  background: linear-gradient(to bottom, #f9fafb, #e5e7eb);
  color: #1f2937;
}

/* === BOTÓN EN MODO CLARO – Estilo SUTIL Y PROFESIONAL === */
.modo-claro .boton-link {
  background: linear-gradient(135deg, #f4f4f5, #e5e7eb); /* gris cálido sutil */
  color: #111827;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  z-index: 1;
}

.modo-claro .boton-link:hover {
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* === SHINE BRILLO EN HOVER === */
.modo-claro .boton-link::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: all 0.6s ease;
  pointer-events: none;
  opacity: 0.6;
  filter: blur(1px);
}

.modo-claro .boton-link:hover::after {
  left: 100%;
  top: 100%;
  opacity: 1;
}

/* === LUZ AMBIENTE CONTINUA ELEGANTE === */
.modo-claro .boton-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 220%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.13) 50%,
    transparent 80%
  );
  animation: ambientLight 6s linear infinite;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px);
}

@keyframes ambientLight {
  0% {
    left: -60%;
  }
  100% {
    left: 60%;
  }
}

/* === CONTENIDO DEL BOTÓN ARRIBA DEL EFECTO === */
.modo-claro .boton-link span,
.modo-claro .boton-link i {
  position: relative;
  z-index: 1;
}





/* Contenedor del botón con espacio arriba y fondo personalizado */
.box-tema {
  margin: 1.2rem auto;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  width: fit-content;
}

/* Estilos del botón */
.boton-tema {
  background-color: #facc15;
  color: #111827;
  border: none;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton-tema:hover {
  background-color: #eab308;
}

















/* ---------------------------Abajo estan los estilos para cursos.html -------------------------------------- */



/* Intro principal de los cursos */

/* ======================
   CURSOS – ESTILO PRO+
   ====================== */

/* Intro con video destacado */
.intro-cursos-video {
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  color: #1e1e1e;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contenedor-video-box {
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.titulo-principal-video {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.descripcion-principal-video {
  font-size: 1.15rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.boton-video {
  display: inline-block;
  margin-top: 2.5rem;
  background: linear-gradient(to right, #ef4444, #dc2626);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  transition: all 0.3s ease;
}

.boton-video:hover {
  background: #b91c1c;
  box-shadow: 0 0 15px #dc2626;
  transform: scale(1.05);
}












/* Cursos */
.seccion-cursos {
  background-color: #111827;
  padding: 4rem 2rem;
}

.card-curso-mejorado {
  background: #1f2937;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-curso-mejorado:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.15);
}

.titulo-curso-mejorado {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.texto-curso-mejorado {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
}

.lista-modulos-mejorada {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  color: #38bdf8;
}

.lista-modulos-mejorada li {
  margin-bottom: 0.4rem;
}

.boton-curso-mejorado {
  display: inline-block;
  margin: 1.5rem auto 0 auto; /* agrega separación arriba y lo centra horizontalmente */
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #dc2626; /* rojo fuerte */
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.boton-curso-mejorado:hover {
  background-color: #b91c1c; /* tono más oscuro al pasar el mouse */
}


.instruccion-curso-mejorado {
  font-size: 0.9rem;
  color: #f8f3ff;
  margin-top: 0.6rem;
  margin-bottom: 0.8rem; /* ⬅️ bajamos el espacio hacia el botón */

}

.palabra-clave {
  color: #c70000;
  font-weight: bold;
  font-size: 1.05rem;
  text-shadow: 0 0 5px rgb(181, 0, 252);
  border-bottom: 0.9px dashed #c70000;
  padding-bottom: 0.1rem;
  
}


.curso-contenido {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.icono-curso {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.3rem;
  transform: translate(-40px, 20px); /* (x, y) → mueve 10px a la derecha y 5px hacia arriba */

}


.imagen-curso {
  width: 50px;
  height: auto;
  transform: translate(20px, 30px); /* Mueve a la derecha y hacia abajo en desktop */
}

/* Mobile: reseteamos completamente y agregamos espacio */
@media (max-width: 768px) {
  .curso-header {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .imagen-curso {
    transform: none !important; /* 🔥 fuerza el reset del translate */
    margin-inline: 9rem;      /* 🔛 espacio a los costados */
    display: block;
  }
}

@media (max-width: 768px) {
  .curso-contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icono-curso {
    transform: none !important;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}








/* Beneficios */
/* ==== Variables y base ==== */
.seccion-beneficios {
  background-color: #1a1a1a;
  color: #fff;
}

.beneficio-item {
  background: #262626;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.beneficio-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.beneficio-icono {
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.25rem;
  color: #22d3ee;
}

.beneficio-titulo {
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
}

.beneficio-texto {
  font-size: 0.95rem;
  line-height: 1.6;
}














/* FAQ */
.seccion-faq {
  background-color: #0f172a;
  padding: 4rem 2rem;
  color: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.titulo-faq {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #facc15;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 3px solid #f97316;
  padding-bottom: 0.5rem;
}

.faq-contenedor {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #1e293b;
  border-radius: 12px;
  border: 1px solid #334155;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.04);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

.faq-pregunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  width: 100%;
  background: none;
  border: none;
  color: #f8f538;
  font-size: 1.05rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.faq-pregunta:hover {
  background-color: #1a2536;
}

.faq-pregunta span {
  flex: 1;
  text-align: left;
  padding-left: 0.5rem;
}

.icono-faq {
  color: #facc15;
  font-size: 1.1rem;
  margin-right: 1rem;
  min-width: 20px;
}

.icono-toggle {
  color: #facc15;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.activo .icono-toggle {
  transform: rotate(180deg);
}

.faq-respuesta {
  background-color: #1c1f2b;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  transition: all 0.4s ease;
  pointer-events: none;
}

.faq-item.activo .faq-respuesta {
  max-height: 400px;
  opacity: 1;
  padding: 1rem 1.5rem;
  pointer-events: all;
}

.faq-respuesta p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #f3f4f6;
}



.icono-faq {
  margin-right: 0.8rem;
  color: #facc15;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.boton-instagram {
  background: linear-gradient(90deg, #f97316, #facc15);
  color: #0f172a;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.boton-instagram:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
  color: #000;
}



.faq-listado-extra {
  background-color: #0f172a;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin: 0.5rem auto 0 auto;  /* solo un poco de espacio arriba y centrado */
  max-width: 360px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}



.faq-listado-extra ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-listado-extra li {
  color: #f1f5f9;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}








/* RESPONSIVE */
@media (max-width: 480px) {
  .titulo-principal-video {
    font-size: 2rem;
  }

  .titulo-beneficios {
    font-size: 1.5rem;
  }

  .boton-curso,
  .boton-video {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

.card-curso-mejorado {
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  
    display: flex;
    flex-direction: column;
    align-items: center; /* centra hijos como el botón */
  
  
}

.card-curso-mejorado:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 255, 255, 0.15);
}

.card-header {
  margin-bottom: 1.5rem;
}

.titulo-curso-mejorado {
  font-size: 1.6rem;
  color: #facc15;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.texto-curso-mejorado {
  font-size: 1rem;
  color: #dddddd;
  line-height: 1.6;
}

.lista-modulos-mejorada {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0 1.5rem;
  color: #facc15;
  line-height: 1.8;
}

.lista-modulos-mejorada li {
  margin-bottom: 0.4rem;
}










/*------------------------------------- estilos para la seccion Para quien es  -------------------------------- */

.publico-target {
  background-color: #f9fafb;
  color: #1f2937;
  padding: 5rem 2rem;
  text-align: center;
}

.contenedor-target {
  max-width: 1100px;
  margin: 0 auto;
}

.titulo-target {
  font-size: 2.3rem;
  font-family: 'Poppins', sans-serif;
  color: #111827;
  margin-bottom: 1rem;
}

.subtitulo-target {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.grilla-target {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}

.target-item {
  background-color: #ffffff; /* blanco puro */
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* sombra más marcada */
  border: 1px solid #e5e7eb; /* borde sutil para recorte visual */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12); /* sombra más fuerte al hacer hover */
}


.icono-target {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  color: #0ea5e9;
}

.target-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.target-item p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .grilla-target {
    text-align: center; /* centramos texto en mobile */
  }

  .icono-target {
    margin: 0 auto 1rem auto;
    display: inline-block;
    float: none;
  }

  .target-item h3,
  .target-item p {
    text-align: center;
  }
}













.cierre-urgencia-final {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f1f5f9;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.titulo-cierre {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #facc15;
  margin-bottom: 1.2rem;
}

.texto-cierre {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #e5e7eb;
}

.nota-cierre {
  font-size: 0.95rem;
  color: #94a3b8;
  font-style: italic;
}




/*--------------------------------- Estilos Para El Documento Reunion.html --------------------------*/


@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0d6efd;
  --dark: #1e293b;
  --gray: #6b7280;
  --light: #f8fafc;
  --bg: #f1f5f9;
  --radius: 1rem;
  --shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* HERO */
.reunion-hero {
  background: linear-gradient(135deg, #fdfbfb, #e2e8f0);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.reunion-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #93c5fd 0%, transparent 70%);
  opacity: 0.4;
  z-index: 0;
}

.reunion-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.reunion-hero p {
  font-size: 1.125rem;
  max-width: 680px;
  margin: 0 auto;
  color: var(--gray);
  margin-top: 1rem;
  z-index: 1;
  position: relative;
}

/* BENEFICIOS */
.reunion-beneficios {
  padding: 4rem 1rem;
  background-color: white;
}

.reunion-beneficios-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1140px;
  margin: auto;
}

.reunion-beneficio-card {
  background-color: var(--light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.reunion-beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.reunion-beneficio-card .icono {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.reunion-beneficio-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.reunion-beneficio-card p {
  font-size: 1rem;
  color: var(--gray);
}

/* FORMULARIO */
.reunion-formulario {
  padding: 5rem 1rem;
  background-color: var(--bg);
}

.reunion-form-container {
  max-width: 560px;
  margin: auto;
  background-color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reunion-form-container h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.reunion-form-container button {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.reunion-form-container button:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
}

/* FOOTER */
.footerindex {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #1e293b;
  color: #e2e8f0;
  font-size: 0.875rem;
}

/* RESPONSIVO */
@media (max-width: 576px) {
  .reunion-hero h1 {
    font-size: 2rem;
  }
  .reunion-hero p {
    font-size: 1rem;
  }
  .reunion-form-container {
    padding: 2rem 1.2rem;
  }
}

html, body {
  background: linear-gradient(160deg, #000b1d, #010e1f 70%);
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #f8fafc;
}


.reunion-box-negra {
  background: linear-gradient(to bottom right, #0f172a, #0b1120);
  padding: 4rem 3rem;
  margin: 5rem auto;
  border-radius: 24px;
  max-width: 960px;
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.6),
    0 10px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reunion-box-negra:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 30px rgba(0, 0, 0, 0.7),
    0 12px 60px rgba(0, 0, 0, 0.9);
}



.titulo-con-icono {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: -2rem; /* lo sube visualmente */
}

.icono-hero {
  font-size: 3rem;
  color: #facc15; /* amarillo dorado tech */
  animation: flotar 3s ease-in-out infinite;
}

@keyframes flotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}












.reunion-hero-pro {
  background: linear-gradient(to right, #001e3c, #000b1d);
  padding: 5rem 2rem;
  color: #f3f4f6;
  text-align: center;
}

.reunion-hero-pro .titulo-principal {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
  color: #facc15;
}

.reunion-hero-pro .subtitulo-hero {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

/* === 1. MOBILE-FIRST: swipe horizontal === */
.reunion-beneficios-pro.expert {
  background: #0a0f1e;
  padding: 2rem 0;
  color: #f8fafc;
}
.contenedor-beneficios {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
  padding-top: -90rem;
}
.titulo-beneficios {
  font-size: 1.8rem;
  margin-bottom: 7.5rem;
  color: #38bdf8;
  font-weight: 600;
}
.grid-beneficios {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.beneficio-item {
  flex: 0 0 80%;
  scroll-snap-align: start;
  background: #111827;
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  touch-action: manipulation;
}
.beneficio-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.beneficio-item:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.icono-beneficio {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #facc15;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%    { transform: translateY(-6px); }
}
.beneficio-titulo {
  font-size: 1.2rem;
  color: #facc15;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.beneficio-texto {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.4;
}

/* === 2. TABLET (≥600px): dos columnas === */
@media (min-width: 600px) {
  .grid-beneficios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 1.5rem;
    padding: 0;
  }
  .beneficio-item {
    flex: none;
    padding: 2rem 1.5rem;
  }
  .titulo-beneficios {
    font-size: 2.2rem;
  }
  .beneficio-titulo { font-size: 1.3rem; }
  .beneficio-texto  { font-size: 1rem; }
}

/* === 3. DESKTOP (≥1024px): grid 3 columnas + hover 3D === */
@media (min-width: 1024px) {
  .reunion-beneficios-pro.expert {
    padding: 4rem 2rem;
  }
  .contenedor-beneficios {
    max-width: 1100px;
    margin: auto;
  }
  .grid-beneficios {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .titulo-beneficios {
    font-size: 2.8rem;
    color: #facc15;
  }
  .beneficio-item {
    background: linear-gradient(145deg, #111827, #1e293b);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow:
      0 6px 24px rgba(0,0,0,0.5),
      inset 0 0 8px rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .beneficio-item:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow:
      0 12px 48px rgba(0,0,0,0.7),
      inset 0 0 12px rgba(255,255,255,0.07);
  }
  .icono-beneficio {
    font-size: 3.2rem;
    color: #38bdf8;
  }
  .beneficio-titulo { font-size: 1.5rem; }
  .beneficio-texto  { font-size: 1.05rem; }
}












/* === MOBILE-FIRST === */
.reunion-pasos-pro {
  background: #0a0f1e;
  padding: 3rem 1rem;
}
.contenedor-pasos {
  max-width: 100%;
  margin: 0 auto;
}
.pasos-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #38bdf8;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pasos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.pasos-lista::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: linear-gradient(#38bdf8, #facc15);
}
.paso-item {
  position: relative;
  margin-left: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  background: #111827;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.paso-item::before {
  content: attr(data-step);
  position: absolute;
  top: 1.5rem;
  left: -2.25rem;
  width: 32px;
  height: 32px;
  background: #38bdf8;
  color: #0a0f1e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #facc15;
}
.paso-icono {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #facc15;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%    { transform: translateY(-4px);}
}
.paso-heading {
  font-size: 1.1rem;
  color: #facc15;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.paso-texto {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.4;
}
.pasos-titulo.in-view,
.paso-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.paso-item:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* === TABLET (≥600px) - dos columnas === */
@media (min-width: 600px) {
  .pasos-lista {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
  }
  .pasos-lista::before { display: none; }
  .paso-item {
    margin: 0;
    padding: 2rem 1.5rem;
  }
  .paso-item::before {
    left: calc(50% - 16px);
    top: -1.25rem;
  }
}

/* === DESKTOP (≥1024px) - cuatro columnas === */
@media (min-width: 1024px) {
  .reunion-pasos-pro {
    padding: 4rem 2rem;
  }
  .contenedor-pasos { max-width: 1100px; margin: auto; }
  .pasos-lista {
    grid-template-columns: repeat(4,1fr);
    gap: 2.5rem;
  }
  .paso-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .paso-item::before {
    position: static;
    margin: 0 auto 1rem;
  }
  .paso-heading { font-size: 1.3rem; }
  .paso-texto { font-size: 1.05rem; }
}

















.reunion-formulario-pro {
  padding: 4rem 2rem;
  background: #f3f4f6;
}

.reunion-formulario-pro form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.reunion-formulario-pro .form-group input,
.reunion-formulario-pro .form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}






/* === Overrides amarillo para "¿Cómo es el proceso?" (reunion.html) === */
.reunion-pasos-pro .pasos-titulo {
  color: #facc15; /* título amarillo */
}

.reunion-pasos-pro .pasos-lista::before {
  /* línea vertical en amarillo sólido (sin degradado) */
  background: #facc15;
}

.reunion-pasos-pro .paso-item {
  /* borde sutil para remarcar las tarjetas en el tema oscuro */
  border: 1px solid rgba(250, 204, 21, 0.20);
}

.reunion-pasos-pro .paso-item::before {
  /* circulito del número en amarillo */
  background: #facc15;
  border-color: #facc15;
  color: #0a0f1e; /* número oscuro sobre amarillo */
}

.reunion-pasos-pro .paso-icono,
.reunion-pasos-pro .paso-heading {
  /* ya eran amarillos; lo reafirmamos por si algún estilo previo los pisa */
  color: #facc15;
}

/* Si en algún paso usás SVGs como iconos (no emojis), aseguramos amarillo */
.reunion-pasos-pro .paso-icono svg {
  fill: #facc15;
  stroke: #facc15;
}




/* === Iconos SVG para "¿Cómo es el proceso?" === */
/* Aseguramos la paleta amarilla de tus pasos (por si otro estilo los pisa) */
.reunion-pasos-pro .paso-icono { 
  color: #facc15;
}

/* Tamaño y comportamiento de los SVG */
.reunion-pasos-pro .paso-icono-svg {
  width: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
}

/* Los trazos del SVG toman el color actual (amarillo) y sin relleno */
.reunion-pasos-pro .paso-icono-svg,
.reunion-pasos-pro .paso-icono-svg * {
  stroke: currentColor;
  fill: none;
}

@media (min-width: 1024px) {
  .reunion-pasos-pro .paso-icono-svg { width: 44px; height: 44px; }
}

/* Un poco más grandes */
.reunion-pasos-pro .paso-icono-svg {
  width: clamp(48px, 5vw, 82px) !important;
  height: clamp(48px, 5vw, 82px) !important;
}





/* === Tarjetas porque una reunion deslizante  === */




/* === Carrusel auto-deslizante para "¿Por qué tener una reunión?" === */
.reunion-beneficios-pro .grid-beneficios {
  display: flex;                  /* de grilla a carrusel horizontal */
  gap: 1.25rem;                   /* espacio entre tarjetas */
  overflow: hidden;               /* ocultamos lo que se sale */
  scroll-snap-type: x mandatory;  /* snap al inicio de cada tarjeta */
  scroll-behavior: smooth;        /* desplazamiento suave */
  -ms-overflow-style: none;       /* IE/Edge */
  scrollbar-width: none;          /* Firefox */
}
.reunion-beneficios-pro .grid-beneficios::-webkit-scrollbar { display: none; }

/* Cada tarjeta ocupa un ancho "responsivo" */
.reunion-beneficios-pro .beneficio-item {
  scroll-snap-align: start;
  flex: 0 0 90%;      /* móvil: 1 tarjeta por “vista” */
  min-width: 0;       /* evita desbordes raros */
}

/* Tablet: ~2 tarjetas por vista */
@media (min-width: 768px) {
  .reunion-beneficios-pro .beneficio-item { flex-basis: 48%; }
}

/* Desktop: ~3 tarjetas por vista */
@media (min-width: 1200px) {
  .reunion-beneficios-pro .beneficio-item { flex-basis: 31%; }
}

/* Respeto a usuarios con menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .reunion-beneficios-pro .grid-beneficios {
    scroll-behavior: auto;
  }
}
