/* ==========================================================================
   LivreSat — Páginas institucionais (fundo branco): privacidade, termos, etc.
   Layout replicado do sistema atual (nav escura + banner + conteúdo 1000px).
   ========================================================================== */

.pagina-institucional { background: #fff; color: #333; }

.inst-page { min-height: 100vh; display: flex; flex-direction: column; }

/* ---- Nav escura ---- */
.inst-head { background: #0d1b2a; }
.inst-head__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
}
.inst-logo img { height: 48px; display: block; }

/* ---- Banner com ilustração + overlay escuro ---- */
.inst-banner {
    position: relative;
    min-height: 230px;
    padding-top: 109px;
    background: rgba(0, 0, 0, 0.64);
    background-image: url("../img/login_bg.jpg");
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.inst-banner__inner {
    width: 900px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}
.inst-banner__title {
    margin: 0 0 14px;
    text-align: right;
    font-size: 36px;
    line-height: 54px;
    color: #fff;
    font-weight: 400;
}
.inst-banner__desc {
    text-align: right;
    font-size: 20px;
    line-height: 22px;
    color: #fff;
}

/* ---- Conteúdo ---- */
.inst-content {
    flex: 1;
    width: 1000px;
    max-width: calc(100% - 40px);
    margin: 0 auto 10px;
    padding: 10px 0 100px;
}
.inst-content__title {
    margin: 0 0 25px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 30px;
    font-weight: 500;
    color: #222;
}
.inst-content__body {
    padding: 0 30px;
    line-height: 1.8;
    font-size: 17px;
    color: #333;
}
.inst-content__body h3 {
    margin: 26px 0 6px;
    font-size: 19px;
    font-weight: 600;
    color: #222;
}
.inst-content__body p { margin: 0 0 10px; }
.inst-content__body .inst-date { color: #888; font-size: 15px; margin-bottom: 20px; }
.inst-content__body ul { margin: 0 0 10px; padding-left: 22px; }
.inst-content__body li { margin-bottom: 4px; }
.inst-content__body a { color: var(--ls-orange); }

/* ---- Rodapé ---- */
.inst-foot {
    background: #0d1b2a;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
}

@media (max-width: 720px) {
    .inst-banner { padding-top: 70px; min-height: 180px; }
    .inst-banner__title { font-size: 26px; line-height: 34px; }
    .inst-content__body { padding: 0; }
}
