#conteudo {
    min-height: 100dvh;
    padding-bottom: var(--area-segura-baixo);
    background: var(--bg1);
}

.legal-topo {
    padding-top: var(--area-segura-topo);
    border-bottom: 1px solid #e8eaee;
    background: #fff;
    box-shadow: 0 5px 22px rgba(22, 31, 44, 0.07);
}

.legal-topo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 16px;
}

.legal-logo {
    display: flex;
    align-items: center;
}

.legal-logo img {
    display: block;
    width: 84px;
    height: auto;
}

.legal-voltar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    background: rgba(41, 181, 64, 0.08);
    color: var(--cor1);
    font-size: 0.9rem;
    font-weight: 700;
}

.legal-voltar svg {
    width: 18px;
    height: 18px;
}

.legal-container {
    max-width: 1040px;
}

.legal-documento {
    display: flex;
    flex-direction: column;
    gap: 24px;
    -webkit-user-select: text;
    user-select: text;
}

.legal-documento * {
    -webkit-user-select: text;
    user-select: text;
}

.legal-intro {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-intro h1 {
    color: var(--texto1);
    font-size: 2rem;
    line-height: 1.12;
}

.legal-intro p {
    max-width: 760px;
    color: var(--texto2);
    font-size: 0.98rem;
    line-height: 1.55;
}

.legal-caixa {
    padding: 28px;
}

.legal-caixa h2 {
    margin-top: 28px;
    color: var(--texto1);
    font-size: 1.18rem;
    line-height: 1.25;
}

.legal-caixa h2:first-child {
    margin-top: 0;
}

.legal-caixa p,
.legal-caixa li {
    color: var(--texto2);
    font-size: 0.96rem;
    line-height: 1.6;
}

.legal-caixa p {
    margin-top: 10px;
}

.legal-caixa ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-left: 20px;
}

.legal-data {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(0, 161, 220, 0.1);
    color: var(--cor2);
    font-size: 0.82rem;
    font-weight: 700;
}

.suporte-caixa {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.suporte-contatos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.suporte-contato {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 18px;
    border: 1px solid #edf0f2;
    border-radius: 12px;
    background: var(--bg1);
    color: var(--texto1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.suporte-contato:hover {
    border-color: rgba(41, 181, 64, 0.28);
    box-shadow: 0 8px 18px rgba(28, 42, 52, 0.08);
    transform: translateY(-1px);
}

.suporte-contato-icone {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: rgba(41, 181, 64, 0.1);
    color: var(--cor1);
}

.suporte-contato svg {
    width: 22px;
    height: 22px;
}

.suporte-contato strong,
.suporte-contato span span {
    display: block;
}

.suporte-contato strong {
    color: var(--texto1);
    font-size: 0.94rem;
    line-height: 1.3;
}

.suporte-contato span span {
    overflow-wrap: anywhere;
    margin-top: 4px;
    color: var(--texto2);
    font-size: 0.9rem;
    font-weight: 500;
}

.suporte-caixa h2 {
    margin-top: 0;
}

.suporte-lista {
    gap: 12px;
    margin-top: 0;
    padding-left: 0;
    list-style: none;
}

.suporte-lista li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #edf0f2;
}

.suporte-lista li:first-child {
    border-top: 0;
    padding-top: 0;
}

.suporte-lista svg {
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    margin-top: 2px;
    color: var(--cor2);
}

.suporte-aviso {
    margin-top: 0;
    padding: 16px;
    border-radius: 12px;
    background: rgba(0, 161, 220, 0.08);
}

@media (max-width: 767px) {
    .legal-topo-container {
        min-height: 58px;
    }

    .legal-logo img {
        width: 70px;
    }

    .legal-voltar span {
        display: none;
    }

    .legal-voltar {
        width: 38px;
        min-height: 38px;
        justify-content: center;
        padding: 0;
    }

    .legal-intro h1 {
        font-size: 1.55rem;
    }

    .legal-caixa {
        padding: 20px;
    }

    .suporte-contatos {
        grid-template-columns: 1fr;
    }

    .suporte-contato {
        padding: 16px;
    }
}
