/* ============================================================
   MiO — Landing page institucional
   Todos os seletores usam o prefixo .lp- para não colidir com o
   Bootstrap nem com os estilos da tela de login.
   ============================================================ */

:root {
    --lp-bg: #070b14;
    --lp-bg-alt: #0b1220;
    --lp-surface: rgba(255, 255, 255, .04);
    --lp-surface-hover: rgba(255, 255, 255, .07);
    --lp-border: rgba(255, 255, 255, .10);
    --lp-border-strong: rgba(255, 255, 255, .18);
    --lp-text: #e8edf7;
    --lp-muted: #9aa7bd;
    --lp-accent: #4f8cff;
    --lp-accent-2: #22d3ee;
    --lp-radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body.lp-body {
    margin: 0;
    background-color: var(--lp-bg);
    color: var(--lp-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.lp-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Compensa o cabeçalho fixo ao navegar pelas âncoras */
.lp-anchor {
    scroll-margin-top: 92px;
}

/* ------------------------------------------------------------
   Cabeçalho
   ------------------------------------------------------------ */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(7, 11, 20, .55);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease;
}

.lp-header.lp-header-scrolled {
    background: rgba(7, 11, 20, .92);
    border-bottom-color: var(--lp-border);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 72px;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.lp-brand img {
    height: 34px;
    width: auto;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.lp-nav a {
    color: var(--lp-muted);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    white-space: nowrap;
    transition: color .18s ease, background .18s ease;
}

.lp-nav a:hover,
.lp-nav a:focus {
    color: #fff;
    background: var(--lp-surface-hover);
    text-decoration: none;
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.lp-nav+.lp-header-actions {
    margin-left: 14px;
}

/* Seletor de idioma vem claro da tela de login; no cabeçalho escuro ele fica vazado */
.lp-header-actions .login-lang-btn {
    border-color: var(--lp-border-strong);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: var(--lp-text);
}

.lp-header-actions .login-lang-btn:hover,
.lp-header-actions .login-lang-btn:focus {
    border-color: rgba(255, 255, 255, .38);
    background: var(--lp-surface-hover);
    box-shadow: none;
    color: #fff;
}

.lp-header-actions .login-lang-flag {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
}

/* ------------------------------------------------------------
   Botões
   ------------------------------------------------------------ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease, background .18s ease, border-color .18s ease;
}

.lp-btn:hover,
.lp-btn:focus {
    transform: translateY(-1px);
    outline: none;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent) 0%, #2f6ae0 100%);
    color: #fff !important;
    box-shadow: 0 10px 26px rgba(47, 106, 224, .35);
}

.lp-btn-primary:hover,
.lp-btn-primary:focus {
    box-shadow: 0 14px 32px rgba(47, 106, 224, .48);
    color: #fff !important;
}

.lp-btn-ghost {
    background: var(--lp-surface);
    color: var(--lp-text) !important;
    border-color: var(--lp-border-strong);
}

.lp-btn-ghost:hover,
.lp-btn-ghost:focus {
    background: var(--lp-surface-hover);
    color: #fff !important;
    border-color: rgba(255, 255, 255, .32);
}

.lp-btn-sm {
    height: 38px;
    padding: 0 16px;
    font-size: .82rem;
}

.lp-btn-lg {
    height: 52px;
    padding: 0 28px;
    font-size: 1rem;
}

/* ------------------------------------------------------------
   Blocos de seção
   ------------------------------------------------------------ */
.lp-section {
    padding: 92px 0;
    position: relative;
}

.lp-section-alt {
    background: var(--lp-bg-alt);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 14px;
    border: 1px solid var(--lp-border-strong);
    border-radius: 999px;
    background: var(--lp-surface);
    color: var(--lp-accent-2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lp-title {
    margin: 0 0 14px;
    font-size: clamp(1.85rem, 3.6vw, 2.7rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #fff;
}

.lp-subtitle {
    margin: 0;
    max-width: 720px;
    color: var(--lp-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.lp-section-head {
    margin-bottom: 48px;
}

.lp-section-head-center {
    text-align: center;
}

.lp-section-head-center .lp-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.lp-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 132px 0 84px;
    overflow: hidden;
}

@supports (min-height: 100dvh) {
    .lp-hero {
        min-height: 100dvh;
    }
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.04);
}

.lp-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(1100px 620px at 18% 12%, rgba(79, 140, 255, .26) 0%, rgba(79, 140, 255, 0) 62%),
        linear-gradient(180deg, rgba(7, 11, 20, .82) 0%, rgba(7, 11, 20, .74) 45%, var(--lp-bg) 100%);
}

.lp-hero .lp-container {
    position: relative;
    z-index: 2;
}

.lp-hero-content {
    max-width: 760px;
}

.lp-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(2.2rem, 5.4vw, 3.9rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff;
}

.lp-hero-lead {
    margin: 0 0 34px;
    max-width: 620px;
    color: #c3cee0;
    font-size: 1.15rem;
    line-height: 1.65;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.lp-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    color: #cbd5e6;
    font-size: .8rem;
    font-weight: 500;
}

.lp-badge i {
    color: var(--lp-accent-2);
    font-size: .92rem;
}

/* ------------------------------------------------------------
   Grades e cartões
   ------------------------------------------------------------ */
.lp-grid {
    display: grid;
    gap: 18px;
}

.lp-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-card {
    padding: 26px 24px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lp-card:hover {
    transform: translateY(-4px);
    background: var(--lp-surface-hover);
    border-color: var(--lp-border-strong);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .38);
}

.lp-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(79, 140, 255, .22) 0%, rgba(34, 211, 238, .16) 100%);
    border: 1px solid rgba(79, 140, 255, .28);
    color: #8ab4ff;
    font-size: 1.32rem;
}

.lp-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.lp-card p {
    margin: 0;
    color: var(--lp-muted);
    font-size: .92rem;
    line-height: 1.6;
}

.lp-card-tags {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lp-card-tags li {
    padding: 3px 10px;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    color: #a8b6cd;
    font-size: .74rem;
}

/* ------------------------------------------------------------
   Superfícies
   ------------------------------------------------------------ */
.lp-surface-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .02) 100%);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lp-surface-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 140, 255, .38);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}

.lp-surface-kicker {
    color: var(--lp-accent-2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Caixa de altura fixa apenas para normalizar logos com proporções diferentes */
.lp-surface-title {
    display: flex;
    align-items: center;
    height: 76px;
    margin: 14px 0 12px;
}

.lp-surface-logo {
    max-height: 74%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* O capelo ocupa altura extra, então esta logo usa a caixa inteira */
.lp-surface-logo-alta {
    max-height: 100%;
}

.lp-surface-card p {
    margin: 0;
    color: var(--lp-muted);
    font-size: .92rem;
    line-height: 1.6;
}

/* ------------------------------------------------------------
   Faixa de clientes parceiros
   ------------------------------------------------------------ */
.lp-clientes {
    padding: 46px 0;
    background: var(--lp-bg-alt);
    border-bottom: 1px solid var(--lp-border);
}

.lp-clientes-titulo {
    margin: 0 0 26px;
    color: var(--lp-muted);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
}

.lp-clientes-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 30px;
}

.lp-cliente {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 8px 12px;
    border-radius: 12px;
}

.lp-cliente img {
    max-height: 100%;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    opacity: .82;
    transition: opacity .2s ease;
}

.lp-cliente:hover img {
    opacity: 1;
}

/* ------------------------------------------------------------
   Vitrine com as telas do sistema
   ------------------------------------------------------------ */
.lp-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 22px;
    margin-top: 56px;
    align-items: stretch;
}

.lp-shot {
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: #0d1526;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .45);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lp-shot:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, .38);
    box-shadow: 0 30px 66px rgba(0, 0, 0, .55);
}

/* Moldura de navegador para dar contexto às telas */
.lp-shot-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, .035);
}

.lp-shot-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.lp-shot-url {
    margin-left: 10px;
    color: var(--lp-muted);
    font-size: .72rem;
    letter-spacing: .02em;
}

.lp-shot-media {
    overflow: hidden;
}

.lp-shot-media img {
    display: block;
    width: 100%;
    height: auto;
}

/* A tela mais estreita preenche a altura da vizinha em vez de deixar um vão */
.lp-shot-fill .lp-shot-media {
    flex: 1;
    min-height: 0;
}

.lp-shot-fill .lp-shot-media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lp-shot figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 18px;
    border-top: 1px solid var(--lp-border);
}

.lp-shot figcaption strong {
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
}

.lp-shot figcaption span {
    color: var(--lp-muted);
    font-size: .82rem;
}

/* ------------------------------------------------------------
   Lista de integrações
   ------------------------------------------------------------ */
.lp-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.lp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #c3cee0;
    font-size: .96rem;
    line-height: 1.6;
}

.lp-check-list i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--lp-accent-2);
    font-size: 1.05rem;
}

.lp-note {
    margin-top: 26px;
    padding: 16px 20px;
    border: 1px solid var(--lp-border);
    border-left: 3px solid var(--lp-accent);
    border-radius: 12px;
    background: rgba(79, 140, 255, .07);
    color: #b9c6dc;
    font-size: .88rem;
    line-height: 1.6;
}

/* ------------------------------------------------------------
   CTA final
   ------------------------------------------------------------ */
.lp-cta {
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--lp-border-strong);
    border-radius: 26px;
    background:
        radial-gradient(760px 320px at 50% 0%, rgba(79, 140, 255, .24) 0%, rgba(79, 140, 255, 0) 70%),
        linear-gradient(180deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
}

.lp-cta .lp-title {
    margin-bottom: 12px;
}

.lp-cta .lp-subtitle {
    margin: 0 auto 30px;
}

.lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ------------------------------------------------------------
   Rodapé
   ------------------------------------------------------------ */
.lp-footer {
    padding: 42px 0 34px;
    border-top: 1px solid var(--lp-border);
    background: var(--lp-bg-alt);
}

.lp-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-footer-brand img {
    height: 30px;
    width: auto;
}

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.lp-footer-links a {
    color: var(--lp-muted);
    font-size: .85rem;
    text-decoration: none;
}

.lp-footer-links a:hover,
.lp-footer-links a:focus {
    color: #fff;
    text-decoration: underline;
}

.lp-footer-meta {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--lp-border);
    color: #6f7d94;
    font-size: .78rem;
    line-height: 1.7;
}

/* ------------------------------------------------------------
   Modal de login sobre a landing
   ------------------------------------------------------------ */
#modal_login .modal-dialog {
    max-width: 440px;
}

/* Painel sólido: o cartão de vidro do /login perderia legibilidade sobre o herói */
#modal_login .modal-content {
    padding: 28px 24px 20px;
    border: 1px solid var(--lp-border-strong);
    border-radius: 22px;
    background: rgba(11, 18, 32, .96);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
}

#modal_login .login-card {
    padding: 0;
    border: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
}

#modal_login .lp-login-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 6;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lp-border-strong);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1.05rem;
    opacity: 1;
    text-shadow: none;
}

#modal_login .lp-login-close:hover,
#modal_login .lp-login-close:focus {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    outline: none;
}

#modal_login .lp-login-head {
    margin-bottom: 22px;
    padding-right: 34px;
    padding-left: 34px;
    text-align: center;
}

#modal_login .lp-login-head img {
    max-height: 56px;
    max-width: 190px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
}

#modal_login .lp-login-head p {
    margin: 12px 0 0;
    color: #c3cee0;
    font-size: .88rem;
}

/* No celular o cartão vira tela cheia, como um app */
@media (max-width: 767px) {
    #modal_login .modal-dialog {
        max-width: none;
        width: 100%;
        min-height: 100%;
        margin: 0;
        align-items: stretch;
    }

    #modal_login .modal-content {
        justify-content: center;
        min-height: 100vh;
        padding: 28px 22px;
        border: 0;
        border-radius: 0;
        background: var(--lp-bg-alt);
        box-shadow: none;
    }

    /* O margin:auto do formulário empurraria o logo para o topo da tela cheia */
    #modal_login .form-signin {
        margin: 0 auto;
    }

    #modal_login .lp-login-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* Escurece bastante o fundo para o cartão de vidro ganhar contraste */
.modal-backdrop {
    background-color: #05080f;
}

.modal-backdrop.show {
    opacity: .9;
}

/* ------------------------------------------------------------
   Animação de entrada das seções
   O conteúdo só é escondido quando o JS confirma que consegue revelá-lo.
   ------------------------------------------------------------ */
.lp-js .lp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.lp-js .lp-reveal.lp-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .lp-js .lp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-card:hover,
    .lp-surface-card:hover,
    .lp-btn:hover {
        transform: none;
    }
}

/* ------------------------------------------------------------
   Responsivo
   ------------------------------------------------------------ */
@media (max-width: 991px) {
    .lp-nav {
        display: none;
    }

    /* Sem a navegação ao lado, as ações precisam voltar a ser empurradas para a direita */
    .lp-nav+.lp-header-actions {
        margin-left: auto;
    }

    .lp-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-section {
        padding: 72px 0;
    }
}

@media (max-width: 767px) {
    .lp-header-inner {
        height: 64px;
    }

    .lp-anchor {
        scroll-margin-top: 78px;
    }

    .lp-brand img {
        height: 28px;
    }

    .lp-hero {
        min-height: auto;
        padding: 116px 0 68px;
    }

    .lp-hero-actions .lp-btn {
        flex: 1 1 100%;
    }

    .lp-grid-2,
    .lp-grid-3,
    .lp-grid-4,
    .lp-showcase {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Empilhado não há vizinha para acompanhar: a tela volta a exibir inteira */
    .lp-shot-fill .lp-shot-media img {
        height: auto;
    }

    .lp-clientes-grid {
        gap: 12px 20px;
    }

    .lp-cliente {
        height: 44px;
    }

    .lp-cliente img {
        max-width: 112px;
    }

    .lp-cta {
        padding: 44px 22px;
    }

    .lp-cta-actions .lp-btn {
        width: 100%;
    }

    .lp-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    /* Aperta os espaços em vez de esconder o rótulo, para o botão não virar só um ícone */
    .lp-header-inner {
        gap: 10px;
    }

    .lp-header-actions {
        gap: 8px;
    }

    .lp-header-actions .lp-btn {
        padding: 0 14px;
    }
}

/* ------------------------------------------------------------
   Páginas legais (política de privacidade, termos)
   ------------------------------------------------------------ */
.lp-legal {
    padding: 130px 0 70px;
}

.lp-legal-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 30px;
}

.lp-legal-head {
    margin-bottom: 22px;
}

.lp-legal-head-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.lp-legal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid var(--lp-border-strong);
    background: linear-gradient(135deg, rgba(79, 140, 255, .22), rgba(34, 211, 238, .14));
    color: var(--lp-text);
    font-size: 1.5rem;
}

.lp-legal-head h1 {
    margin: 0 0 4px;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--lp-text);
}

.lp-legal-data {
    margin: 0;
    font-size: .88rem;
    color: var(--lp-muted);
}

.lp-legal-destaques {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lp-legal-destaque {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 14px 16px;
}

.lp-legal-destaque-titulo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--lp-text);
}

.lp-legal-destaque p {
    margin: 0;
    font-size: .86rem;
    color: var(--lp-muted);
}

.lp-legal-destaque-ok {
    color: #34d399;
}

.lp-legal-destaque-info {
    color: var(--lp-accent-2);
}

.lp-legal-conteudo {
    padding: 34px 30px 28px;
}

.lp-legal-conteudo h2 {
    margin: 28px 0 12px;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--lp-text);
}

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

.lp-legal-conteudo p,
.lp-legal-conteudo li {
    color: var(--lp-muted);
    font-size: .95rem;
    line-height: 1.75;
}

.lp-legal-conteudo p {
    margin: 0 0 12px;
}

.lp-legal-conteudo ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.lp-legal-conteudo li {
    margin-bottom: 6px;
}

.lp-legal-rodape {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--lp-border);
}

@media (max-width: 767px) {
    .lp-legal {
        padding: 104px 0 54px;
    }

    .lp-legal-card {
        padding: 22px 18px;
    }

    .lp-legal-conteudo {
        padding: 24px 18px 22px;
    }

    .lp-legal-destaques {
        grid-template-columns: minmax(0, 1fr);
    }

    .lp-legal-head h1 {
        font-size: 1.4rem;
    }

    .lp-legal-rodape .lp-btn {
        width: 100%;
    }
}
