/* --- ETIQUETAS DE NIVEL DE PLAN --- */
.required-badge {
    position: absolute;
    top: 15px; left: 15px;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Colores según el plan requerido */
.req-free { background: rgba(0, 255, 136, 0.2); color: #00ff88; border-color: #00ff88; }
.req-go   { background: rgba(0, 153, 255, 0.2); color: #0099ff; border-color: #0099ff; }
.req-plus { background: rgba(255, 0, 230, 0.2); color: #ff00e6; border-color: #ff00e6; }
.req-pro  { background: rgba(255, 215, 0, 0.2); color: #ffd700; border-color: #ffd700; }

/* --- BOTONES DE DESCARGA --- */
/* Estado 1: BLOQUEADO (Candado) */
.btn-locked {
    background: #1a1a1a;
    color: #666;
    border: 1px solid #333;
    cursor: not-allowed;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    grid-column: span 2; /* Ocupa todo el ancho */
}

.btn-locked:hover {
    background: #222; /* No cambia mucho para indicar que no funciona */
}

/* Estado 2: DESBLOQUEADO (Brilla) */
.btn-unlocked {
    background: var(--gradiente); /* Tu color azul-rosa */
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    grid-column: span 2;
    
    /* EL BRILLO QUE PEDISTE */
    box-shadow: 0 0 15px rgba(255, 0, 230, 0.5); 
    animation: latido 1.5s infinite;
}

.btn-unlocked:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(255, 0, 230, 0.8);
}

@keyframes latido {
    0% { box-shadow: 0 0 5px rgba(255, 0, 230, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 230, 0.6); }
    100% { box-shadow: 0 0 5px rgba(255, 0, 230, 0.3); }
}