/* Estilos para a faixa de cookies */
#cookie-banner {
    position: fixed;
    bottom: -100px; /* Começa fora da tela para animação */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content a{
    color: #ffd700;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-accept {
    background-color: #c91f4e;
    color: #ffd700;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 20px;
    white-space: nowrap;
}

#cookie-accept:hover {
    background-color: #a71a41;
}

/* Responsividade */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-accept {
        margin-left: 0;
        margin-top: 10px;
    }
}