.paquetes-compra{
text-align:center;
margin:70px auto;
max-width:1100px;
color:white;
}

.precio-unitario{
margin-bottom:35px;
font-weight:600;
letter-spacing:1px;
opacity:.9;
}

/* GRID */

.grid-paquetes{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* TARJETAS */

.card{
background:#c1bae8;
padding:35px 25px;
border-radius:10px;
color:#111;
transition:all .25s ease;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
position:relative;
border:2px solid #6ea8ff; /* borde azul suave agregado */
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 18px 35px rgba(0,0,0,0.25);
}

/* TITULO */

.card h3{
font-size:18px;
margin-bottom:10px;
font-weight:700;
letter-spacing:.5px;
}

/* PRECIO */

.precio{
font-size:24px;
font-weight:800;
margin:18px 0;
}

/* BOTÓN */

.card button{
background:#000;
color:white;
border:none;
padding:11px 22px;
cursor:pointer;
border-radius:6px;
font-weight:600;
transition:all .2s ease;
}

.card button:hover{
background:#111;
transform:scale(1.05);
}

/* MÁS VENDIDO */

.destacado{
  border:2px solid #00d08b;
border:2px solid #000;
}

.destacado .tag{
color:#000;
font-weight:700;
}

/* TARJETA PREMIO */

.destacado-verde{
border:2px solid #00d08b;
box-shadow:0 0 15px rgba(0,208,139,.3);
}

.destacado-verde:hover{
box-shadow:0 0 25px rgba(0,208,139,.6);
}

/* TAG */

.tag{
display:block;
font-size:13px;
margin-bottom:8px;
opacity:.7;
font-weight:600;
}

/* MÁS NÚMEROS */

.mas-numeros{
margin-top:45px;
/* background:#f5f5f5; */
background:#c1bae8;
padding:35px;
border-radius:10px;
color:#111;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.mas-numeros h3{
margin-bottom:8px;
}

.mas-numeros p{
opacity:.7;
margin-bottom:18px;
}

.mas-numeros input{
padding:8px 10px;
width:80px;
border-radius:6px;
border:1px solid #ccc;
margin-right:10px;
}

.mas-numeros button{
background:#000;
color:white;
border:none;
padding:10px 18px;
border-radius:6px;
cursor:pointer;
}

.mas-numeros button:hover{
background:#111;
}

/* RESPONSIVE */

@media (max-width:900px){

.grid-paquetes{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.grid-paquetes{
grid-template-columns:1fr;
}

}

/* carlos de  quito ha comprado 0 boletos  */

.alerta-compra{

position:fixed;
bottom:20px;
left:20px;

background:#000;
color:#fff;

padding:12px 18px;

border-radius:8px;

font-size:14px;

box-shadow:0 5px 15px rgba(0,0,0,0.3);

z-index:9999;

}



/* CSS para que se vea tachado
PREMIOS INSTANTANEOS */


.entregado{
text-decoration: line-through;
color: red;
font-weight: bold;
}

.estadoPremio{
font-size:12px;
color:red;
text-align:center;
}

/* =========================
ALERTA PREMIOS ADMIN
========================= */
.alerta-admin{
background:#fff3cd;
color:#856404;
padding:10px;
margin:10px;
border-radius:6px;
font-weight:bold;
text-align:center;
}