#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    width: 600px;
    color: #212529;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2147483647 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.95);
    /* Ou use fundo escuro */
    backdrop-filter: blur(3px);
    /* opcional */
}

#cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

#cookie-banner p {
    margin: 0;
    line-height: 1.6;
}

#cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.2s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

#accept-cookies {
    background-color: #1e7e34;
    color: #ffffff;
}

#accept-cookies:hover {
    background-color: #155d27;
    transform: translateY(-1px);
}

#decline-cookies {
    background-color: #6c757d;
    color: white;
}

#decline-cookies:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

#more-info {
    color: #0056b3;
    background-color: transparent;
    border: 2px solid #0056b3;
    padding: 8px 18px;
}

#more-info:hover {
    background-color: #0056b3;
    color: white;
}

#cookie-details {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #555;
    background-color: #f8f9fa;
    border-radius: 8px;
}

@media (max-width:700px) {
    #cookie-banner {
        width: 100%;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: none;
        border-radius: 0;
        padding: 20px;
    }

    #cookie-banner-buttons {
        justify-content: space-between;
        gap: 15px;
    }

    .cookie-btn {
        flex-grow: 1;
    }
}