/* ===== MODAL COOKIES ===== */

.cookie-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;              /* 🔥 importante */
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.cookie-box{
    background: #0f1c2e;
    padding: 30px;
    border-radius: 14px;
    width: 450px;
    max-width: 95%;
    box-shadow: 0 0 30px rgba(0,255,255,0.25);
    animation: fadeIn 0.3s ease;
}

.cookie-actions{
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-btn{
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.accept{
    background: #22c55e;
    color: white;
}

.reject{
    background: #ef4444;
    color: white;
}

.config{
    background: #3b82f6;
    color: white;
}

.save{
    background: #22c55e;
    color: white;
}

.cancel{
    background: #ef4444;
    color: white;
}

@keyframes fadeIn{
    from{opacity:0; transform:scale(0.9);}
    to{opacity:1; transform:scale(1);}
}
