    .cookie-container {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    width: 35%;
    max-width: 2000px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 23px;
    padding: 1.5rem;
    margin: 0 auto; 
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, #0b3a2b, #13926cff);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease-in-out;
    display: none; /* Inicialmente escondido */
}

.cookie-container:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
    transform: translateX(-50%) translateY(-4px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .cookie-container {
        width: 85%;
        max-width: 400px;
        bottom: 10px;
        padding: 1.2rem;
    }
    
    .cookie-recusar,
    .cookie-aceitar {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

h2 {
    font-size: 1.8rem;
}

.cookie-recusar {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00e676;
    padding: 0.9rem 1.7rem;
    border-radius: 18px;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cookie-recusar:hover {
    transform: scale(1.08);
    color: black;
}

.cookie-aceitar {
   background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff;
    border: none;
    padding: 0.9rem 1.7rem;
    border-radius: 18px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-aceitar:hover {
    transform: scale(1.08);
    color: black;
}

.cookie-container p     {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 550;
    line-height: 1.5;
    justify-content: center;
}

.cookie-container a     {
    font-weight: 500;
    font-size: 1.08rem;
    color: #30c495ff;
    font-weight: bold;
}