/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 80px; /* Ajuste para el menú fijo */
}

/* Menú fijo */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1a1a1a; /* Fondo oscuro */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra */
}

.logo-image {
    width: 120px;
    max-height: 60px;
}

/* Menú de escritorio */
.desktop-menu {
    display: flex;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
}

.desktop-menu ul li {
    margin: 0 20px;
}

.desktop-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

.desktop-menu ul li a:hover {
    color: #ff6600;
}

/* Menú móvil */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon-image {
    width: 40px;
    height: auto;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #ff6600;
}

/* Responsividad */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .menu-icon {
        display: block;
    }
}


/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 80px; /* Ajuste para el menú fijo */
}

/* Sección de Banner */
.banner-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px; /* Añade un padding para evitar que toque los bordes en pantallas pequeñas */
}

.banner-main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Carrusel de miniaturas */
.banner-thumbnails-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    margin-top: 10px;
}

.banner-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.thumbnail-image {
    width: 60px;
    height: 45px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.thumbnail-image.active {
    border: 2px solid #ff6600;
}

.glider-prev, .glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.glider-prev {
    left: -10px;
}

.glider-next {
    right: -10px;
}

/* Botón de participar */
.boton-participar {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.boton-participar:hover {
    background-color: #cc5200;
}

/* Responsividad */
@media (max-width: 768px) {
    .banner-main-image {
        height: auto;
    }

    .main-banner-image {
        border-radius: 5px;
    }

    .thumbnail-image {
        width: 50px;
        height: 38px;
    }

    .glider-prev, .glider-next {
        padding: 6px;
    }

    .boton-participar {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .banner-thumbnails {
        gap: 5px;
    }

    .thumbnail-image {
        width: 40px;
        height: 30px;
    }

    .boton-participar {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/*______________________________________________________________________________________*/
/* Sección de Premios */
.premios-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    text-align: center;
    border-radius: 12px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Título de la sección */
.premios-section h2 {
    font-size: 2.5em;
    color: #ff6600; /* Naranja */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Grid de Premios */
.premios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Tarjetas de Premios */
.premio-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px; /* Ampliar ligeramente la tarjeta */
    text-align: center;
    overflow: hidden;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premio-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Imagen del Premio */
.premio-image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Altura ajustada */
    overflow: hidden;
    border-radius: 12px 12px 0 0; /* Bordes redondeados superiores */
}

.premio-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.premio-main-image:hover {
    transform: scale(1.1);
}

/* Puntos de Navegación */
.image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ff6600;
}

/* Información del Premio */
.premio-info h2 {
    font-size: 1.8em;
    color: #ff6600;
    font-weight: bold;
    margin: 20px 0;
    text-transform: uppercase;
}

.premio-info p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.golden-text {
    color: #ffb800;
    font-weight: bold;
    font-size: 1.5em;
}

/* Overlay para Ampliación de Imágenes */
.image-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Fondo oscuro */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

/* Botón de cierre */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ff6600;
}

/* Botones de navegación */
.overlay-prev,
.overlay-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 25px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.overlay-prev {
    left: 20px;
}

.overlay-next {
    right: 20px;
}

.overlay-prev:hover,
.overlay-next:hover {
    background-color: #e65c00; /* Cambia de color al pasar el cursor */
}

/* Responsividad */
@media (max-width: 768px) {
    .premios-grid {
        grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
    }

    .premio-info h2 {
        font-size: 1.5em;
    }

    .premio-info p {
        font-size: 1em;
    }

    .golden-text {
        font-size: 1.2em;
    }
}


/* ___________________________________________________________________________ */
/* Sección de Términos */
.terminos-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Título de la sección */
.terminos-title {
    font-size: 2.5em;
    color: #ff6600;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Estilos para el botón de ver términos */
.button-ver-terminos {
    display: inline-block;
    background: linear-gradient(45deg, #ff6600, #ffcc00);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.button-ver-terminos:hover {
    background-color: #e65c00;
    transform: translateY(-3px); /* Efecto de elevación */
}

.button-ver-terminos:active {
    transform: translateY(0); /* Al presionar, vuelve a su lugar */
}

/* Modal de Términos */
.modal-terminos {
    display: none; /* Por defecto, oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content-terminos {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close-terminos {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    color: #ff6600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-terminos:hover {
    color: #e65c00;
}

/* Estilos de la lista de términos */
.terminos-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1.1em;
    color: #333;
}

.terminos-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminos-list .icon {
    color: #ff6600;
    font-size: 1.5em;
}

/* _______________________________________________________________________ */
/* Sección de Contacto */
.contact-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    text-align: center; /* Centra el título */
    max-width: 800px;
    margin: 20px auto; /* Centra horizontalmente */
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Alinea el contenido en columna */
    align-items: center; /* Centra horizontalmente los elementos */
}

/* Título de la sección */
.contact-section h2 {
    font-size: 2.5em;
    color: #ff6600;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Contenedor de la información */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espaciado entre elementos */
    width: 100%; /* Asegura que los elementos ocupen todo el ancho disponible */
    align-items: center; /* Centra los elementos horizontalmente */
}

/* Elementos de contacto */
.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinea texto e iconos a la izquierda */
    gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 90%; /* Ajusta el ancho relativo al contenedor */
    max-width: 600px; /* Limita el ancho máximo */
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover para los elementos */
.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Iconos */
.contact-item .icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff6600;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Etiquetas */
.contact-item .label {
    font-weight: bold;
    color: #ff6600; /* Color naranja */
    flex-shrink: 0; /* Evita que la etiqueta se reduzca */
}

/* Texto */
.contact-item p {
    font-size: 1.1em;
    color: #333;
    margin: 0;
    font-weight: normal;
}

/* ___________________________________________________ */
/* Sección de Redes Sociales */
.contact-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-section .social-icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.contact-section .social-icon:hover {
    transform: scale(1.2); /* Efecto de zoom al pasar el cursor */
    filter: brightness(1.2); /* Aumenta el brillo en hover */
}

/* ___________________________________________________ */
/* Estilos para Botones Flotantes */
.whatsapp-float, .usuario-float {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-float {
    right: 80px; /* Ajusta la distancia desde el borde derecho para posicionamiento */
    background-color: #25d366;
}

.usuario-float {
    right: 20px; /* Ajusta la distancia desde el borde derecho para posicionamiento */
    background-color: #4285f4;
}

.whatsapp-float img, .usuario-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 10%;
}

.whatsapp-float:hover, .usuario-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* ___________________________________________________ */
/* Sección de Vendedores */
#vendedores {
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Título de la sección */
#vendedores h2 {
    font-size: 2.5em;
    color: #ff6600;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Botón para ver vendedores */
.button-ver-vendedores {
    display: inline-block;
    background: linear-gradient(45deg, #ff6600, #ffcc00);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.button-ver-vendedores:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
}

.button-ver-vendedores:active {
    transform: translateY(0);
}

/* Modal de Vendedores */
.modal-vendedores {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semitransparente */
    align-items: center;
    justify-content: center;
}

/* Contenido del Modal */
.modal-content-vendedores {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80%;
    overflow-y: auto; /* Scroll interno */
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-content-vendedores h3 {
    font-size: 1.8em;
    color: #ff6600;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Botón de Cerrar */
.close-vendedores {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close-vendedores:hover {
    color: #ff6600;
}

/* Cuadrícula de Vendedores */
.modal-content-vendedores .vendedores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Tarjetas de los Vendedores */
.vendedor-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vendedor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Nombre del Vendedor */
.vendedor-card h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Código y Celular */
.vendedor-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

/* Botón de WhatsApp */
.contact-button {
    display: inline-block;
    background-color: #25d366; /* Color de WhatsApp */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #1ebe5d; /* Hover en botón */
}


/* _______________________________________________________________ */
/* Sección de Paquetes */
.paquetes-carousel {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.paquetes-carousel h2 {
    font-size: 2.5em;
    color: #ff6600;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    
}



/* Contenedor de los paquetes */
.carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Estilo de cada paquete con forma de paralelogramo */
.carousel-item {
    position: relative;
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
    border-radius: 15px;
    text-align: center;
    color: #fff;
    padding: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); /* Forma de paralelogramo */
}

/* Efecto de elevación al pasar el cursor */
.carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.4);
}

/* Número grande en el fondo */
.carousel-item::before {
    content: attr(data-number); /* Muestra el ID del plan */
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 200px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

/* Título del plan */
.plan-title {
    font-size: 1.8em;
    font-weight: bold;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Valor del plan */
.plan-value {
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
    z-index: 1;
    position: relative;
}

/* Oportunidades */
.plan-opportunities {
    font-size: 1.2em;
    margin: 10px 0;
    z-index: 1;
    position: relative;
    font-weight: lighter;
}

/* Botón de compra */
.buy-button {
    background-color: #fff;
    color: #222;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
    width: 80%;
    align-self: center;
}

.buy-button:hover {
    background-color: #ffcc00;
    color: #000;
}

/* Colores personalizados para cada paquete */
.carousel-item:nth-child(1) {
    background: linear-gradient(135deg, #FFCC00, #FF9900); /* Amarillo degradado */
}

.carousel-item:nth-child(2) {
    background: linear-gradient(135deg, #800080, #AA00FF); /* Morado degradado */
}

.carousel-item:nth-child(3) {
    background: linear-gradient(135deg, #0066FF, #0033CC); /* Azul degradado */
}

/* ____________________________________________________________________________*/
/* Estilos Generales para Modales de compra*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Mantiene el modal centrado con desplazamiento cuando es necesario */
.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh; /* Limita la altura del modal para permitir desplazamiento */
    overflow-y: auto; /* Añade desplazamiento vertical si el contenido es demasiado largo */
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
    border: 2px solid transparent;
}


.modal h3 {
    font-size: 1.5em;
    color: #ff6600; /* Naranja */
    margin-bottom: 15px;
}

/* Estilos de los Inputs */
.modal input,
.modal select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Estados de validación */
.input-success {
    border-color: #28a745; /* Verde */
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.input-error {
    border-color: #dc3545; /* Rojo */
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.8);
}


/* Estilos para Cambiar el Contorno del Modal según el Estado */
.modal-success {
    border-color: #28a745; /* Verde */
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.8);
}

.modal-error {
    border-color: #dc3545; /* Rojo */
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.8);
}

/* Botones en el Modal */
.modal-button {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 5px;
    transition: background-color 0.3s;
}

.modal-button.cancel {
    background-color: #333;
    color: #fff;
}

.modal-button {
    background-color: #ff6600; /* Naranja */
    color: #fff;
}

.modal-button:hover {
    background-color: #e65c00; /* Naranja más oscuro al pasar el ratón */
}

.modal-button.cancel:hover {
    background-color: #555;
}

/* Botón para Activar Luz Verde o Roja según el Estado */
/* Botón de validación: éxito */
.validation-button-success {
    background-color: #28a745; /* Verde */
    color: #fff;
    border: 2px solid #28a745;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
}

/* Botón de validación: error */
.validation-button-error {
    background-color: #dc3545; /* Rojo */
    color: #fff;
    border: 2px solid #dc3545;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;

}
/* Estilos de validación más visibles */
.input-success {
    border-color: #28a745; /* Verde */
    box-shadow: 0 0 15px 5px rgba(40, 167, 69, 0.7); /* Sombra verde más grande */
}

.input-error {
    border-color: #dc3545; /* Rojo */
    box-shadow: 0 0 15px 5px rgba(220, 53, 69, 0.7); /* Sombra roja más grande */
}

/* Contorno del modal también más visible */
/* Éxito */
.modal-success {
    border-color: #28a745; /* Verde */
    box-shadow: 0 0 20px 7px rgba(40, 167, 69, 0.7); /* Sombra verde intensa */
}

/* Error */
.modal-error {
    border-color: #dc3545; /* Rojo */
    box-shadow: 0 0 20px 7px rgba(220, 53, 69, 0.7); /* Sombra roja intensa */
}


/* _______________________________________________________________________________________________*/
/* Estilos gandores*/

/* Sección de Ganadores */
.ganadores-carousel {
    text-align: center;
    padding: 20px;
}

.ganadores-title {
    font-size: 2em;
    color: #ff6600; /* Naranja */
    margin-bottom: 20px;
    font-weight: bold;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 80%;
}

.carousel-item {
    min-width: 300px;
    margin: 0 10px;
    transition: transform 0.5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.ganador-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.carousel-btn {
    background-color: #ff6600; /* Naranja */
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.carousel-btn:hover {
    background-color: #e67e22; /* Naranja más oscuro */
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Contenedor de la imagen del ganador con botón */
.ganador-image-container {
    position: relative;
}

.ganador-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Botón "Ver" */
.ver-ganador-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ganador-image-container:hover .ver-ganador-btn {
    opacity: 1; /* Aparece cuando se pasa el ratón por encima */
}

.carousel-item {
    min-width: 300px;
    margin: 0 10px;
    transition: transform 0.5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* ______________________________________________________________________________________________ */
/* CSS para el banner de cuenta regresiva */
.countdown-banner {
    display: none; /* Oculto inicialmente */
    position: fixed;
    top: 90px; /* Ajustado para que esté más abajo y no bloquee el título */
    width: 100%;
    background: linear-gradient(90deg, #ff6600, #ffa500); /* Degradado de naranja */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1em;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.countdown-timer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2em;
}

.countdown-timer span {
    font-size: 0.8em;
    color: white;
    margin-top: 5px;
}


/*_______________________________________________________________________________________________________*/
/* Estilo para la sección de inicio */

.inicio-section {
    background-color: #f7f7f7;
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
}

/* Título de la sección */
.inicio-title {
    font-size: 2.5em;
    color: #ff6600; /* Naranja */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Texto descriptivo */
.inicio-section p {
    font-size: 1.2em;
    color: #555; /* Gris oscuro */
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Contenedor del video */
.video-container {
    background-color: #333; /* Fondo oscuro */
    color: #ffcc00; /* Texto amarillo dorado */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    border-radius: 12px;
    border: 2px dashed #ff6600; /* Borde punteado en color naranja */
    margin: 0 auto;
    max-width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover en el contenedor */
.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*_____________________________________________________________________________*/
/* css para instrciones de compra */

/* Sección de Instrucciones de Compra */
.instrucciones-compra-section {
    background-color: #1b2b2d; /* Color de fondo oscuro */
    color: #ffffff; /* Texto blanco */
    padding: 40px 20px;
    text-align: center;
}

.instrucciones-compra-section h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.instrucciones-compra-section .descripcion {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.instrucciones-compra-section .pasos p {
    font-size: 1.5em;
    margin: 10px 0;
}

.instrucciones-compra-section .numero {
    color: #ffcc00; /* Color amarillo */
    font-weight: bold;
    font-size: 1.5em;
    margin-right: 5px;
}

.boton-participar {
    display: inline-flex;
    align-items: center;
    background-color: #ff6600; /* Color del botón */
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

.boton-participar:hover {
    background-color: #e65c00;
}

.boton-participar .icono-whatsapp {
    font-size: 1.5em;
    margin-right: 10px;
}



/*_____________________________________________________________________________________*/
/* CSS para la Barra de Progreso */
.barra-progreso-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f7f7f7;
}

.barra-title {
    font-size: 2em;
    color: #0d330b;
    margin-bottom: 20px;
}


.barra-contenedor {
    width: 80%;
    max-width: 600px;
    height: 35px; /* Incrementado para hacer la barra más ancha */
    background-color: #e0e0e0;
    border-radius: 18px; /* Ajustado para mantener la forma redondeada */
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    position: relative;
}

.barra-porcentaje {
    height: 100%;
    background-color: #06600d;
    transition: width 0.5s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em; /* Incrementado para que el texto se vea mejor en la barra más ancha */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8), 0 0 20px rgba(0, 255, 0, 0.5);
    animation: luzPulsante 1.5s infinite ease-in-out;
}

.porcentaje-texto {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.barra-texto {
    font-size: 1.2em;
    color: #333;
    margin-top: 10px;
}

.barra-contenedor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px; /* Ajustado para que coincida con el cambio de altura */
    box-shadow: 0 0 25px rgba(2, 78, 2, 0.979), 0 0 50px rgba(1, 121, 1, 0.978);
    animation: luzDetras 1.5s infinite ease-in-out;
}

/* Animación de luz pulsante */
@keyframes luzPulsante {
    0%, 100% {
        box-shadow: 0 0 15px rgba(2, 78, 2, 0.979), 0 0 20px rgba(1, 121, 1, 0.978);
    }
    50% {
        box-shadow: 0 0 25px rgba(2, 78, 2, 0.979), 0 0 35px rgba(1, 121, 1, 0.978);
    }
}

/* Animación de luz detrás */
@keyframes luzDetras {
    0%, 100% {
        box-shadow: 0 0 25px rgba(2, 78, 2, 0.979), 0 0 50px rgba(1, 121, 1, 0.978);
    }
    50% {
        box-shadow: 0 0 35px rgba(2, 78, 2, 0.979), 0 0 60px rgba(1, 121, 1, 0.978);
    }
}
