/* Estilo para o popup de cookies */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: #fff;
    color: #333;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-header h3 {
    font-size: 1.6em;
    color: #D7A595; /* Cor do branding */
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.cookie-content p {
    font-size: 1em;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-content a {
    color: #D7A595; /* Cor do branding */
    text-decoration: underline;
}

.cookie-content a:hover {
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-btn:hover {
    background-color: #45a049;
    transform: translateY(-3px);
}

.cookie-settings {
    font-size: 0.9em;
    color: #333;
    text-decoration: none;
}

.cookie-settings:hover {
    text-decoration: underline;
    color: #D7A595;
}

/* Responsividade */
@media (max-width: 768px) {
    .cookie-popup {
        max-width: 95%;
        padding: 15px;
        left: 50%;
        bottom: 2%;
    }

    .cookie-header h3 {
        font-size: 1.3em;
    }

    .cookie-content p {
        font-size: 0.9em;
    }

    .cookie-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 10px;
    }
}
