.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* --- CSS GLOBAL: Estilo VSL Oscuro --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
  --azul-logo: #06318E;
  --azul-oscuro: #020D26; /* Fondo principal oscuro */
  --rojo-logo: #DE0000;
  --rojo-brillo: rgba(222, 0, 0, 0.4);
  --blanco: #FFFFFF;
  --gris-texto: #B0B8C9;
  --fuente-marketing: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--fuente-marketing); }

body { background-color: var(--azul-oscuro); color: var(--blanco); line-height: 1.6; overflow-x: hidden; }

/* Utilidades Textos */
.text-rojo { color: var(--rojo-logo); }
.text-azul { color: #4DA1FF; /* Un azul más claro para contrastar en fondo oscuro */ }
.text-center { text-align: center; }

/* Botones VSL (Estilo Hotmart/Skool) */
.btn-vsl {
  display: inline-block;
  background: linear-gradient(135deg, #FF1A1A, var(--rojo-logo));
  color: var(--blanco);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #FF4D4D;
  box-shadow: 0 0 20px var(--rojo-brillo);
  transition: all 0.3s ease;
  animation: pulse-red 2s infinite;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}

.btn-vsl:hover { transform: scale(1.05); box-shadow: 0 0 40px var(--rojo-brillo); }

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(222, 0, 0, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(222, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(222, 0, 0, 0); }
}

/* Efecto Cristal (Glassmorphism) para tarjetas */
.glass-card {
  background: rgba(6, 49, 142, 0.1); /* Azul del logo muy transparente */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}


/* --- CSS: Quiz Interactivo (Sección 2) --- */
.interactive-quiz-container { background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 30px; max-width: 800px; margin: 0 auto; }
.quiz-question-block { margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; }
.quiz-question-block:last-child { border-bottom: none; }
.quiz-question-title { color: var(--blanco); font-size: 1.1rem; font-weight: bold; margin-bottom: 15px; }

/* Estilo de los botones de respuesta */
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option { position: relative; }
.quiz-option input[type="radio"] { display: none; /* Ocultamos el círculo nativo */ }
.quiz-option label { display: block; padding: 15px 20px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: var(--gris-texto); cursor: pointer; transition: all 0.3s ease; }
.quiz-option label:hover { background: rgba(255, 255, 255, 0.1); }

/* Cuando el usuario selecciona una opción */
.quiz-option input[type="radio"]:checked + label { background: rgba(6, 49, 142, 0.4); border-color: var(--rojo-logo); color: var(--blanco); box-shadow: 0 0 15px rgba(222, 0, 0, 0.3); font-weight: bold; }

/* Campos de captura de datos al final del quiz */
.quiz-lead-capture { background: rgba(6, 49, 142, 0.2); border-radius: 8px; padding: 20px; margin-top: 30px; border: 1px solid var(--rojo-logo); text-align: center; }
.quiz-lead-capture h4 { color: var(--blanco); margin-bottom: 15px; font-size: 1.2rem; }

/* Sección 3: Formulario Dark Glass */
.dark-form-container { max-width: 600px; margin: 0 auto; text-align: center; }
.dark-input { width: 100%; padding: 18px; margin-bottom: 15px; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; color: var(--blanco); font-size: 1rem; transition: 0.3s; }
.dark-input:focus { outline: none; border-color: var(--rojo-logo); box-shadow: 0 0 10px rgba(222,0,0,0.5); }
.dark-input::placeholder { color: #888; }

/* Sección 5: Testimonios Grid */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 30px; }
.video-testimonial-dark { aspect-ratio: 9/16; background: #000; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--gris-texto); box-shadow: 0 10px 20px rgba(0,0,0,0.5); position: relative; overflow: hidden; }
.video-testimonial-dark::after { content: '▶'; position: absolute; font-size: 2rem; color: rgba(255,255,255,0.7); }

/* Sección 7: Footer y Flotantes */
.dark-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 5%; text-align: center; margin-top: 4rem; color: var(--gris-texto); font-size: 0.9rem; }

.vsl-popup { position: fixed; bottom: 20px; left: -350px; width: 300px; background: rgba(2, 13, 38, 0.95); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-left: 4px solid #00FF00; border-radius: 8px; padding: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); z-index: 9998; transition: left 0.5s ease; display: flex; align-items: center; gap: 15px; color: var(--blanco); font-size: 0.85rem; }
.vsl-popup.show { left: 20px; }
.vsl-wsp-float { position: fixed; bottom: 20px; right: 20px; background: #25D366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; text-decoration: none; z-index: 9999; box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); transition: transform 0.3s; }
.vsl-wsp-float:hover { transform: scale(1.1); }

/* --- CSS: Slider de Testimonios VERTICALES BLINDADO --- */
.testimonios-slider-section { 
  padding: 4rem 5%; 
  max-width: 1000px; 
  margin: 0 auto; 
  overflow: hidden; 
}

/* Forzamos el tamaño del slide para que no colapse */
.swiper-slide { 
  width: 280px !important; 
  height: 500px !important; /* Altura fija para evitar el espacio gigante */
  transition: transform 0.6s ease; 
  opacity: 0.4; 
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide-active { 
  opacity: 1; 
  transform: scale(1.05); 
  z-index: 2; 
}

/* Contenedor del video YouTube (Formato Short 9:16) */
.video-youtube-container { 
  position: relative; 
  width: 100%;
  height: 100%;
  border-radius: 12px; 
  overflow: hidden; 
  background: #000; 
  border: 1px solid rgba(255,255,255,0.1); 
  box-shadow: 0 10px 20px rgba(0,0,0,0.5); 
}
.video-youtube-container iframe { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}

/* Espaciado del slider */
.swiper-testimonios { padding-bottom: 60px !important; }

/* Flechas y Puntos */
.swiper-button-next, .swiper-button-prev { color: var(--rojo-logo, #DE0000) !important; background: rgba(0,0,0,0.5); padding: 30px 20px; border-radius: 8px; }
.swiper-pagination-bullet { background: #FFFFFF !important; opacity: 0.5; width: 12px; height: 12px; }
.swiper-pagination-bullet-active { background: var(--rojo-logo, #DE0000) !important; opacity: 1; box-shadow: 0 0 10px rgba(222,0,0,0.5); }

/* Flechas y Paginación (Puntitos) en Rojo Logo */
.swiper-button-next, .swiper-button-prev { color: var(--rojo-logo) !important; background: rgba(0,0,0,0.5); padding: 30px 20px; border-radius: 8px; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: rgba(222, 0, 0, 0.2); }
.swiper-pagination-bullet { background: var(--blanco) !important; opacity: 0.5; width: 12px; height: 12px; }
.swiper-pagination-bullet-active { background: var(--rojo-logo) !important; opacity: 1; box-shadow: 0 0 10px var(--rojo-brillo); }


/* --- CSS: Sección Compartir y Footer Moderno (Dark VSL) --- */

/* Sección Compartir */
.share-section { padding: 4rem 5%; text-align: center; max-width: 800px; margin: 0 auto; }
.share-title { font-size: 1.5rem; color: var(--blanco); margin-bottom: 1.5rem; font-weight: bold; }
.share-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.btn-share { display: flex; align-items: center; gap: 10px; padding: 12px 25px; border-radius: 50px; text-decoration: none; color: var(--blanco); font-weight: bold; font-size: 0.9rem; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.1); background: rgba(6, 49, 142, 0.2); backdrop-filter: blur(5px); }
.btn-share:hover { transform: translateY(-5px); }
.share-wsp:hover { background: rgba(37, 211, 102, 0.2); border-color: #25D366; color: #25D366; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3); }
.share-fb:hover { background: rgba(24, 119, 242, 0.2); border-color: #1877F2; color: #1877F2; box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3); }

/* Footer General */
.modern-footer { background: #010613; /* Aún más oscuro para dar profundidad */ border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 5% 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1100px; margin: 0 auto 3rem; }

/* Información y Correo */
.footer-brand h3 { color: var(--blanco); font-size: 2rem; margin-bottom: 10px; }
.footer-email { color: var(--gris-texto); display: flex; align-items: center; gap: 10px; margin-top: 20px; text-decoration: none; font-size: 1.1rem; transition: 0.3s; }
.footer-email:hover { color: var(--rojo-logo); text-shadow: 0 0 10px var(--rojo-brillo); }

/* Formulario Newsletter */
.newsletter-box h4 { color: var(--blanco); margin-bottom: 15px; font-size: 1.2rem; }
.newsletter-form { display: flex; gap: 10px; position: relative; }
.newsletter-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 15px 20px; border-radius: 8px; color: var(--blanco); outline: none; transition: 0.3s; font-size: 0.9rem; }
.newsletter-input:focus { border-color: var(--rojo-logo); background: rgba(0,0,0,0.5); box-shadow: inset 0 0 10px rgba(222,0,0,0.2); }
.newsletter-btn { background: var(--rojo-logo); color: var(--blanco); border: none; padding: 0 25px; border-radius: 8px; cursor: pointer; font-weight: bold; transition: 0.3s; text-transform: uppercase; }
.newsletter-btn:hover { background: #ff1a1a; box-shadow: 0 0 20px var(--rojo-brillo); transform: scale(1.05); }

/* Animación Íconos Sociales (Tendencia Fill Hover) */
.footer-social { display: flex; gap: 20px; margin-top: 25px; }
.social-icon { position: relative; width: 55px; height: 55px; background: rgba(255,255,255,0.03); border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.social-icon svg { width: 24px; height: 24px; fill: var(--blanco); transition: 0.4s; z-index: 2; position: relative; }
.social-icon::before { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 100%; transition: 0.4s; z-index: 1; }
.social-icon.instagram::before { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icon.youtube::before { background: #FF0000; }
.social-icon:hover { transform: translateY(-8px); border-color: transparent; }
.social-icon:hover::before { top: 0; }
.social-icon:hover svg { transform: scale(1.2); }

.footer-bottom { text-align: center; color: var(--gris-texto); font-size: 0.9rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }



/* --- CSS: Botones Flotantes (WhatsApp y Scroll Top) --- */

.floating-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Espacio entre los botones */
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  outline: none;
  text-decoration: none;
}

/* Diseño Botón WhatsApp */
.btn-wsp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-wsp svg { width: 30px; height: 30px; }
.btn-wsp:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Diseño Botón Subir Arriba */
.btn-top {
  background: rgba(6, 49, 142, 0.8); /* Azul de tu logo semitransparente */
  color: var(--blanco);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  /* Oculto por defecto */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px); 
}
.btn-top svg { width: 24px; height: 24px; }

/* Clase que añade el JS cuando bajamos el scroll */
.btn-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-top:hover {
  background: var(--rojo-logo); /* Cambia al rojo de tu marca */
  border-color: var(--rojo-logo);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px var(--rojo-brillo);
}


/* --- CSS: Quiz Interactivo (Sección 2) --- */
.interactive-quiz-container { background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 30px; max-width: 800px; margin: 0 auto; }
.quiz-question-block { margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; }
.quiz-question-block:last-child { border-bottom: none; }
.quiz-question-title { color: var(--blanco); font-size: 1.1rem; font-weight: bold; margin-bottom: 15px; }

/* Estilo de los botones de respuesta */
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option { position: relative; }
.quiz-option input[type="radio"] { display: none; /* Ocultamos el círculo nativo */ }
.quiz-option label { display: block; padding: 15px 20px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: var(--gris-texto); cursor: pointer; transition: all 0.3s ease; }
.quiz-option label:hover { background: rgba(255, 255, 255, 0.1); }

/* Cuando el usuario selecciona una opción */
.quiz-option input[type="radio"]:checked + label { background: rgba(6, 49, 142, 0.4); border-color: var(--rojo-logo); color: var(--blanco); box-shadow: 0 0 15px rgba(222, 0, 0, 0.3); font-weight: bold; }

/* Campos de captura de datos al final del quiz */
.quiz-lead-capture { background: rgba(6, 49, 142, 0.2); border-radius: 8px; padding: 20px; margin-top: 30px; border: 1px solid var(--rojo-logo); text-align: center; }
.quiz-lead-capture h4 { color: var(--blanco); margin-bottom: 15px; font-size: 1.2rem; }


/* --- CSS: Pop-up Prueba Social Dinámico (Estilo Tendencia) --- */
.csp-wrapper {
  position: fixed;
  bottom: 20px;
  left: -400px; /* Oculto fuera de la pantalla por defecto */
  width: 340px;
  background: rgba(2, 13, 38, 0.95); /* Azul muy oscuro casi negro */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 6px solid var(--rojo-logo, #DE0000); /* El borde grueso de la referencia */
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), -5px 0 15px rgba(222, 0, 0, 0.15);
  z-index: 99998;
  transition: left 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.4s ease;
  font-family: 'Montserrat', sans-serif;
}

/* Clase que activa la animación de entrada */
.csp-wrapper.show {
  left: 20px;
}

/* Botón de cerrar "x" */
.csp-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: #B0B8C9;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
  line-height: 1;
}
.csp-close:hover { color: #FFFFFF; }

/* Círculo del Ícono */
.csp-icon-box {
  min-width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: inset 0 0 10px rgba(222, 0, 0, 0.2);
}

/* Textos */
.csp-content { flex: 1; display: flex; flex-direction: column; }
.csp-title {
  color: var(--rojo-logo, #DE0000);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.csp-message {
  color: #FFFFFF;
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 0;
}
.csp-message strong { font-weight: 700; }

/* Responsividad para móviles (se acomoda arriba de WhatsApp) */
@media (max-width: 768px) {
  .csp-wrapper {
    width: calc(100% - 40px);
    bottom: 90px; 
  }
}


/* --- CSS: Preguntas Frecuentes (FAQ Dark VSL) --- */
.faq-section { 
  padding: 4rem 5%; 
  max-width: 800px; 
  margin: 0 auto; 
}

.faq-title { 
  text-align: center; 
  color: #FFFFFF; 
  font-size: 2.2rem; 
  font-weight: 900; 
  margin-bottom: 2.5rem; 
  text-transform: uppercase; 
}

.faq-title span { 
  color: var(--rojo-logo, #DE0000); 
}

.dark-accordion {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dark-accordion:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--rojo-logo, #DE0000);
  box-shadow: 0 0 15px rgba(222, 0, 0, 0.2);
}

.accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: #FFFFFF;
  user-select: none;
}

.accordion-header span {
  color: var(--rojo-logo, #DE0000);
  font-size: 1.5rem;
  font-weight: 900;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0, 0, 0, 0.4);
}

.accordion-content p {
  padding: 20px 25px;
  margin: 0;
  color: #B0B8C9;
  font-size: 1rem;
  line-height: 1.6;
}


/* --- Limpieza de Glitch en Botón (image_3.png) --- */

/* Reemplaza '.btn-fixed-fixed' con la clase real de tu botón */
/* Si no sabes la clase, usa Elementor para ponérsela en Avanzado > Clases CSS */
.elementor-button.elementor-size-sm, 
.elementor-button {
    /* 1. Forzar texto blanco SIEMPRE (corrige texto invisible) */
    color: #FFFFFF !important;
}

/* 2. Limpieza del estado de Selección (:focus y :active) */
.elementor-button:focus,
.elementor-button:active,
.elementor-button.elementor-button-active {
    /* Eliminar el fondo rojo sólido glitchy */
    background-color: transparent !important; 
    
    /* Asegurar que el texto permanezca blanco */
    color: #FFFFFF !important;
    
    /* Eliminar sombras raras que causan la brecha con la línea */
    box-shadow: none !important;
    
    /* Eliminar el borde azul por defecto del navegador */
    outline: none !important;
}

/* 3. Integración y Limpieza de la Línea de Acento Inferior */
.elementor-button {
    /* Asegurar que el acento sea nítido y fino a 2px */
    border-bottom: 2px solid #FF0000; 
    
    /* Ajustar el espacio para que no se vea rota */
    padding-bottom: 10px !important;
    
    /* Mantener el fondo azul oscuro de la consola */
    background-color: rgba(0, 0, 0, 0.4);
    
    border-radius: 8px; /* Mantener bordes redondeados si los tiene */
    transition: all 0.3s ease; /* Suavizar transiciones */
}

/* 4. Efecto Hover Minimalista (Opcional, para que responda) */
.elementor-button:hover {
    /* Sutil fondo transparente al pasar el mouse */
    background-color: rgba(77, 161, 255, 0.1) !important; 
    
    /* La línea roja brilla un poco */
    border-bottom-color: #FF1A1A; 
}/* End custom CSS */