.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1c1208;
    border-top: 2px solid #c62828;
    padding: 1rem 1.25rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    animation: lgpdSlideUp 0.4s ease-out;
}

@keyframes lgpdSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lgpd-content {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.lgpd-icon {
    color: #fbc02d;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.lgpd-text {
    flex: 1;
    font-size: 0.82rem;
    color: #e0d8cc;
    line-height: 1.5;
    min-width: 200px;
}

.lgpd-link {
    color: #fbc02d;
    text-decoration: underline;
    margin-left: 4px;
}

.lgpd-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.lgpd-btn-accept {
    background: #c62828;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.lgpd-btn-accept:hover {
    background: #a71e1e;
}

.lgpd-btn-refuse {
    background: transparent;
    color: #a09080;
    border: 1px solid #3a2e20;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.lgpd-btn-refuse:hover {
    color: #e0d8cc;
    border-color: #6a5a3a;
}

@media (max-width: 600px) {
    .lgpd-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .lgpd-actions {
        width: 100%;
    }

    .lgpd-btn-accept,
    .lgpd-btn-refuse {
        flex: 1;
        text-align: center;
    }
}