/* Reglas generales */
* {
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Tipografías personalizadas */
h1, h2, h3, ul, li, a, #timer {
    font-family: "Racing Sans One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Estilos del header */
header {
    background-color: #000;
    padding: 5px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative; /* Asegúrate de que el header esté en la posición relativa */
    z-index: 1000; /* Asegúrate de que el header tenga un z-index alto */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header .logo img {
    height: 60px;
}

header h2 {
    font-size: 20px;
    color: white;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s, border-bottom 0.3s;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: red;
    transition: width 0.3s;
}

header nav ul li a:hover {
    color: #FFD700;
}

header nav ul li a:hover::after {
    width: 100%;
}

header nav ul li a:active {
    color: #FF0000;
}

/* Estilo del ícono de hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: white;
}

/* Mostrar el ícono de hamburguesa solo en pantallas pequeñas */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header nav ul {
        display: none;
        flex-direction: column;
    }

    header nav ul.active {
        display: flex;
    }
}

/* Ocultar menú en pantallas pequeñas */
@media (max-width: 768px) {
    header nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Mostrar el menú cuando esté activo */
    header nav.active ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0;
        background-color: #000;
        position: absolute;
        top: 60px; /* Asegúrate de que esté justo debajo del header */
        left: 0;
        right: 0;
        padding: 20px 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        z-index: 1000; /* Asegúrate de que el menú tenga un z-index alto */
    }

    /* Estilo para los enlaces de navegación cuando se despliegan */
    header nav ul li {
        width: 100%;
    }

    header nav ul li a {
        display: block;
        padding: 15px;
        color: white;
        text-align: center;
        border-bottom: 1px solid #ccc;
    }
}

/* Sección de inicio */
#inicio {
    position: relative;
    height: 90vh; /* Altura general */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fondo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ajusta el ancho al 120% */
    height: 100vh;
    z-index: 0;
}

.inicio-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

#inicio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.inicio-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

#inicio h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#inicio p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-comprar {
    display: inline-block;
    background-color: #FF0000;
    color: #FFD700;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-comprar:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

/* Responsividad para pantallas pequeñas */
@media (max-width: 768px) {
    #inicio {
        height: 70vh; /* Altura ajustada para pantallas pequeñas */
        width: 100%; /* Ajusta el ancho al 120% */
    }

    .fondo-img {
        height: 70vh; /* Ajusta la altura de la imagen al 70vh */
    }

    #inicio h1 {
        font-size: 2.5rem; /* Tamaño de fuente más pequeño */
    }

    #inicio p {
        font-size: 1.2rem; /* Tamaño de fuente más pequeño */
    }

    .btn-comprar {
        padding: 12px 25px; /* Ajusta el padding */
        font-size: 1rem; /* Tamaño de fuente más pequeño */
    }
}



/* Estilos del timer */
#raffle-timer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffcc00, #000000);
    color: #ffffff;
}

#timer {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

#raffle-timer h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top: -5px;
}

#raffle-timer p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#raffle-timer a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#raffle-timer a:hover {
    background-color: #ffb300;
}

.buy-tickets-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #ff0000;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buy-tickets-button:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}



/* Sección de compradores principales */
#top-buyers {
    text-align: center;
    background-color: #f2f2f2;
    width: 100%;
    height: auto;
    padding-top: 20px;
}

#top-buyers h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

#top-buyers p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.top-buyers-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.top-buyer {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    justify-content: center; /* Alinear al centro */
}

.position-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 20px;
}

.circle-four,
.circle-five {
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.buyer-info {
    flex-grow: 1;
    text-align: left;
    position: relative;
    min-width: 300px; /* O ajusta este valor a tu preferencia */
}


.progress-bar {
    background-color: #eee;
    border-radius: 5px;
    height: 15px;
    width: 100%;
    margin-top: 5px;
    position: relative;
}

.bar {
    background-color: #f2f200;
    height: 100%;
    border-radius: 5px;
}

.progress-number {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.prize {
    color: red;
    margin-top: 5px;
}

.rojo {
    width: 16px;
}

.info-icon-container {
    text-align: center;
    margin-top: 0px;
    position: relative;
    display: inline-block;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.info-icon-container:hover {
    color: black;
}

.info-icon {
    border: 2px solid #555;
    color: #555;
    border-radius: 50%;
    padding: 1px 6px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.tooltip {
    visibility: hidden;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: auto; /* Ajuste para que el ancho se adapte al contenido */
    max-width: 550px; /* Limita el tamaño máximo */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.10s ease, transform 0.10s ease;
    white-space: nowrap; /* Evita que el texto se divida en líneas */
}

.info-icon-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0;
}

/* Media Queries para Diseño Responsivo */
@media (max-width: 768px) {
    .top-buyers-container {
    padding: 20px;
    max-width: 446px;
    margin-bottom: 20px;
    }

    .top-buyer {
        flex-direction: column; /* Cambiar la dirección a columna en pantallas más pequeñas */
        align-items: center; /* Alinear al centro */
    }

    .position-icon {
        margin-bottom: 10px; /* Espacio entre el icono y la información */
    }

    .progress-bar {
        height: 10px;
    }

    .progress-number {
        top: -15px; /* Ajusta la posición del número */
    }

    .tooltip {
        width: 320px; /* Ancho máximo en tablets */
        font-size: 0.9rem; /* Reduce el tamaño de la fuente */
        padding: 8px; /* Ajusta el padding */
        white-space: normal; /* Permite que el texto se divida en varias líneas */
    }
}

@media (max-width: 480px) {
    #top-buyers h2 {
        font-size: 1.5rem;
    }

    #top-buyers p {
        font-size: 1rem;
    }

    .top-buyers-container {
        max-width: 90%; /* Más ancho en pantallas pequeñas */
        padding: 10px;
        width: 390px;

    }

    .position-icon {
        font-size: 1.5rem; /* Reduce el tamaño del icono */
        width: 40px;
        height: 40px;
    }

    .progress-bar {
        height: 8px;
    }

    .tooltip {
        width: 300px; /* Ocupa un mayor ancho en pantallas pequeñas */
        font-size: 0.8rem; /* Reduce aún más el tamaño de la fuente */
        padding: 6px; /* Reduce el padding para móviles */
        white-space: normal; /* Permite varias líneas en pantallas pequeñas */
    }
}







/* Sección de tickets */
/* Estilos básicos para el diseño */
.containerr {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.containerr h1{
    text-align: center;
    font-size: 2rem;
}

/* Estilos para el contenedor de filtros */
.filters-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Tres columnas para la búsqueda, filtros y moneda */
    gap: 20px;
    align-items: center; /* Alinea verticalmente todos los elementos */
    padding-bottom: 10px;
}

.search-container {
    display: flex;
    flex-direction: column; /* Pone el label encima del input */
    gap: 10px;
}

.filter-container {
    display: flex;
    flex-direction: column; /* Pone el label encima de los filtros */
    gap: 10px;
    margin-top: -18px; /* Ajusta la altura del filtro para alinearlo */
}

.radio-group {
    display: flex;
    gap: 10px; /* Espacio entre las opciones de filtro */
}

/* Cambiar el color de fondo del botón de radio a negro */
input[type="radio"] {
    accent-color: black; /* Cambia el color del círculo */
}

/* Opcional: Cambiar el color del círculo seleccionado a negro */
input[type="radio"]:checked {
    accent-color: black; /* Asegura que el círculo seleccionado sea negro */
}

.currency-container {
    display: flex;
    flex-direction: column; /* Pone el label encima del select */
    gap: 10px;
    margin-left: 62px; /* Ajusta la posición a la derecha */
}

input[type="number"],
select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-width: 200px;
}

/* Estilo del contenedor desplazable */
.scrollable-box {
    max-height: 400px; /* Altura máxima de la caja */
    overflow-y: scroll; /* Habilitar desplazamiento vertical */
    border: 1px solid #ddd; /* Borde alrededor del contenedor */
    padding: 10px;
    margin-bottom: 20px;
}

#ticket-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
}

.ticket {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
}

.vendido {
    background-color: #ccc;
    cursor: not-allowed;
}

.pendiente {
    background-color: #ccc;
    cursor: not-allowed;
    color: dimgray;
}

.selected {
    background-color: #000;
    color: white;
}

/* Estilos para los botones de radio */
.radio-group label {
    display: flex;
    align-items: center;
}

input[type="radio"] {
    margin-right: 5px; /* Espacio entre el botón de radio y el texto */
}

/* Cambiar el color de fondo al seleccionar el botón de radio */
input[type="radio"]:checked + label {
    background-color: black; /* Fondo negro cuando está seleccionado */
    color: white; /* Color de texto blanco */
}

/* Botón de reservar */
.reserve-btn {
    background-color: black; /* Color de fondo negro */
    color: white; /* Color de texto blanco */
    padding: 12px 20px; /* Espaciado */
    border: none; /* Sin borde */
    border-radius: 6px; /* Bordes curvos */
    font-size: 1.2rem; /* Tamaño de fuente */
    cursor: pointer; /* Cursor de puntero al pasar el mouse */
    transition: background-color 0.3s ease; /* Transición suave al cambiar el color de fondo */
}

.reserve-btn:hover {
    background-color: #333; /* Color de fondo al pasar el mouse */
}

.reserve-btn:disabled {
    background-color: #ccc; /* Color de fondo cuando está deshabilitado */
    cursor: not-allowed; /* Cursor de no permitido */
}


/* Estilos para el diálogo de reserva */
.dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Asegura que el diálogo esté por encima de otros elementos */
}

.dialog-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.dialog-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.dialog-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.dialog-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.dialog-content input {
    width: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.dialog-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.confirm-button {
    background-color: #FFD700;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px auto; /* Centra el botón horizontalmente */
    display: block; /* Permite aplicar margin auto correctamente */
    margin-top: 15px;
}
.confirm-button:hover {
    background-color: red;
}

.button-container {
    text-align: center; /* Centra el contenido dentro del contenedor */
    margin-top: 10px; /* Espacio entre el formulario y el botón de cerrar */
}

.close-dialog {
    background-color: transparent;
    color: #FFD700;
    padding: 10px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: block; /* Para que ocupe todo el ancho posible */
    margin: 10px auto; /* Centra el botón y añade margen superior e inferior */
}

.close-dialog:hover {
    text-decoration: underline;
    color: red;
}



.confirmation-message {
    background-color: #28a745; /* Verde para éxito */
    color: white;
    padding: 15px;
    border-radius: 6px;
    font-size: 1rem;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none; /* Oculto inicialmente */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

.confirmation-message.show {
    display: block; /* Asegúrate de que se muestre */
    opacity: 1;
    bottom: 30px; /* Se ajusta ligeramente hacia arriba */
}

.confirmation-message.hidden {
    opacity: 0;
    bottom: 20px;
}

.confirmation-message.fade-out {
    opacity: 0; /* Desaparece gradualmente */
    bottom: 10px; /* Puede moverse hacia abajo si prefieres */
    transition: opacity 2s ease-out, bottom 2s ease-out; /* La animación de desvanecimiento más lenta */
}


.hidden {
    display: none;
}

/* Ventana emergente de la tasa de cambio */
#exchangeRateDialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.exchange-rate-dialog-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
}

.exchange-rate-dialog-content input,
.exchange-rate-dialog-content select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.exchange-rate-dialog-content button {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
}

/* Contenedor para alinear los botones */
.btn-container {
    display: flex;
    justify-content: space-between; /* Coloca los botones en extremos opuestos */
    margin-bottom: 10px;
}

/* Botón de tasa */
.tasa-btn {
    background-color: black;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tasa-btn:hover {
    background-color: #333;
}

/* Botón de seleccionar boleto aleatorio */
.random-ticket-btn {
    background-color: #FFD700;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center; /* Alinea el icono y el texto verticalmente */
}

.random-ticket-btn:hover {
    background-color: red;
}

.random-ticket-btn i {
    margin-right: 8px; /* Espacio entre el icono y el texto */
}

.price-info {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #333;
}

.price-info p {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Estilo para el contenedor del ícono en el diálogo */
.info-icon-container-dialog {
    text-align: center;
    margin-top: 20px;
    position: relative;
    display: block;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0px;
}

.info-icon-dialog {
    border: 2px solid #555;
    color: #555;
    border-radius: 50%;
    padding: 1px 6px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}



.tooltip-dialog {
    visibility: hidden;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 40vw; /* Ajuste para que el ancho se adapte al contenido */
    max-width: 550px; /* Limita el tamaño máximo */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.10s ease, transform 0.10s ease;
    white-space: normal; /* Evita que el texto se divida en líneas */
}

/* Mostrar el tooltip al pasar el ratón */
.info-icon-container-dialog:hover .tooltip-dialog {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0;
}



/* Estilos responsivos */
@media (max-width: 768px) {
    /* Centrar los contenedores de búsqueda, filtro y moneda */
    .filters-container {
        display: flex;
        flex-direction: column; /* Colocar los elementos en columna */
        align-items: center; /* Centrarlos horizontalmente */
        gap: 15px; /* Espacio entre los elementos */
    }

    #ticket-grid {
        grid-template-columns: repeat(5, 1fr); /* Ajuste para pantallas pequeñas */
    }

    .currency-container {
        margin-left: 0; /* Remueve el margen en pantallas pequeñas */
    }

    /* Centrar los contenedores de "Números seleccionados", "Precio por boleto" y "Total a pagar" */
    .selected-container,
    .price-info,
    .reserve-btn {
        text-align: center; /* Alinear el texto al centro */
        width: 100%; /* Asegura que los elementos ocupen todo el ancho disponible */
    }

    /* Botón de reservar */
    .reserve-btn {
        font-size: 1rem; /* Ajusta el tamaño del texto del botón en pantallas pequeñas */
    }

    .scrollable-box {
        max-height: 300px; /* Reduce la altura en pantallas pequeñas */
    }

    .dialog-content {
        width: 90%; /* Reduce el ancho del cuadro de reserva en pantallas pequeñas */
        max-width: 400px; /* Limita el tamaño máximo del cuadro */
        padding: 20px; /* Ajuste de padding para pantallas más pequeñas */
    }

    .dialog {
        padding-right: 3px;
    }
}

@media (max-width: 480px) {
    /* Centrar los elementos para pantallas muy pequeñas */
    .filters-container {
        grid-template-columns: 1fr; /* Todas las opciones en una columna */
        justify-items: center; /* Centrar los elementos */
        align-items: center; /* Centrarlos verticalmente */
        gap: 10px;
    }
    .filter-container{
        margin-top: 2px;
    }
    /* Estilo adicional para el ticket grid */
    #ticket-grid {
        grid-template-columns: repeat(3, 1fr); /* Ajuste en pantallas muy pequeñas */
    }

    /* Centrar y espaciar los botones de la parte inferior */
    .selected-container,
    .price-info,
    .reserve-btn {
        text-align: center;
        margin: 10px 0;
    }

    .currency-container {
        margin-left: 0; /* Remueve el margen en pantallas pequeñas */
    }

        .dialog-content {
        width: 85%; /* Reduce aún más el ancho en pantallas muy pequeñas */
        max-width: 350px; /* Limita aún más el tamaño máximo del cuadro */
        padding: 15px; /* Disminuye el padding en pantallas más pequeñas */
    }
}






.ticket-img {
    width: 250px; /* o el tamaño que quieras */
    height: auto;
    display: block;
}

.bg{
    background-color: #f2f2f2;
    width: 100%;
    height: 3px;
    margin: 50px 0;

}

.verificacion-section {
    margin: 50px 0;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.verificacion-section h2 {
    font-size: 24px;
    color: black;
}

.verificacion-section p{

    color: #333;

    margin-bottom: 20px;

}

.verificacion-section .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.verificacion-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.verificacion-section input[type="text"],
.verificacion-section input[type="cedula"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.verificar-btn {
    background-color: black;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.verificar-btn:hover {
    background-color: #333;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5.5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;


}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover, .close:focus {
    color: #000;
}

#resultado {
    margin-top: 20px;
}

#resultado h3 {
    margin-bottom: 10px;
}

#resultado ul {
    list-style-type: none;
    padding: 0;
    max-height: 300px; /* Altura máxima antes de habilitar el desplazamiento */
    overflow-y: auto;  /* Habilitar desplazamiento vertical */
    border: 1px solid #ccc; /* Añadir un borde para que sea más visible */
    padding: 10px;
    background-color: #f9f9f9;
}

#resultado ul li {
    padding: 8px;
    background-color: #f1f1f1;
    margin-bottom: 5px;
    border-radius: 4px; /* Bordes redondeados */
}

#resultado ul li:nth-child(even) {
    background-color: #e0e0e0;
}

/* Personalización del scrollbar */
#resultado ul::-webkit-scrollbar {
    width: 10px; /* Ancho del scrollbar */
}

#resultado ul::-webkit-scrollbar-track {
    background: #f1f1f1; /* Fondo del track */
    border-radius: 10px; /* Bordes redondeados */
}

#resultado ul::-webkit-scrollbar-thumb {
    background-color: #FFD700; /* Color del scrollbar (puedes cambiarlo) */
    border-radius: 10px; /* Bordes redondeados */
    border: 2px solid #f1f1f1; /* Espacio entre el scrollbar y el track */
}

#resultado ul::-webkit-scrollbar-thumb:hover {
    background-color: red; /* Color del scrollbar cuando pasa el ratón por encima */
}




.gallery-section {
    margin: 50px 0;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gallery-section h2 {
    font-size: 28px;
    color: black;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative; /* Mantenerlo relativo para que los hijos se posicionen en relación a él */
    max-width: 80%;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-slide {
    display: none;
    text-align: center;
}

/* clase para ocultar */
.carousel-controls.hidden {
    display: none !important;
}


.carousel-slide img {
    width: 100%;
    height: 66vh;

    border-radius: 8px;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    border-radius: 8px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%; /* Ancho completo para asegurar el alineamiento */
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px; /* Espaciado reducido */
    pointer-events: auto;
    z-index: 2;
}

.carousel-controls button {
    background-color: white; /* Fondo del botón */
    border: none; /* Sin borde */
    border-radius: 50%; /* Botones redondos */
    width: 40px; /* Tamaño reducido del botón */
    height: 40px; /* Altura reducida */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease, transform 0.2s ease; /* Transición más rápida */
    cursor: pointer; /* Indicador de botón clickeable */
}

.carousel-controls button span {
    display: inline-block;
    font-size: 18px; /* Tamaño más pequeño de la flecha */
    color: #fff; /* Flechas blancas */
}

.carousel-controls button:hover {
    background-color: #ccc; /* Fondo gris claro al hacer hover */
}

.carousel-controls button:active {
    transform: scale(1); /* Volver a tamaño normal al hacer clic */
}

.carousel-controls .prev {
    margin-left: 0;
    left: 10px; /* Asegura que el botón de la izquierda esté alineado correctamente */
    position: absolute; /* Asegura que los botones estén en posiciones absolutas */
}

.carousel-controls .next {
    margin-right: 0;
    right: 33px; /* Asegura que el botón de la derecha esté alineado correctamente */
    position: absolute; /* Asegura que los botones estén en posiciones absolutas */
}

/* Ajustes para pantallas móviles */
@media (max-width: 768px) {
    .carousel-slide img {
    height: 25vh;
    }

    .carousel-controls button {
        width: 30px; /* Botón aún más pequeño en pantallas móviles */
        height: 30px;
    }

    .carousel-controls button span {
        font-size: 14px; /* Flechas más pequeñas */
    }

    .carousel-controls .prev {
        left: 3% ; /* Ajusta la posición en móvil */
    }

    .carousel-controls .next {
        left: 81.5%; /* Ajusta la posición en móvil */
    }

    .modal-content {
    margin: 25% auto;

    #resultado li{
        font-size: 15px;
    }

}

}




.payment-methods-section {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    margin-bottom: 55px;
    margin-top: 55px;
}

.payment-methods-section h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 20px;
}

/* Flexbox para las opciones de pago */
.payment-options {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Estilos para cada opción de pago */
.payment-option {
    flex: 1 1 200px; /* Flexibilidad en el tamaño de cada opción */
    padding: 20px;
    margin: 10px; /* Espaciado igual entre las opciones */
    background-color: #f4f4f4;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Agregar sombra sutil */
}

.payment-option img {
    width: 50px;
    height: 50px;
    transition: filter 0.3s ease;
}

.payment-option p {
    margin-top: 10px;
    font-size: 16px;
    color: #000;
}

.payment-option:hover {
    background-color: #e0e0e0; /* Color de hover */
    border-color: #000; /* Color de borde al hacer hover */
    color: black;
}

.payment-option:hover img {
    filter: hue-rotate(90deg); /* Cambia el color del ícono al hacer hover */
}

.payment-option.active {
    background-color: #fff; /* Gris oscuro */
    border-color: #000; /* Gris un poco más claro */
    color: white;
}

/* Estilos para la información de pago */
.payment-info {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: left;
}

.payment-info img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
}

.bank-details {
    margin-top: 10px; /* Espaciado superior para la sección de detalles del banco */
}

.bank-account {
    display: flex;
    align-items: center;
    margin-bottom: 5px; /* Espaciado entre cada cuenta bancaria */
}

.bank-account img {
    margin-right: 8px; /* Espaciado entre el icono y el texto */
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .payment-methods-section {
        padding: 15px;
        margin-bottom: 30px; /* Menos espaciado en la parte inferior */
        margin-top: 30px; /* Menos espaciado en la parte superior */
    }

    .payment-methods-section h2 {
        font-size: 24px; /* Tamaño de fuente más pequeño para el título */
    }

    .payment-option {
        flex: 1 1 100%; /* Las opciones ocupan el 100% del ancho en pantallas pequeñas */
        margin: 10px 0; /* Espaciado entre opciones */
    }

    .payment-option img {
        width: 40px; /* Tamaño de icono más pequeño */
        height: 40px; /* Tamaño de icono más pequeño */
    }

    .payment-option p {
        font-size: 14px; /* Tamaño de texto más pequeño */
    }

    .payment-info {
        padding: 10px; /* Menos espaciado en la información de pago */
    }

}

.modale {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modale-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover {
    color: #000;
}

.modal-btn {
    background-color: black;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.modal-btn:hover {
    background-color: #333;

}






.faq-section {
    margin: 50px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.faq-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 20px;

    cursor: pointer;
    margin: 0;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #0056b3;
}

.faq-answer {
    display: none;
    padding: 10px;
    margin-top: 5px;
    background-color: #f1f1f1;
    border-left: 4px solid #007bff;
    border-radius: 4px;
}

.faq-answer p {
    margin: 0;
    color: #333;
}



.ganadores-pasados {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
}

.ganadores-pasados h1, .ganadores-pasados h2 {
    color: black;
}

.ganadores-pasados h1{
    text-align: center;
    font-size: 2rem;
}

.ganadores-pasados .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .ganadores-pasados .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

.ganadores-pasados .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.ganadores-pasados .recent-winner {
    grid-column: 1 / -1;
    text-align: center;
}

.ganadores-pasados .winner-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.ganadores-pasados .winner-list {
    max-height: 400px;
    overflow-y: auto;
}

.ganadores-pasados .winner-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ganadores-pasados .winner-item:hover {
    background-color: #f0f0f0;
}

.ganadores-pasados .winner-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.ganadores-pasados .badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: #FFD700;
    color: black;
    border-radius: 20px;
    font-size: 0.8em;
}

.ganadores-pasados .btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1rem;
    background-color: #FFD700;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;


}

.ganadores-pasados .btn:hover {
    background-color: red;
}



.ganadores-pasados .modal-custom {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.ganadores-pasados .modal-custom-content {
    margin: 2% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}


.ganadores-pasados .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.ganadores-pasados .close:hover,
.ganadores-pasados .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.ganadores-pasados .prize-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 20px;
}

@media (max-width: 480px) {
    .ganadores-pasados .modal-custom-content {
    margin: 30% auto;
    }

    .ganadores-pasados h1{
        font-size: 1.5rem;
    }

    .modale-content {
    margin: 44% auto;
    }
}

@media (max-width: 768px){
    .ganadores-pasados .modal-custom-content {
        margin: 30% auto;
    }
}



.contacto-footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-item p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-item a {
    color: #FFD700;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}

.footer-item img {
    width: 60px;
    height: 40px;
}


.whatsapp-button {
    position: fixed;
    right: 20px; /* Ajusta según sea necesario */
    bottom: 20px; /* Ajusta según sea necesario */
    z-index: 1000;
    width: 50px;
    height: 50px;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}


.raffle-info {
    margin: 20px 0;
}

.progresss-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    height: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.progress {
    height: 100%;
    background-color: #FFD700; /* Color de la barra de progreso */
    width: 0;
    transition: width 0.4s ease;
}

.anuncio-semanal {
    overflow: hidden;
    font-family: "Racing Sans One", sans-serif;
    white-space: nowrap;
    background-color: #e30b0b; /* Rojo encendido */
    color: #fff; /* Texto blanco para que contraste */
    font-weight: bold;
    padding: 10px 0;
    position: relative;
    border-radius: 0px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.anuncio-movimiento {
    display: inline-block;
    padding-left: 100%;
    animation: mover 15s linear infinite;
    font-size: 1.2em;
}

@keyframes mover {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

        .rifa-contenedor {
            font-family: 'Roboto', sans-serif;
            color: #333;
            line-height: 1.6;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Sección principal con temática de carreras */
        .rifa-seccion-principal {
            background-color: #e30b0b;
            color: #fff;
            padding: 20px 0;
            position: relative;
            overflow: hidden;
            border-radius: 0;
            margin-bottom: 30px;
        }

        .rifa-seccion-principal::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 15px;
            background: repeating-linear-gradient(
                45deg,
                #000,
                #000 20px,
                #ffcc00 20px,
                #ffcc00 40px
            );
        }

        .rifa-encabezado {
            text-align: center;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        .rifa-titulo {
            font-family: 'Racing Sans One', cursive;
            font-size: 3.5rem;
            margin-bottom: 10px;
            text-shadow: 3px 3px 0 #000;
            letter-spacing: 1px;
        }

        .rifa-subtitulo {
            font-size: 1.5rem;
            font-weight: bold;
            text-shadow: 1px 1px 0 #000;
        }

        /* Sección del premio principal */
        .rifa-premio-principal {
            background-color: #fff;
            border: 5px solid #e30b0b;
            border-radius: 15px;
            margin: 30px auto;
            padding: 20px;
            max-width: 800px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .rifa-premio-principal::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background-color: #ffcc00;
            transform: rotate(45deg) translate(30px, -70px);
            z-index: 0;
        }

        .rifa-premio-cabecera {
            background-color: #e30b0b;
            color: #fff;
            padding: 15px;
            margin: -20px -20px 20px -20px;
            border-radius: 10px 10px 0 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .rifa-premio-cabecera-titulo {
            font-family: 'Racing Sans One', cursive;
            font-size: 2rem;
            margin: 0;
        }

        .rifa-premio-cabecera-subtitulo {
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .rifa-premio-contenido {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 768px) {
            .rifa-premio-contenido {
                flex-direction: row;
                justify-content: center;
            }
        }

        .rifa-premio-icono {
            background-color: #ffcc00;
            color: #000;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            border: 5px solid #000;
        }

        .rifa-premio-detalles {
            text-align: center;
        }

        @media (min-width: 768px) {
            .rifa-premio-detalles {
                text-align: left;
            }
        }

        .rifa-premio-titulo {
            font-size: 2.5rem;
            color: #e30b0b;
            margin-bottom: 10px;
            font-weight: 900;
        }

        .rifa-premio-bonus {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.5rem;
            color: #000;
            font-weight: bold;
        }

        @media (min-width: 768px) {
            .rifa-premio-bonus {
                justify-content: flex-start;
            }
        }

        .rifa-premio-pie {
            text-align: center;
            padding: 20px 0 0 0;
        }

        .rifa-btn-comprar {
            display: inline-block;
            background-color: #e30b0b;
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 0 #990000;
        }

        .rifa-btn-comprar:hover {
            background-color: #ff0000;
            transform: translateY(-3px);
        }

        .rifa-btn-comprar:active {
            transform: translateY(2px);
            box-shadow: 0 3px 0 #990000;
        }

        /* Sección de mejora de premios */
        .rifa-mejora-premios {
            padding: 0 0;
        }

        .rifa-mejora-titulo {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
            color: #e30b0b;
            font-family: 'Racing Sans One', cursive;
            text-shadow: 1px 1px 0 #000;
        }

        .rifa-tarjetas-contenedor {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .rifa-tarjetas-contenedor {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .rifa-tarjetas-contenedor {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .rifa-tarjeta {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .rifa-tarjeta:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .rifa-tarjeta-destacada {
            border: 3px solid #ffcc00;
        }

        .rifa-tarjeta-contenido {
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .rifa-cantidad-badge {
            background-color: #ffcc00;
            color: #000;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
            border: 2px solid #000;
        }

        .rifa-tarjeta-destacada .rifa-cantidad-badge {
            background-color: #e30b0b;
            color: #fff;
        }

        .rifa-tarjeta-info {
            flex-grow: 1;
        }

        .rifa-tarjeta-titulo {
            font-size: 1.5rem;
            color: #e30b0b;
            margin-bottom: 5px;
        }

        .rifa-tarjeta-destacada .rifa-tarjeta-titulo {
            color: #000;
            font-weight: 900;
        }

        .rifa-tarjeta-descripcion {
            font-size: 0.9rem;
            color: #666;
        }

        .rifa-tarjeta-icono {
            color: #e30b0b;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .rifa-tarjeta-destacada .rifa-tarjeta-icono {
            color: #ffcc00;
        }

        /* Sección de información adicional */
        .rifa-info-adicional {
            background-color: #fff;
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .rifa-info-titulo {
            color: #e30b0b;
            font-size: 1.8rem;
            margin-bottom: 20px;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
        }

        .rifa-info-lista {
            list-style-type: none;
            padding: 0;
        }

        .rifa-info-item {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .rifa-info-item:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #e30b0b;
            margin-right: 10px;
        }

        .rifa-btn-contenedor {
            text-align: center;
            margin-top: 30px;
        }

        .rifa-btn-informacion {
            display: inline-block;
            background-color: #e30b0b;
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 0 #990000;
        }

        .rifa-btn-informacion:hover {
            background-color: #ff0000;
            transform: translateY(-3px);
        }

        .rifa-btn-informacion:active {
            transform: translateY(2px);
            box-shadow: 0 3px 0 #990000;
        }

        /* Elementos decorativos */
        .rifa-bandera-cuadros {
            position: absolute;
            width: 100px;
            height: 100%;
            background: repeating-linear-gradient(
                to bottom,
                #000,
                #000 20px,
                #fff 20px,
                #fff 40px
            );
            opacity: 0.1;
        }

        .rifa-bandera-izquierda {
            left: 0;
            top: 0;
        }

        .rifa-bandera-derecha {
            right: 0;
            top: 0;
        }

        /* Animaciones */
        @keyframes rifa-pulso {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .rifa-animacion-pulso {
            animation: rifa-pulso 2s infinite;
        }
        
.fade-out {
    opacity: 0;
    transition: opacity 2s ease;
}
