body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1000;
    display: none; /* Inicialmente oculto */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-text {
    display: flex;
    align-items: center;
}

.cookie-text i {
    font-size: 24px;
    margin-right: 15px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
}

.cookie-text a {
    color: #FFD700;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    font-size: 14px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
}

.accept-cookies {
    background-color: #0d7a2e;
}

.accept-cookies:hover {
    background-color: #0a5f23;
}

.reject-cookies {
    background-color: #d71e1e;
}

.reject-cookies:hover {
    background-color: #b51919;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        margin-top: 15px;
        padding: 1;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        margin-top: 15px;
        padding: 1;
    }
}




