/* ============================================================
   WhatsApp que Agenda — por Clínica que Converte
   Design tokens + esqueleto de navegação (Etapa 1)
   ============================================================ */

:root {
  /* Paleta oficial (spec item 3) */
  --ink: #0B2B33;
  --ink-800: #123943;
  --ink-700: #1a4750;
  --gold: #C6A15B;
  --gold-600: #ab8747;
  --gold-100: #f3e9d6;
  --off-white: #F7F6F2;
  --white: #FFFFFF;

  /* Cinzas neutros */
  --gray-900: #23282a;
  --gray-700: #4a5457;
  --gray-500: #7a8386;
  --gray-300: #cfd4d3;
  --gray-100: #e9eae7;

  /* Semânticas */
  --success: #2f7d5a;
  --success-bg: #e7f3ec;
  --warn: #b3791f;
  --warn-bg: #fbf1de;
  --danger: #a13d3d;
  --danger-bg: #f8e9e9;
  --info: #35618c;
  --info-bg: #e9f0f7;

  /* Superfícies */
  --bg: var(--off-white);
  --surface: var(--white);
  --border: var(--gray-100);
  --text: var(--ink);
  --text-muted: var(--gray-700);

  /* Forma */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 6px 20px rgba(11, 43, 51, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 43, 51, 0.16);

  /* Layout */
  --sidebar-w: 264px;
  --topbar-h: 60px;
  --content-max: 720px;

  /* Tipografia */
  --font-ui: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "DM Serif Display", Georgia, serif;

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  font-weight: 700;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

img,
svg {
  max-width: 100%;
}

/* Título institucional — usar com moderação, só em títulos selecionados */
.title-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------
   Botões
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.06s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-600);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ------------------------------------------------------------
   Cartões / superfícies genéricas
   ------------------------------------------------------------ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card + .card {
  margin-top: 16px;
}

.card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 4px;
}

.card__subtitle {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
}

/* ------------------------------------------------------------
   Formulários (usado em Minha Clínica e telas futuras)
   ------------------------------------------------------------ */
.field {
  margin-bottom: 16px;
}

.field:last-child {
  margin-bottom: 0;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--ink);
}

.field input[type="text"],
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
  color: var(--text);
}

.field textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.4;
}

.field input[type="text"]:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.field-row {
  display: grid;
  gap: 12px;
}

@media (min-width: 560px) {
  .field-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Itens repetíveis (profissionais, procedimentos) */
.repeat-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 12px;
  background: var(--off-white);
}

.repeat-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.repeat-item__title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
}

.repeat-item__remove {
  background: transparent;
  border: none;
  color: var(--danger);
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  padding: 4px 6px;
}

.repeat-empty {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 12px;
}

/* Aviso de armazenamento local + indicador de salvamento */
.storage-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-100);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 20px;
}

.save-indicator {
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.save-indicator.is-visible {
  opacity: 1;
}

.backup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* ------------------------------------------------------------
   Estrutura geral do app
   ------------------------------------------------------------ */
#app-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Topbar (sempre visível — mobile e desktop) */
.topbar {
  height: var(--topbar-h);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.topbar__brand-name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.topbar__brand-by {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.topbar__menu-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

/* Área principal: sidebar (desktop) + conteúdo */
.app-body {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}

/* Navegação — lista de itens compartilhada entre sidebar e drawer mobile */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-sep {
  margin: 12px 12px 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.nav-item:hover {
  background: var(--gold-100);
}

.nav-item.is-active {
  background: var(--ink);
  color: var(--white);
}

.nav-item__icon {
  font-size: 17px;
  width: 20px;
  text-align: center;
  flex: 0 0 auto;
}

/* Sidebar (desktop) */
.sidebar {
  display: none;
  flex-direction: column;
  width: var(--sidebar-w);
  flex: 0 0 var(--sidebar-w);
  background: var(--surface);
  border-right: 1px solid var(--border);
  overflow-y: auto;
}

/* Drawer (mobile) — reaproveita .nav-list dentro de um painel deslizante */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 43, 51, 0.45);
  z-index: 29;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82vw;
  max-width: 300px;
  background: var(--surface);
  z-index: 30;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

/* mesma ressalva de especificidade explicada acima, para o menu mobile */
.drawer[hidden] {
  display: none;
}

.drawer__header {
  padding: 18px 16px;
  background: var(--ink);
  color: var(--white);
}

/* Conteúdo principal */
.main-content {
  flex: 1 1 auto;
  min-width: 0;
  padding: 20px 16px 96px;
  overflow-y: auto;
}

.main-content__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ------------------------------------------------------------
   Placeholder de tela ainda não implementada (etapas futuras)
   ------------------------------------------------------------ */
.screen-placeholder {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}

.screen-placeholder__icon {
  font-size: 40px;
  margin-bottom: 12px;
}

/* ------------------------------------------------------------
   Onboarding (primeiro acesso)
   ------------------------------------------------------------ */
.onboarding-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--white);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* [hidden] precisa vencer o display:flex acima (mesma especificidade de
   classe + atributo > classe sozinha), senão o overlay nunca some. */
.onboarding-overlay[hidden] {
  display: none;
}

.onboarding-card {
  max-width: 420px;
  text-align: center;
}

.onboarding-card h1 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 14px;
}

.onboarding-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  margin-bottom: 28px;
}

.onboarding-card .btn-primary {
  margin-bottom: 12px;
}

.onboarding-card .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.onboarding-card .btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

/* ------------------------------------------------------------
   Situações — lista, card de situação, card de orientação
   ------------------------------------------------------------ */
.situacoes-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.situacao-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.situacao-numero {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.objetivo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.objetivo-badge--avancar {
  background: var(--success-bg);
  color: var(--success);
}

.objetivo-badge--nutrir {
  background: var(--warn-bg);
  color: var(--warn);
}

.objetivo-badge--informar {
  background: var(--info-bg);
  color: var(--info);
}

.card--personalizar {
  background: var(--off-white);
  margin: 14px 0 20px;
}

.campos-variaveis {
  grid-template-columns: 1fr;
  gap: 4px;
}

@media (min-width: 560px) {
  .campos-variaveis {
    grid-template-columns: 1fr 1fr;
  }
}

.campo-var {
  margin-bottom: 12px;
}

.mensagem-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 14px;
  background: var(--surface);
}

.mensagem-card__condicao {
  font-weight: 700;
  font-size: 12px;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.mensagem-card__preview {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.var-pendente {
  background: var(--gold-100);
  color: var(--gold-600);
  border-radius: 4px;
  padding: 1px 4px;
  font-weight: 700;
}

.orientacao-nota {
  font-style: italic;
  color: var(--text-muted);
  background: var(--off-white);
  border-left: 3px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 13.5px;
}

.opcoes-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.opcao-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  font-family: inherit;
}

.opcao-btn:hover {
  border-color: var(--gold);
  background: var(--gold-100);
}

.opcao-btn__texto {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.opcao-btn__badge {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.colapsavel {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 10px;
  background: var(--surface);
}

.colapsavel summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 13.5px;
}

.colapsavel p {
  margin: 10px 0 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

.orientacao-card {
  text-align: center;
  padding: 40px 24px;
}

.orientacao-card__icone {
  font-size: 40px;
  margin-bottom: 10px;
}

.orientacao-card__aviso {
  color: var(--text-muted);
  font-size: 13.5px;
  max-width: 480px;
  margin: 0 auto 20px;
}

.categoria-card {
  margin-bottom: 16px;
}

.situacoes-lista {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.situacao-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  font-family: inherit;
}

.situacao-item:hover {
  background: var(--gold-100);
  border-color: var(--gold);
}

.situacao-item__id {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: 4px;
  padding: 2px 6px;
}

.situacao-item__titulo {
  flex: 1 1 auto;
  font-size: 13.5px;
  color: var(--ink);
}

.situacao-item__nota {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

.situacao-item__objetivo {
  flex: 0 0 auto;
  font-size: 14px;
}

.lista-vazia {
  color: var(--text-muted);
  font-size: 13.5px;
  font-style: italic;
  margin: 0;
}

/* Favoritos: linha com botão de abrir + botão de remover separados */
.situacao-item--favorito {
  display: flex;
  align-items: center;
  gap: 4px;
}

.situacao-item--favorito .situacao-item__abrir {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  font-family: inherit;
}

.situacao-item--favorito .situacao-item__abrir:hover {
  background: var(--gold-100);
  border-color: var(--gold);
}

.favorito-remover {
  flex: 0 0 auto;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  padding: 6px 10px;
}

/* Botão de favoritar no card da situação */
.favorito-toggle {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  cursor: pointer;
  margin-left: auto;
}

.favorito-toggle.is-active {
  border-color: var(--gold);
  color: var(--gold-600);
  background: var(--gold-100);
}

/* ------------------------------------------------------------
   Busca
   ------------------------------------------------------------ */
.busca-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--text);
  margin-top: 4px;
}

.busca-input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.busca-resultados,
#home-busca-resultados {
  margin-top: 14px;
}

.busca-dica {
  color: var(--text-muted);
  font-size: 13.5px;
  font-style: italic;
  margin: 14px 0 0;
}

/* ------------------------------------------------------------
   Home — atalhos e recentes
   ------------------------------------------------------------ */
.home-busca h2 {
  margin-bottom: 2px;
}

.hub-grid,
.naosei-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hub-btn,
.naosei-btn {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
}

.hub-btn:hover,
.naosei-btn:hover {
  border-color: var(--gold);
  background: var(--gold-100);
}

.recentes-lista {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recente-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  cursor: pointer;
  font-family: inherit;
}

.recente-item:hover {
  background: var(--gold-100);
  border-color: var(--gold);
}

.recente-item__hora {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-600);
  font-variant-numeric: tabular-nums;
}

.recente-item__titulo {
  flex: 1 1 auto;
  font-size: 13.5px;
  color: var(--ink);
}

/* ------------------------------------------------------------
   Diagnóstico do Atendimento
   ------------------------------------------------------------ */
.diagnostico-intro p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.barra-progresso {
  height: 8px;
  border-radius: 999px;
  background: var(--gray-100);
  overflow: hidden;
}

.barra-progresso__preenchida {
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.diagnostico-progresso {
  margin-bottom: 14px;
}

.diagnostico-progresso__texto {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.diagnostico-pergunta {
  margin-top: 12px;
}

.diagnostico-opcoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.diagnostico-opcao {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  font-family: inherit;
}

.diagnostico-opcao:hover {
  border-color: var(--gold);
  background: var(--gold-100);
}

.diagnostico-opcao__letra {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagnostico-opcao__texto {
  font-size: 14px;
  color: var(--ink);
}

.resultado-geral {
  text-align: center;
}

.resultado-geral__pontuacao {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--ink);
  line-height: 1;
}

.resultado-geral__pontuacao span {
  font-family: var(--font-ui);
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 700;
}

.resultado-geral__faixa {
  font-weight: 700;
  font-size: 15px;
  margin: 8px 0 16px;
}

.area-linha {
  margin-bottom: 14px;
}

.area-linha:last-child {
  margin-bottom: 0;
}

.area-linha__topo {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.oportunidade-card p {
  margin: 0 0 6px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.oportunidade-card p:last-child {
  margin-bottom: 0;
}

.resposta-critica-card {
  background: var(--info-bg);
  border-color: var(--info);
}

.resposta-critica-card p {
  margin: 0 0 12px;
  font-size: 13.5px;
  color: var(--ink);
}

.plano-card .situacoes-lista {
  margin-bottom: 16px;
}

/* ------------------------------------------------------------
   Mini gerador de agendamento (dentro do card de situação)
   ------------------------------------------------------------ */
.mini-gerador-card {
  border: 1.5px solid var(--gold);
  background: var(--gold-100);
  margin: 20px 0;
}

.mini-gerador-card .mensagem-card {
  background: var(--surface);
}

.mini-gerador-sinal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

/* ------------------------------------------------------------
   Clínica que Converte (institucional)
   ------------------------------------------------------------ */
.institucional-hero {
  text-align: center;
  padding: 12px 8px 24px;
}

.institucional-hero h1 {
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 10px;
}

.institucional-hero p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}

.institucional-area .card__title {
  margin-bottom: 12px;
}

.institucional-pilares {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.institucional-pilares li {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* ------------------------------------------------------------
   Desktop layout (≥ 900px): sidebar fixa, sem drawer/bottom-nav
   ------------------------------------------------------------ */
@media (min-width: 900px) {
  .topbar__menu-btn {
    display: none;
  }

  .sidebar {
    display: flex;
  }

  .main-content {
    padding: 32px 40px 60px;
  }

  .main-content__inner {
    max-width: 880px;
  }

  .hub-grid,
  .naosei-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .institucional-hero h1 {
    font-size: 40px;
  }
}
