/* Overlay escuro */
#lgpd-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    z-index: 9998;
    display: none;
}

/* Banner */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, #1d1d1d, #343a40);
    color: #fff;
    padding: 25px 0;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.lgpd-banner a {
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}