/* COOKIE MSG */

.cookies-msg{
    width: 90%;
    max-width: 900px;
    background: rgba(15, 23, 42, 0.95); /* dark elegante */
    backdrop-filter: blur(10px);
    color: #e2e8f0;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    border-radius: 16px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.cookies-msg.mostrar{
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cookies-msg .cookies-txt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 1.5;
}

.cookies-msg .cookies-txt p{
    flex: 1;
    min-width: 250px;
}

.cookies-msg .cookies-btn{
    display: flex;
    gap: 10px;
}

/* BOTÃO PRINCIPAL */
.cookies-msg .cookies-btn button{
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookies-msg .cookies-btn button:hover{
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59,130,246,0.4);
}

/* BOTÃO SECUNDÁRIO (opcional) */
.cookies-msg .cookies-btn .secondary{
    background: transparent;
    border: 1px solid #64748b;
    color: #cbd5f5;
}

.cookies-msg .cookies-btn .secondary:hover{
    background: #1e293b;
}