.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'KoHo';
    z-index: 1000;
}

.privacy-banner a { 
    color: #4CAF50;
    text-decoration: underline;
}

.privacy-banner button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    border: none;
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 20px;
    font-family: 'KoHo';
    cursor: pointer;
}

.privacy-banner button:hover {
    background-color: #45a049;
}

.hidden {
    display: none;
}

.fade-out {
    animation: fadeOutAnimation 0.5s; /* Duração da animação */
}

@keyframes fadeOutAnimation {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px); /* Mover um pouco para baixo durante o fade out */
    }
}

@media (max-width: 768px) {
    .privacy-banner{
        text-align: left;
    }
    .privacy-banner a{
        margin-right: 100px;
    }
    .privacy-banner button{
        margin-top: 20px;
        margin-right: 120px;
    }
} 

