.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529; /* Fundo escuro */
    color: #f8f9fa; /* Texto claro */
    padding: 15px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-texto {
    flex: 1 1 300px;
    margin-right: 20px;
    line-height: 1.5;
}

.cookie-banner a {
    color: #4CAF50; /* Verde agradável para o link */
    text-decoration: none;
    font-weight: bold;
}

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

.cookie-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px; /* Margem para telas pequenas */
}

.cookie-btn:hover {
    background-color: #45a049;
}