/* BSSP Avisos: visual da casa, o mesmo do Pergunte ao Madruga (tinta + dourado
   do manual de marca BSSP 2026, vidro no estilo Lumio, claro e escuro). */

:root {
  --tinta: #031d31;
  --dourado: #f6cd82;
  --dourado-forte: #e0ac4d;

  --ground-1: #f1f1f1;
  --ground-2: #e9e9e9;
  --marca: var(--tinta);
  --texto: #031d31;
  --texto-fraco: #5b6b7c;
  --borda: rgba(3, 29, 49, 0.12);
  --borda-forte: rgba(3, 29, 49, 0.22);
  --vidro: rgba(255, 255, 255, 0.72);
  --vidro-fino: rgba(255, 255, 255, 0.5);
  --sombra: 0 18px 40px rgba(3, 29, 49, 0.12);
  --erro: #b3261e;
  --ok: #0f7b52;
  --atencao: #8a5a00;
  --realce: rgba(3, 29, 49, 0.055);
  --realce-forte: rgba(3, 29, 49, 0.10);
  --solido: #031d31;
  --solido-texto: #ffffff;
  --superficie: #fbfbfc;
  --bolha-fundo: #e6e2d8;
  --bolha: #ffffff;
  --bolha-tinta: #dfe8ef;
  --raio: 18px;
  --fonte: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

[data-tema='escuro'] {
  --ground-1: #02121f;
  --ground-2: #031d31;
  --marca: #ffffff;
  --texto: #eaf1f8;
  --texto-fraco: #93a7ba;
  --borda: rgba(255, 255, 255, 0.12);
  --borda-forte: rgba(255, 255, 255, 0.22);
  --vidro: rgba(255, 255, 255, 0.07);
  --vidro-fino: rgba(255, 255, 255, 0.045);
  --sombra: 0 18px 40px rgba(0, 0, 0, 0.45);
  --erro: #ff8a80;
  --ok: #6ee7b7;
  --atencao: #f0c169;
  --realce: rgba(255, 255, 255, 0.07);
  --realce-forte: rgba(255, 255, 255, 0.12);
  --solido: #f0f5fa;
  --solido-texto: #031d31;
  --superficie: #0a2033;
  --bolha-fundo: #0a1a28;
  --bolha: #173049;
  --bolha-tinta: #1c3b56;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: var(--fonte);
  font-size: 14px;
  line-height: 1.5;
  color: var(--texto);
  background: var(--ground-1);
  background-image:
    radial-gradient(56rem 40rem at 6% -14%, rgba(246, 205, 130, 0.55), transparent 60%),
    radial-gradient(50rem 40rem at 98% 4%, rgba(3, 29, 49, 0.10), transparent 62%),
    radial-gradient(44rem 34rem at 54% 114%, rgba(3, 29, 49, 0.07), transparent 58%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
[data-tema='escuro'] body {
  background-image:
    radial-gradient(58rem 40rem at 10% -12%, rgba(246, 205, 130, 0.16), transparent 62%),
    radial-gradient(52rem 38rem at 94% 6%, rgba(11, 58, 94, 0.55), transparent 64%),
    radial-gradient(46rem 34rem at 52% 112%, rgba(3, 29, 49, 0.9), transparent 60%);
}
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; text-wrap: balance; line-height: 1.2; }
h1 { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 1.02rem; font-weight: 700; }
h3 { font-size: 0.92rem; font-weight: 700; }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--texto-fraco); }
.muted, .sub { color: var(--texto-fraco); }
.small { font-size: 0.82rem; }
.num { font-variant-numeric: tabular-nums; }

.vidro {
  background: var(--vidro);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

/* Assinatura BSSP: o PNG oficial (branco) entra como máscara, a cor vem do tema. */
.marca-logo {
  display: block; flex: none;
  width: 132px; height: 62px;
  background-color: var(--marca);
  -webkit-mask: url('/static/logo-bssp-pos.png') no-repeat center / contain;
  mask: url('/static/logo-bssp-pos.png') no-repeat center / contain;
}
.marca-logo.grande { width: 200px; height: 94px; }
.marca-logo.negativa { background-color: #ffffff; }
.fio-dourado { height: 4px; background: var(--dourado); }

/* ---------- shell do painel ---------- */
.app { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.rail {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 14px; border-right: 1px solid var(--borda);
  background: var(--vidro-fino);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  position: sticky; top: 0; height: 100vh;
}
.rail .marca-bloco {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 6px 2px 14px; margin-bottom: 8px; border-bottom: 1px solid var(--borda);
}
.rail .produto { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dourado-forte); font-weight: 700; }
.rail nav { display: flex; flex-direction: column; gap: 2px; }
.rail nav a {
  display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 11px;
  text-decoration: none; color: var(--texto-fraco); font-weight: 500; font-size: 0.87rem;
  border: 1px solid transparent;
}
.rail nav a svg { width: 17px; height: 17px; flex: none; opacity: 0.85; }
.rail nav a:hover { background: var(--realce); color: var(--texto); }
.rail nav a.ativa { background: var(--realce-forte); color: var(--texto); font-weight: 600; }
.rail .sep { margin: 14px 11px 6px; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--texto-fraco); font-weight: 700; }
.rail .numero { margin-top: auto; padding: 10px 12px; border-radius: 12px; background: var(--vidro-fino); border: 1px solid var(--borda); font-size: 0.74rem; color: var(--texto-fraco); }
.rail .numero b { display: block; color: var(--texto); font-size: 0.8rem; }
.rail .numero i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--dourado-forte); margin-right: 6px; }
.rail .fim { border-top: 1px solid var(--borda); margin-top: 10px; padding: 10px 4px 0; font-size: 0.76rem; color: var(--texto-fraco); line-height: 1.5; }
.rail .fim b { color: var(--texto); display: block; font-weight: 600; font-size: 0.85rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rail .fim a { color: var(--texto-fraco); }
.rail .fim a:hover { color: var(--texto); }

.main { min-width: 0; }
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 28px; border-bottom: 1px solid var(--borda);
  background: var(--vidro-fino);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  position: sticky; top: 0; z-index: 5;
}
.topbar .crumb { font-size: 0.8rem; color: var(--texto-fraco); }
.tema, .botao-mini {
  padding: 6px 10px; font-size: 0.78rem; border-radius: 9px;
  background: transparent; color: var(--texto-fraco);
  border: 1px solid var(--borda); cursor: pointer; font-family: inherit; font-weight: 600;
}
.tema:hover, .botao-mini:hover { color: var(--texto); border-color: var(--borda-forte); }
.pagina { padding: 26px 28px 60px; max-width: 1180px; }
.cabecalho { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.cabecalho p { margin: 6px 0 0; color: var(--texto-fraco); max-width: 62ch; }

/* ---------- abas sublinhadas ---------- */
.tabs { display: flex; gap: 20px; border-bottom: 1px solid var(--borda); margin-bottom: 18px; }
.tabs button { background: none; border: 0; padding: 10px 2px; margin-bottom: -1px; color: var(--texto-fraco); font-weight: 600; font-size: 0.88rem; cursor: pointer; border-bottom: 2px solid transparent; }
.tabs button.ativa { color: var(--texto); border-bottom-color: var(--dourado-forte); }

/* ---------- controles ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px; font-weight: 700; font-size: 0.88rem; cursor: pointer;
  background: transparent; color: var(--texto); border: 1px solid var(--borda-forte);
  white-space: nowrap; text-decoration: none; transition: transform 0.12s, filter 0.15s, background 0.12s;
}
.btn:hover { background: var(--vidro-fino); }
.btn:active { transform: translateY(1px); }
.btn.primario { background: linear-gradient(180deg, var(--dourado), var(--dourado-forte)); color: var(--tinta); border-color: transparent; }
.btn.primario:hover { filter: brightness(1.05); background: linear-gradient(180deg, var(--dourado), var(--dourado-forte)); }
.btn.tinta { background: var(--solido); color: var(--solido-texto); border-color: transparent; }
.btn.ghost { border-color: transparent; }
.btn.ghost:hover { background: var(--realce); }
.btn.sm { padding: 6px 11px; font-size: 0.8rem; border-radius: 9px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn:focus-visible, .tabs button:focus-visible { outline: 2px solid var(--dourado-forte); outline-offset: 2px; }
.campo { display: flex; flex-direction: column; gap: 6px; }
.campo label { font-size: 0.8rem; font-weight: 600; color: var(--texto-fraco); }
.campo input, .campo select, .campo textarea, .login input {
  width: 100%; padding: 11px 13px; font-size: 0.94rem; color: var(--texto);
  background: var(--vidro-fino); border: 1px solid var(--borda-forte); border-radius: 12px; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.campo input:focus, .campo select:focus, .campo textarea:focus, .login input:focus { border-color: var(--dourado-forte); box-shadow: 0 0 0 3px rgba(246, 205, 130, 0.28); }
.campo input[disabled], .campo select[disabled], .campo textarea[disabled] { opacity: 0.6; }
.campo textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.ajuda { font-size: 0.74rem; color: var(--texto-fraco); }

/* ---------- pastilhas ---------- */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
.pill.ok { background: rgba(15, 123, 82, 0.12); color: var(--ok); }
.pill.warn { background: rgba(224, 172, 77, 0.18); color: var(--atencao); }
.pill.bad { background: rgba(179, 38, 30, 0.12); color: var(--erro); }
.pill.neutro { background: var(--realce); color: var(--texto-fraco); }
.pill.tinta { background: var(--solido); color: var(--solido-texto); }
.pill i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- superfícies ---------- */
.grid { display: grid; gap: 16px; }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c2 { grid-template-columns: 1fr 1fr; }
.grid.duas { grid-template-columns: minmax(0, 1fr) 360px; }
.stat, .painel {
  background: var(--vidro); border: 1px solid var(--borda); border-radius: var(--raio);
  backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
}
.stat { padding: 16px 18px; }
.stat .v { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-top: 6px; }
.stat .d { font-size: 0.8rem; color: var(--texto-fraco); margin-top: 4px; }
.painel { box-shadow: var(--sombra); overflow: hidden; }
.painel .ph { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--borda); }
.painel .pb { padding: 18px; }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
th { text-align: left; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--texto-fraco); font-weight: 700; padding: 10px 18px; border-bottom: 1px solid var(--borda); white-space: nowrap; }
td { padding: 12px 18px; border-bottom: 1px solid var(--borda); vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
tr.link { cursor: pointer; }
tr.link:hover td { background: var(--realce); }
.tabela { overflow-x: auto; }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--solido); color: var(--solido-texto); font-weight: 700; font-size: 0.7rem; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.pessoa { display: flex; align-items: center; gap: 10px; }
.pessoa b { display: block; font-weight: 600; }
.pessoa span { font-size: 0.74rem; color: var(--texto-fraco); }
.barra { height: 6px; border-radius: 3px; background: var(--realce-forte); overflow: hidden; min-width: 90px; }
.barra i { display: block; height: 100%; background: var(--solido); border-radius: 3px; }
.barra.dourado i { background: var(--dourado-forte); }
.lista { display: flex; flex-direction: column; }
.lista .item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 18px; border-bottom: 1px solid var(--borda); }
.lista .item:last-child { border-bottom: 0; }
.aviso { border-left: 3px solid var(--dourado-forte); background: var(--vidro-fino); border-radius: 0 12px 12px 0; padding: 12px 14px; font-size: 0.86rem; line-height: 1.45; }
.aviso b { display: block; margin-bottom: 2px; }
.aviso.erro { border-left-color: var(--erro); border: 1px solid rgba(179, 38, 30, 0.25); border-left-width: 3px; background: rgba(179, 38, 30, 0.10); color: var(--erro); border-radius: 12px; }

/* ---------- prévia de celular ---------- */
.fone { background: var(--tinta); border-radius: 28px; padding: 12px; width: 100%; max-width: 340px; margin: 0 auto; box-shadow: var(--sombra); }
.fone .tela { background: var(--bolha-fundo); border-radius: 18px; overflow: hidden; min-height: 480px; display: flex; flex-direction: column; }
.fone .cab { background: #152d3f; color: #fff; padding: 10px 14px; display: flex; align-items: center; gap: 10px; font-size: 0.8rem; }
.fone .cab .av { width: 30px; height: 30px; border-radius: 50%; background: var(--dourado); color: var(--tinta); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.fone .cab b { display: block; font-size: 0.86rem; }
.fone .cab span { opacity: 0.7; font-size: 0.72rem; }
.fone .msgs { padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bolha { background: var(--bolha); border-radius: 10px; padding: 9px 11px; max-width: 88%; font-size: 0.84rem; line-height: 1.5; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); white-space: pre-wrap; word-break: break-word; color: var(--texto); }
.bolha .hora { display: block; text-align: right; font-size: 0.66rem; color: var(--texto-fraco); margin-top: 4px; }
.bolha .cabb { font-weight: 700; display: block; margin-bottom: 4px; }
.bolha .rodape { display: block; font-size: 0.74rem; color: var(--texto-fraco); margin-top: 6px; }
.bolha .botao { margin-top: 8px; border-top: 1px solid var(--borda); padding-top: 7px; text-align: center; color: var(--tinta); font-weight: 600; }
[data-tema='escuro'] .bolha .botao { color: var(--dourado); }
.bolha .var { background: var(--bolha-tinta); border-radius: 4px; padding: 0 3px; }
.fone .data { align-self: center; background: var(--bolha-tinta); border-radius: 6px; padding: 2px 8px; font-size: 0.66rem; color: var(--texto-fraco); }

/* ---------- wizard ---------- */
.passos { display: flex; margin-bottom: 20px; border: 1px solid var(--borda); border-radius: var(--raio); overflow: hidden; background: var(--vidro-fino); }
.passos div { flex: 1; padding: 12px 16px; font-size: 0.8rem; color: var(--texto-fraco); border-right: 1px solid var(--borda); display: flex; align-items: center; gap: 10px; }
.passos div:last-child { border-right: 0; }
.passos div b { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--borda-forte); display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; flex: none; }
.passos div.feito b { background: var(--solido); color: var(--solido-texto); border-color: transparent; }
.passos div.atual { color: var(--texto); font-weight: 700; }
.passos div.atual b { background: var(--dourado); color: var(--tinta); border-color: transparent; }
.escolha { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opcao { border: 1px solid var(--borda-forte); border-radius: 14px; padding: 14px 16px; cursor: pointer; background: var(--vidro-fino); display: flex; gap: 12px; align-items: flex-start; }
.opcao:hover { background: var(--vidro); }
.opcao.sel { border-color: var(--dourado-forte); box-shadow: 0 0 0 3px rgba(246, 205, 130, 0.28); }
.opcao.off { opacity: 0.45; cursor: not-allowed; }
.opcao input { margin-top: 3px; accent-color: var(--tinta); }
.opcao b { display: block; font-weight: 700; }
.opcao span { font-size: 0.8rem; color: var(--texto-fraco); display: block; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { border: 1px solid var(--borda); border-radius: 999px; padding: 4px 10px; font-size: 0.8rem; background: var(--vidro-fino); cursor: pointer; }
.chip:hover { border-color: var(--dourado-forte); }
.resumo dt { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--texto-fraco); font-weight: 700; margin-top: 12px; }
.resumo dd { margin: 2px 0 0; font-weight: 600; }
.rodape-wizard { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--borda); }

/* ---------- toast e modal ---------- */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px); background: var(--solido); color: var(--solido-texto); padding: 12px 18px; border-radius: 12px; font-weight: 600; font-size: 0.86rem; box-shadow: var(--sombra); opacity: 0; transition: 0.25s; pointer-events: none; border-left: 4px solid var(--dourado); z-index: 60; }
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (prefers-reduced-motion: reduce) { .toast { transition: none; } }
.modal-fundo { position: fixed; inset: 0; background: rgba(3, 29, 49, 0.34); display: flex; align-items: center; justify-content: center; z-index: 50; padding: 20px; }
.modal { background: var(--superficie); border: 1px solid var(--borda); border-radius: var(--raio); width: 100%; max-width: 560px; box-shadow: var(--sombra); max-height: 90vh; overflow: auto; }
.modal .ph { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--borda); }
.modal .pb { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.modal .pf { display: flex; justify-content: flex-end; gap: 8px; padding: 14px 20px; border-top: 1px solid var(--borda); }
.vazio { padding: 40px 20px; text-align: center; color: var(--texto-fraco); }
.vazio b { display: block; color: var(--texto); margin-bottom: 4px; }
.badge-n { display: inline-flex; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--dourado); color: var(--tinta); font-size: 0.7rem; font-weight: 800; align-items: center; justify-content: center; margin-left: auto; }
.msg-in { background: var(--vidro); border: 1px solid var(--borda); border-radius: 14px; padding: 12px 14px; }
.msg-in .de { display: flex; justify-content: space-between; gap: 10px; font-size: 0.78rem; color: var(--texto-fraco); margin-bottom: 4px; }
.msg-in .txt { font-size: 0.92rem; }
.msg-in.nova { border-left: 3px solid var(--dourado-forte); }
.carregando { color: var(--texto-fraco); padding: 30px; text-align: center; }
.exemplo { font-size: 0.74rem; color: var(--texto-fraco); margin-top: 28px; }

/* ---------- tela de entrada (mesma do Madruga) ---------- */
.entrada { min-height: 100dvh; display: grid; grid-template-columns: 1fr 1fr; }
.painel-marca {
  position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  padding: 54px 52px 50px; background: var(--tinta); color: #fff; overflow: hidden;
  background-image:
    radial-gradient(46rem 34rem at 4% -8%, rgba(246, 205, 130, 0.20), transparent 58%),
    radial-gradient(38rem 30rem at 96% 104%, rgba(255, 255, 255, 0.07), transparent 60%);
}
.painel-marca::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--dourado); }
.painel-meio { max-width: 30rem; }
.painel-titulo { font-size: clamp(1.6rem, 2.4vw, 2.15rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.03em; margin: 0 0 16px; color: #fff; }
.painel-texto { font-size: 0.98rem; line-height: 1.65; color: rgba(255, 255, 255, 0.78); margin: 0; }
.painel-lista { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.painel-lista li { position: relative; padding-left: 26px; font-size: 0.9rem; line-height: 1.5; color: rgba(255, 255, 255, 0.86); }
.painel-lista li::before { content: ''; position: absolute; left: 0; top: 0.52em; width: 12px; height: 2px; background: var(--dourado); }
.painel-pe { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); }
.painel-form { display: grid; place-items: center; padding: 40px 24px; }
.cartao-entrada { width: 100%; max-width: 420px; padding: 30px 28px; overflow: hidden; position: relative; }
.cartao-entrada .fio-dourado { position: absolute; left: 0; right: 0; bottom: 0; }
.cartao-titulo { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 4px; }
.cartao-entrada label { display: block; font-size: 0.8rem; font-weight: 600; margin: 14px 0 6px; color: var(--texto-fraco); }
.cartao-entrada .aviso.erro { margin-top: 14px; }

@media (max-width: 1000px) {
  .app { grid-template-columns: 1fr; }
  .rail { position: static; height: auto; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px; border-right: 0; border-bottom: 1px solid var(--borda); }
  .rail .marca-bloco { flex-direction: row; border: 0; padding: 0; margin: 0 8px 0 0; }
  .rail .marca-logo { width: 100px; height: 47px; }
  .rail nav { flex-direction: row; flex-wrap: wrap; }
  .rail .sep, .rail .numero { display: none; }
  .rail .fim { border: 0; margin: 0 0 0 auto; padding: 0; }
  .grid.c4, .grid.c3, .grid.c2, .grid.duas, .escolha { grid-template-columns: 1fr; }
  .pagina { padding: 20px 16px; } .topbar { padding: 10px 16px; }
}
@media (max-width: 860px) {
  .entrada { grid-template-columns: 1fr; }
  .painel-marca { padding: 26px 22px 24px; gap: 18px; flex-direction: row; align-items: center; justify-content: flex-start; }
  .painel-meio, .painel-pe { display: none; }
  .painel-marca .marca-logo.grande { width: 132px; height: 62px; }
  .painel-form { padding: 26px 18px 40px; align-items: start; }
  .cartao-entrada { padding: 24px 20px; }
}
