.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 20px 25px;
    width: 90%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-popup p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

.cookie-popup a {
    color: #0a8f85;
    font-weight: 600;
    text-decoration: none;
}

.cookie-popup a:hover {
    text-decoration: underline;
}

.cookie-popup button {
    background: #0a8f85;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.cookie-popup button:hover {
    background: #08796f;
}

/* RESPONSIVO */
@media (max-width: 700px) {
    .cookie-popup {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}