

/* Cor padrão */
:root {
    --main-color: #c0ff00;
    --text-color: #c0ff00;
}

/* Popup LGPD grande */
.lgpd-popup {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: var(--text-color);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    z-index: 9999;
    max-width: 90%;
    width: 800px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.lgpd-popup p {
    color: #fff;
}

.lgpd-popup a {
    color: var(--main-color);
    text-decoration: underline;
    font-weight: bold;
}

.lgpd-popup button {
    background: var(--main-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.4rem;
    border-radius: 10px;
    cursor: pointer;
    float: right;
}

/* Mini versão */
.lgpd-popup.mini {
    width: auto;
    max-width: none;
    padding: 0.5rem 1rem;
    bottom: 1rem;
    left: auto;
    right: 1rem;
    transform: none;
    font-size: 1.2rem;
    cursor: pointer;
    border: 2px solid var(--main-color);
    background: #000;
    box-shadow: 0 0 10px var(--main-color);
}

.lgpd-popup.mini p,
.lgpd-popup.mini button {
    display: none;
}

.lgpd-popup.mini::after {
    content: "Política de Privacidade";
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.2rem;
}
