.text-white {
    color: #fff;
}

.pricing-card {
    background-color: #000;
    border: 1px solid #ffc107;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.pricing-card .display-4 {
    font-size: 2.5rem;
}

.pricing-card .btn {
    border-radius: 50px;
    border: 2px solid #fff;
}

.popular {
    border: 3px solid #27ae60;
}

.mt-5 {
    margin-top: 3rem;
}

.card {
    border: none;
    border-radius: 15px;
    background-color: #1a1a1a;
}

.card-price {
    font-size: 2rem;
    color: #fff;
}

.popular {
    background-color: #333;
    border: 2px solid #ffdd57;
}

.popular .card-price {
    color: #ffdd57;
}

.card-body {
    padding: 2rem;
}

.btn {
    border-radius: 50px;
    padding: 10px 20px;
}

.btn-outline-dark {
    border-color: #fff;
    color: #fff;
}

.btn-outline-dark:hover {
    background-color: #fff;
    color: #000;
}
h5, h6 {
    color: #fff;
}
@keyframes zoomIn {
    0% {
        transform: scale(0.5); /* Empieza en un 50% de su tamaño original */
        opacity: 0; /* Transparente al inicio */
    }
    100% {
        transform: scale(1); /* Termina en su tamaño original */
        opacity: 1; /* Totalmente visible al final */
    }
}

.zoom-on-load {
    animation: zoomIn 1s ease forwards; /* Animación de 1 segundo */
    opacity: 0; /* Asegura que la imagen esté invisible al inicio hasta que comience la animación */
}

/* Cinta diagonal */
.ribbon {
    position: absolute;
    width: 73px;
    height: 25px;
    top: 2px;
    left: 77%;
    background-color: #24bf6a;
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    transform-origin: top right;
}

.ribbon span {
    position: absolute;
    top: 30px;
    right: -40px; /* Ajusta el texto en la cinta */
}
#premiados {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 bonos por fila */
    gap: 10px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}
.premiado {
    font-size: 8vw; /* El tamaño del texto será 8% del ancho de la pantalla */
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vw; /* Ajusta la altura proporcional al ancho de la pantalla */
    max-height: 150px; /* Fija un tamaño máximo para evitar que sea demasiado grande */
    border-radius: 12px; /* Bordes más redondeados */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Agrega transiciones suaves */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra para hacer que se destaque */
    background: linear-gradient(145deg, #ffcc00, #ffaa00); /* Degradado para un efecto de brillo */
    color: #fff;
    width: 8vw;
}
.premiado::before {
    content: '?'; /* Agrega un signo de interrogación antes del número */
    font-size: 40px; /* Tamaño del signo de interrogación */
    display: block;
    font-weight: bold;
    text-align: center;
}

.premiado:hover {
    transform: scale(1.1); /* Agranda ligeramente al pasar el cursor */
    cursor: pointer;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada en hover */
}
/* Control específico del tamaño del signo de interrogación */
.sin-interrogacion::before {
    content: ''; /* Eliminar el contenido del ::before */
}
/* Colores de los estados (verde y rojo) */
.disponible {
    background-color: #28a745 !important; /* Verde para los números disponibles */
    border: 3px solid gold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vw; /* Ajusta la altura proporcional al ancho de la pantalla */
    max-height: 150px; /* Fija un tamaño máximo para evitar que sea demasiado grande */
    border-radius: 12px; /* Bordes más redondeados */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Agrega transiciones suaves */
    color: #fff;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    width: 8vw
}

.vendido {
    background-color: #dc3545 !important; /* Rojo para los números vendidos */
    text-decoration: line-through;
    text-shadow: none; /* Sin sombra cuando está tachado */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vw; /* Ajusta la altura proporcional al ancho de la pantalla */
    max-height: 150px; /* Fija un tamaño máximo para evitar que sea demasiado grande */
    border-radius: 12px; /* Bordes más redondeados */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Agrega transiciones suaves */
    color: #fff;
    width: 8vw;
}
/* Media query para pantallas más grandes */
@media (min-width: 1200px) {
    .premiado {
        font-size: 36px; /* Tamaño fijo en pantallas grandes */
        height: 120px; /* Altura fija para pantallas grandes */
    }

    .premiado::before {
        font-size: 48px; /* Ajuste del tamaño del signo de interrogación en pantallas grandes */
    }
}
/* Media query para pantallas más pequeñas */
@media (max-width: 1100px) {
    .disponible, .vendido {
        width: 15vw;
        height: 15vw;
    }
    .premiado::before{
        width: 15vw !important;
        height: 15vw !important;
    }
    #premiados {
        text-align: -webkit-center;
    }
    .card{
        margin-bottom: 25px !important;
    }
    .responsive-footer{
        margin-top: 0 !important;
    }
    .responsive-nav{
        flex-wrap: initial !important;
    }
    .logo-small{
        margin-right: 5px !important;
    }
}
.responsive-col{
    padding-right: 0 !important;
    padding-left: 0 !important;
}