/* Container Fixo na Parte Inferior */
.lgpd-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    box-sizing: border-box;
}

.lgpd-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.lgpd-content {
    flex: 1;
}

.lgpd-title {
    margin: 0 0 4px 0;
    font-weight: 700;
    line-height: 1.2;
}

.lgpd-text {
    margin: 0;
    line-height: 1.4;
}

.lgpd-link {
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
}

.lgpd-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.lgpd-btn {
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    outline: none;
}

.lgpd-btn-accept {
    border: none;
}

.lgpd-btn-accept:hover {
    opacity: 0.9;
}

.lgpd-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsividade para Telas Menores / Dispositivos Móveis */
@media screen and (max-width: 768px) {
    .lgpd-banner-container {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .lgpd-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .lgpd-btn {
        flex: 1;
        text-align: center;
    }
}