body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f9;
    margin: 0;
    padding: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
    max-width: 800px;
    margin: 20px auto;
}

.numero-card {
    background-color: #fff;
    border: 2px solid #25d366;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.numero-card:hover {
    background-color: #25d366;
    color: white;
    transform: scale(1.1);
}
/* Estilo para números ya comprados */
.numero-card.vendido {
    background-color: #e0e0e0 !important;
    color: #a0a0a0 !important;
    text-decoration: line-through;
    border-color: #ccc !important;
    cursor: not-allowed;
    transform: none !important; /* Evita que se agrande al pasar el mouse */
}

.numero-card.vendido:hover {
    transform: none; /* No se agranda al pasar el mouse */
}

/* Navbar */
.navbar {
    background-color: #075e54; /* Color verde WhatsApp oscuro */
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    font-weight: bold;
}
.precio-tag {
    background: #25d366;
    padding: 2px 10px;
    border-radius: 5px;
}

/* Sección Premios */
.premios-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 900px;
}
.premio-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 180px;
    text-align: center;
}
.premio-card img {
    width: 100%;
    height: 120px;
    object-fit: cover; /* Para que la imagen no se deforme */
    border-radius: 8px;
}
.premio-card h3 {
    margin: 10px 0 5px;
    color: #075e54;
}

.premios-seccion {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 1000px;
    padding: 0 15px;
}

.premio-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 220px;
    border: 1px solid #e1e1e1;
    transition: 0.3s;
}

.premio-card:hover {
    transform: translateY(-5px);
}

.foto-contenedor img {
    width: 100%;
    height: 150px;
    object-fit: cover; /* Esto evita que la foto se estire feo */
    display: block;
}

.premio-info {
    padding: 15px;
}

.premio-info h3 {
    color: #075e54; /* El verde de tu navbar */
    margin: 0;
    font-size: 1.1rem;
}

.premio-info p {
    color: #555;
    font-size: 0.9rem;
    margin: 5px 0 0;
}
