body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
     background-color: #fffdfd; 
    /*333 */
    color: #fff;
    text-align: center;
    padding-top: 40px; /* o 0.5rem si quieres usar rem */
}

.header {
    background-color: #444;
}

.header h1 {
    margin: 0;
    font-size: 2em;
}

.video-section {
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.pricing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: #444;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    margin: 10px;
    overflow: hidden;
}

.card-header {
    padding: 20px;
    background-color: #555;
    color: #fff;
}

.card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.card-header {
  text-align: center;
  padding: 0;
}

.card-header img {
  width: 100%;
  max-width: 100%;
  height: auto; /* o una altura fija si prefieres */
  object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 0;
}


.card-header img {
  width: 100% !important;
  display: block !important;
  float: none !important;
  margin: 0 auto 15px auto !important;
}
@media (max-width: 768px) {
  .card-header {
    padding: 0;
  }

  .card-header img {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 15px auto !important;
    display: block !important;
  }
}


.card-header h2 {
    margin: 10px 0;
    font-size: 1.5em;
}

.card-header h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

.discount {
    font-size: 0.8em;
    color: #f9faf6;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features li {
    margin: 10px 20px;
    font-size: 0.9em;
    color: #fff;
    display: flex;
    align-items: center;
}

.features .check {
    color: #2ecc71;
    margin-right: 10px;
}

.features .cross {
    color: #e74c3c;
    margin-right: 10px;
}

.cta {
    display: inline-block;
    background-color: #ff9800;
    color: #141414;
    padding: 10px 20px;
    margin: 20px 0;
    text-decoration: none;
    border-radius: 20px;
 
}

.cta:hover {
    color: #141414;
    background-color: #e68900;
}

.footer {
    background-color: #444;
    padding: 20px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background-color: #555;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

.step-icon {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.step p {
    margin: 0;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .pricing {
        flex-direction: column;
        align-items: center;
    }

    .card-header img {
        width: 80px;
        height: 80px;
    }

    .card {
        width: 90%;
        max-width: 400px;
    }

    .card-header h2 {
        font-size: 1.2em;
    }

    .card-header h3 {
        font-size: 1.1em;
    }

    .cta {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .card-header img {
        width: 60px;
        height: 60px;
    }

    .card-header h2 {
        font-size: 1em;
    }

    .card-header h3 {
        font-size: 1em;
    }

    .features li {
        font-size: 0.85em;
    }

    .cta {
        padding: 6px 12px;
    }
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: #000; /* Opcional: color de fondo mientras carga el video */
        margin: 20px 0; /* Margen para separar la sección del video del resto del contenido */
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1;
    }
    
}

/* Contenedor general del paquete y banner */
.package-container {
    display: flex;
    align-items: stretch; /* Asegura que el banner coincida en altura */
    margin-bottom: 20px; /* Espaciado entre cada fila */
    /* Se asegura de que no haya separación horizontal entre el paquete y el banner */
}

/* Estilos de la tarjeta */
.card {
    flex: 1; /* La tarjeta ocupa la mitad del espacio */
    background-color: #444;
    color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 10px 0 0 10px; /* Bordes redondeados solo en la izquierda */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Estilos del banner */
.banner {
    flex: 1; /* El banner ocupa la misma anchura que la tarjeta */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 0 10px 10px 0; /* Bordes redondeados solo en la derecha */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden; /* Asegura que la imagen se ajuste correctamente */
}

/* Estilos de la imagen del banner */
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen al tamaño del contenedor */
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .package-container {
        flex-direction: column; /* Apila el paquete y el banner */
    }

    .banner {
        margin-top: 10px; /* Espaciado entre el paquete y el banner solo en móviles */
        border-radius: 10px; /* Restablece bordes redondeados en dispositivos pequeños */
    }

    .card {
        border-radius: 10px; /* Restablece bordes redondeados en dispositivos pequeños */
    }
}

/* Sección FAQ */
.faq {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #c2f312; /* Color llamativo para el título */
}

.faq-item {
    margin-bottom: 20px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background-color: #444;
    border: none;
    color: #fff;
    font-size: 1.2em;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #555;
}

.faq-answer {
    padding: 15px 20px;
    background-color: #555;
    color: #fff;
    font-size: 1em;
    border-radius: 10px;
    margin-top: 10px;
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Adaptabilidad */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 1.8em;
    }

    .faq-question {
        font-size: 1.1em;
    }

    .faq-answer {
        font-size: 0.95em;
    }
}

/* Botón flotante de WhatsApp */
/* .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 100;
}
.whatsapp-float img {
    width: 100%;
    height: auto;
} */

/* Botón flotante de Modo Oscuro */
.dark-mode-toggle {
    position: fixed;
    bottom: 90px; /* Ajusta para que esté encima del botón de WhatsApp */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #555;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dark-mode-toggle:hover {
    background-color: #333;
}
.dark-mode {
    background-color: #222;
    color: #fff;
}
.dark-mode a {
    color: #161616;
}
.dark-mode img {
    filter: brightness(0.8); /* Opcional para ajustar imágenes */
}

#commission-calculator {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#commission-calculator input, 
#commission-calculator button {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    #commission-calculator {
        padding: 1.5rem;
        margin: 1rem;
    }

    #commission-calculator h2 {
        font-size: 1.5rem;
    }

    #commission-calculator input, 
    #commission-calculator button {
        font-size: 1rem;
    }
}
#commission-calculator {
    background-color: #e6f7ff; /* Azul claro */
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombras suaves */
}

#commission-calculator h2 {
    color: #007bff; /* Azul intenso */
}

#commission-calculator label {
    color: #333; /* Texto oscuro */
}

#commission-calculator input {
    border: 1px solid #ccc;
    border-radius: 5px;
}

#commission-calculator button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#commission-result {
    color: #007bff; /* Resultado en azul */
    font-weight: bold;
}

/* Botón para subir */
.scroll-top {
    position: fixed;
    bottom: 20px; /* Distancia desde el borde inferior */
    right: 20px; /* Distancia desde el borde derecho */
    width: 50px;
    height: 50px;
    background-color: #0056b3; /* Color de fondo */
    color: white; /* Color del icono */
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%; /* Hace el botón circular */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none; /* Oculto por defecto */
    z-index: 1000; /* Se muestra sobre otros elementos */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-top:hover {
    background-color: #003f8a; /* Cambio de color al pasar el cursor */
    transform: scale(1.1); /* Efecto de agrandamiento */
}

@media (max-width: 768px) {
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
        bottom: 15px; /* Ajusta la posición en móviles */
        right: 15px;
    }
}

.countdown-container {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 20px auto;
    max-width: 400px;
}

.countdown {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #4CAF50;
    transition: width 1s linear;
}

/* Parpadeo cuando quedan menos de 3 horas */
.blink {
    animation: blink-animation 1s infinite alternate;
}

@keyframes blink-animation {
    from { opacity: 1; }
    to { opacity: 0.3; }
}


.countdown-container {
    text-align: center;
    font-size: 1.5rem;
    color: rgb(247, 245, 245);
    margin-top: 20px;
}

#countdown span {
    background: black;
    color: white;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1.2rem;
}
.countdown2-container {
    text-align: center;
    font-size: 1.5rem;
    color: rgb(247, 245, 245);
    margin-top: 20px;
}

#countdown2 span {
    background: black;
    color: white;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1.2rem;
}







.countdown-container {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 20px auto;
    max-width: 400px;
}

.countdown {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #4CAF50;
    transition: width 1s linear;
}

/* Parpadeo cuando quedan menos de 3 horas */
.blink {
    animation: blink-animation 1s infinite alternate;
}

@keyframes blink-animation {
    from { opacity: 1; }
    to { opacity: 0.3; }
}


.countdown2-container {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 20px auto;
    max-width: 400px;
}

.countdown2 {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.progress-bar2-container {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar2 {
    height: 100%;
    width: 0%;
    background-color: #4CAF50;
    transition: width 1s linear;
}

/* Parpadeo cuando quedan menos de 3 horas */
.blink {
    animation: blink-animation 1s infinite alternate;
}

@keyframes blink-animation {
    from { opacity: 1; }
    to { opacity: 0.3; }
}





.cupos-container {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    background: #ff5722;
    padding: 10px;
    border-radius: 10px;
    margin: 10px auto;
    max-width: 80%;
    animation: pulse 1.5s infinite alternate;
}

.cupos-text {
    margin: 0;
    font-size: 1.3rem;
}

.cupos-numero {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffeb3b;
}

/* Animación llamativa */
@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}


.frase-dinamica {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #ff9800;
    margin: 20px auto;
    max-width: 90%;
    white-space: normal; /* Permite que las frases largas se dividan en varias líneas */
    word-wrap: break-word; /* Asegura que las palabras largas se ajusten */
    overflow: visible; /* Evita que el texto se corte */
    display: flex;
    justify-content: center;
}


.frase-dinamica {
    max-width: 100%; /* Permite más espacio para frases largas */
    padding: 10px; /* Agrega un poco de espacio para evitar cortes */
}


@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; } /* Aparece suavemente */
    90% { opacity: 1; } /* Se mantiene visible */
    100% { opacity: 0; } /* Se desvanece */
}

.valorado {
    display: block; /* Se coloca en una nueva línea en pantallas pequeñas */
    font-size: 0.7rem; /* Tamaño de fuente moderado */
    font-weight: bold;
    color: #ff9800; /* Naranja llamativo */
    background: rgba(255, 152, 0, 0.2); /* Fondo con transparencia */
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
    text-align: center;
}

/* Asegurar responsividad */
@media (max-width: 768px) {
    .valorado {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Estilos del botón de lista de espera */
.btn-lista-espera {
    background-color: #ff9800;
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 15px;
}

.btn-lista-espera:hover {
    background-color: #e68900;
}

/* Estilos del modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: rgb(61, 61, 61);
    padding: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Botón cerrar */
.close {
    position: absolute;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Inputs del formulario */
input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Botón de enviar */
.btn-enviar {
    background-color: #28a745;
    color: white;
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-enviar:hover {
    background-color: #218838;
}

.valorado2 {
    display: block; /* Se coloca en una nueva línea en pantallas pequeñas */
    font-size: 0.8em;
    font-weight: bold;
    color: #e2cd0c; /* Naranja llamativo */
    background: rgba(251, 251, 252, 0.2); /* Fondo con transparencia */
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
    text-align: center;
}

/* Asegurar responsividad */
@media (max-width: 768px) {
    .valorado2 {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}
h4{
    color: #0ce23a;
    text-align: center;
}










/* Sección Comparativa ALIADOSRE */
.aliados-comparativo {
    background: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .comparativo-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  
  .comparativo-titulo {
    font-size: 32px;
    color: #111;
    margin-bottom: 10px;
  }
  
  .comparativo-subtitulo {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
  }
  
  .comparativo-tabla {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .comparativo-header,
  .comparativo-row {
    display: contents;
  }
  
  .comparativo-header > div,
  .comparativo-row > div {
    padding: 18px 12px;
    border-bottom: 1px solid #eee;
    background: #fff;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
  }
  
  .comparativo-header > div {
    background-color: #111;
    color: #fff;
    font-weight: bold;
  }
  
  .ventaja {
    background-color: #0dbf5b;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    padding: 8px;
  }
  

  /* Responsive scroll horizontal para tabla */
.comparativo-tabla {
    overflow-x: auto;
    width: 100%;
  }
  
  .comparativo-tabla::-webkit-scrollbar {
    height: 8px;
  }
  
  .comparativo-tabla::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
  
  .comparativo-tabla > div {
    min-width: 700px; /* Esto mantiene la tabla visible en móviles con scroll horizontal */
  }
  
  @media screen and (max-width: 768px) {
    .comparativo-tabla {
      border-radius: 8px;
    }
  
    .comparativo-header > div,
    .comparativo-row > div {
      font-size: 14px;
      padding: 14px 8px;
    }
  
    .ventaja {
      font-size: 14px;
      padding: 6px;
    }
  }
  
   /* prueba social*/
  /* Contenedor de notificación */
.social-proof-container {
    position: fixed;
    top: 0; /* Ubica el contenedor en la parte superior */
    left: 50%; /* Centra el contenedor horizontalmente */
    transform: translateX(-50%); /* Mueve el contenedor para centrarlo horizontalmente */
    z-index: 1000;
    font-family: Arial, sans-serif;
    width: 80%;
    max-width: 300px;
    padding-top: 10px; /* Espacio desde el borde superior, opcional */
}

/* Estilo de la notificación */
.social-proof-notification {
    background-color: #4CAF50;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(-30px); /* Anima desde arriba */
    display: flex;
    align-items: center;
    font-size: 16px;
}

/* Estado visible de la notificación */
.social-proof-notification.show {
    opacity: 1;
    transform: translateY(0); /* Anima hacia la posición final en la parte superior */
}

/* Icono de notificación */
.social-proof-notification::before {
    content: "🚀";
    margin-right: 10px;
    font-size: 20px;
}

.testimonios {
    padding: 60px 20px;
    background-color: #111; /* ← fondo oscuro asegurado */
    color: #fff; /* texto blanco */
    text-align: center;
  }
  
  
  .testimonios h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #f7c948;
  }
  
  .testimonios-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .testimonio {
    flex: 0 0 80%;
    max-width: 400px;
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 15px;
    scroll-snap-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
  }
  
  .testimonio:hover {
    transform: translateY(-5px);
  }
  
  .testimonio p {
    font-size: 1.1em;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .testimonio h4 {
    font-size: 1em;
    font-weight: bold;
    color: #f7c948;
  }
  
  .estrellas {
    font-size: 1.4em;
    color: #f7c948;
    margin-bottom: 10px;
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .testimonios-slider {
      justify-content: center;
      overflow-x: hidden;
    }
  
    .testimonio {
      flex: 0 0 45%;
    }
  }
  
  @media (min-width: 1024px) {
    .testimonio {
      flex: 0 0 30%;
    }
  }
  

  #countdown3 span {
  background: #111;
  color: #fff;
  padding: 8px 12px;
  margin: 5px;
  border-radius: 5px;
  font-size: 1.2rem;
}

#progress-bar3 {
  height: 100%;
  width: 0%;
  background-color: #4CAF50;
  transition: width 1s linear;
}


#countdown4 span {
  background: #111;
  color: #fff;
  padding: 8px 12px;
  margin: 5px;
  border-radius: 5px;
  font-size: 1.2rem;
}

#progress-bar4 {
  height: 100%;
  width: 0%;
  background-color: #4CAF50;
  transition: width 1s linear;
}
.countdown-activa {
  background-color: #222;
  border: 2px solid #f39c12;
  border-radius: 10px;
  padding: 20px;
}


.progress-bar3-container {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.barra-cierre {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #FF4136;
      color: white;
      padding: 0.5rem;
      text-align: center;
      font-weight: bold;
      z-index: 1000; /* Se muestra sobre otros elementos */
    }

    /* Modal exclusivo para ALIADOSRE */
.modal-aliados-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-aliados-content {
  background: #fff;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-aliados-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.pregunta-aliados h3 {
  margin-bottom: 1rem;
  color: #333;
}

.pregunta-aliados select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.pregunta-aliados button {
  padding: 0.5rem 1.5rem;
  background: #f57c00;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cta-final-aliados {
  display: inline-block;
  margin-top: 1rem;
  background: #2ecc71;
  color: #fff;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
  .modal-aliados-content {
    padding: 1.5rem;
  }
}

.precio-bloqueado {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4;
}

.blur-text {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.icono-candado {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ff9800;
  font-size: 1.2rem;
}
.tachar {
  text-decoration: line-through;
}

/* Banner tipo anuncio premium */
.titulo-anuncio-container {
  text-align: center;
  background: linear-gradient(145deg, #000000, #1a1a1a);
  padding: 3rem 1rem;
  color: #0ce23a;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.titulo-anuncio {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.4;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.slogan-anuncio {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffcc00;
  font-family: 'Arial', sans-serif;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Responsividad */
@media (max-width: 768px) {
  .titulo-anuncio {
    font-size: 1.6rem;
  }

  .slogan-anuncio {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .titulo-anuncio-container {
    padding: 2rem 1rem;
  }

  .titulo-anuncio {
    font-size: 1.4rem;
  }

  .slogan-anuncio {
    font-size: 0.95rem;
  }
}

.story-aliadosre {
  background: #111;
  color: #f5f5f5;
  padding: 3rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.story-contenedor {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.story-imagen {
  flex: 1 1 250px;
  text-align: center;
}

.story-imagen img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fca311;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

.story-texto {
  flex: 2 1 500px;
}

.story-texto h2 {
  font-size: 2rem;
  color: #fca311;
  margin-bottom: 0.5rem;
}

.story-texto h2 span {
  color: #ffffff;
  font-weight: bold;
}

.story-texto h4 {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.story-texto p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.story-texto .destacado {
  background-color: #222;
  padding: 0.8rem;
  border-left: 5px solid #fca311;
  font-style: italic;
  color: #ffedc0;
}

.story-texto .mensaje-final {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fca311;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .story-contenedor {
    flex-direction: column;
    text-align: center;
  }

  .story-texto {
    padding: 0 1rem;
  }
}

.imagina-tabla {
  background: #444;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.imagina-titulo {
  font-size: 2.2rem;
  color: #fdfbfb;
  margin-bottom: 2rem;
  font-weight: 700;
}

.tabla-imagina {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fila-imagina {
  background: #c9e720;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease;
  text-align: left;
}

.fila-imagina:hover {
  transform: translateY(-4px);
}

.icono-imagina {
  font-size: 2rem;
  color: #e67700;
  flex-shrink: 0;
  line-height: 1.2;
}

.texto-imagina {
  font-size: 1.05rem;
  color: #333;
}

.texto-imagina strong {
  color: #000;
}

.imagina-final {
  font-size: 1.25rem;
  color: #fdfbfb;
  font-weight: bold;
  margin-top: 2.5rem;
}

@media screen and (max-width: 600px) {
  .imagina-titulo {
    font-size: 1.6rem;
  }

  .texto-imagina {
    font-size: 1rem;
  }

  .icono-imagina {
    font-size: 1.6rem;
  }

  .imagina-final {
    font-size: 1.1rem;
  }
}

/* ===== SECCIÓN VIP ===== */
.vip-section {
  background: #0b77f3; /* fallback sólido */
  background: linear-gradient(135deg, #0b77f3, #333);
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Forzar contraste en iOS */
.vip-section, 
.vip-section * {
  -webkit-text-fill-color: inherit;
  -webkit-background-clip: border-box;
}

.vip-section .vip-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #FFD700;
  text-transform: uppercase;
}

.vip-section .vip-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.vip-section .vip-subtitle span {
  color: #FFD700;
  font-weight: bold;
}

.vip-comparativo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.vip-card {
  background: #222;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.vip-card:hover {
  transform: translateY(-8px);
}

.vip-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.vip-card.aliados {
  border-left: 6px solid #28a745;
}

.vip-card.tradicional {
  border-left: 6px solid #ff4136;
}

.vip-card ul {
  list-style: none;
  padding: 0;
}

.vip-card ul li {
  text-align: left;
  margin: 0.8rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vip-card ul li i {
  font-size: 1.2rem;
  color: #FFD700;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .vip-section .vip-title {
    font-size: 1.6rem;
  }
  .vip-card {
    padding: 1.5rem;
  }
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  background: #0d0d0d; /* fallback sólido */
  background: linear-gradient(135deg, #0d0d0d, #1f1f1f);
  color: #fff;
  padding: 3rem 1rem;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

/* Igual para seguridad en iOS */
.timeline-section, 
.timeline-section * {
  -webkit-text-fill-color: inherit;
  -webkit-background-clip: border-box;
}

.timeline-section .timeline-title {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.timeline-section .timeline-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.timeline {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  text-align: left;
}

.timeline-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFD700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.timeline-content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

.timeline-content p {
  margin: 0.2rem 0 0;
  color: #bbb;
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.social-proof-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #FFD700;
  text-transform: uppercase;
}

.social-proof-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: auto;
}

.social-proof-card {
  background: #222;
  border-radius: 12px;
  padding: 1.2rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.3s ease, background 0.3s ease;
  font-weight: bold;
  font-size: 1rem;
}

.social-proof-card i {
  font-size: 1.8rem;
}

/* Hover dinámico */
.social-proof-card:hover {
  transform: translateY(-6px);
}

/* Colores por red */
.social-proof-card.facebook { background: #3b5998; }
.social-proof-card.instagram { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.social-proof-card.tiktok { background: #010101; }
.social-proof-card.telegram { background: #0088cc; }
.social-proof-card.youtube { background: #ff0000; }

/* ===== Responsive ajustes ===== */
@media (max-width: 768px) {
  .social-proof-title { font-size: 1.6rem; }
  .social-proof-subtitle { font-size: 1rem; }
  .social-proof-card { font-size: 0.9rem; }
  .social-proof-card i { font-size: 1.5rem; }
}
.social-proof-card.linkedin { background: #0077b5; }

/* Contenedor general */
.social-proof-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Cada tarjeta social */
.social-proof-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  width: 140px;
  height: 120px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none; /* evita el azul subrayado */
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Asegura que el ícono se muestre siempre */
.social-proof-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Hover bonito */
.social-proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Colores por red */
.social-proof-card.facebook { background: #1877f2; }
.social-proof-card.instagram { background: #e1306c; }
.social-proof-card.linkedin { background: #0077b5; }
.social-proof-card.tiktok { background: #010101; }
.social-proof-card.youtube { background: #ff0000; }

/* Responsive */
@media (max-width: 768px) {
  .social-proof-card {
    width: 45%;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .social-proof-card {
    width: 100%;
    height: 90px;
  }
}

.video-container {
  position: relative;
  max-width: 500px; /* Ajusta el tamaño base */
  aspect-ratio: 16/9;
  margin: auto;
}

.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  background: #000;
}


/* Personaliza los controles nativos (solo en navegadores modernos) */
video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 0 0 16px 16px;
}

video::-webkit-media-controls-play-button {
  background-color: #00c897;
  border-radius: 50%;
}

video::-webkit-media-controls-timeline {
  background: rgba(255, 255, 255, 0.2);
}

video::-webkit-media-controls-volume-slider {
  background: rgba(255, 255, 255, 0.2);
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
  color: #fff;
  font-weight: bold;
}

/* Animación suave al aparecer */
.video-container video {
  opacity: 0;
  transform: scale(0.97);
  animation: fadeInVideo 0.8s ease forwards;
}

@keyframes fadeInVideo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #00C897;
  cursor: pointer;
  transition: 0.3s;
}

.overlay:hover {
  background: rgba(0,0,0,0.7);
}
/* Overlay verde centrado */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: #00ff73; /* Verde brillante 💚 */
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}