    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --dark:    #002124;
      --mid:     #004248;
      --light:   #F2F5F9;
      --teal:    #007D7A;
      --teal-dk: #005855;
      --teal-lt: #E8F4F4;
      --border:  #d6e2e4;
      --text:    #334a4d;
      --muted:   #7a9699;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Georama', sans-serif;
      background: var(--light);
      color: var(--dark);
      font-size: 15px;
      line-height: 1.7;
    }

    a { color: var(--teal); text-decoration: none; }
    a:hover { text-decoration: underline; }


    /* ── GOVBAR ── */
    .govnav-menu {
      max-width: 1142px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      align-items: center;
      gap: 14px;
      height: 36px;
    }
    .govnav-menu a {
      font-size: 12px;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      white-space: nowrap;
    }
    .govnav-menu a:hover { color: #fff; text-decoration: none; }
    .govnav-logo { display: flex; align-items: center; margin-right: 6px; }
    .govnav-sep {
      width: 1px;
      height: 14px;
      background: rgba(255,255,255,0.25);
      flex-shrink: 0;
    }

    /* ── HEADER ── */
    .header {
      background: var(--dark);
      padding: 0 32px;
      display: flex;
      align-items: center;
      height: 60px;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-left {
      display: flex;
      align-items: center;
      gap: 20px;
      max-width: 1142px;
      width: 100%;
      margin: auto;
    }
    .header-logo {
      font-weight: 700;
      font-size: 24px;
      color: #fff;
      letter-spacing: 2px;
      flex-shrink: 0;
    }
    .header-sep {
      width: 1px;
      height: 22px;
      background: rgba(255,255,255,0.2);
    }
    .btn-sair {
      display: flex;
      align-items: center;
      gap: 7px;
      background: none;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 32px;
      padding: 7px 16px;
      color: rgba(255,255,255,0.65);
      font-size: 13px;
      font-weight: 500;
      font-family: 'Georama', sans-serif;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }
    .btn-sair:hover {
      border-color: rgba(255,255,255,0.5);
      color: #fff;
      background: rgba(255,255,255,0.07);
      text-decoration: none;
    }
    .btn-sair svg { opacity: 0.7; flex-shrink: 0; }
    .btn-sair:hover svg { opacity: 1; }

    .breadcrumb-bar {
      background: var(--mid);
      padding: 10px 32px;
    }
    .breadcrumb {
      max-width: 1142px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      /* Neutraliza o estilo de .breadcrumb do Bootstrap (fundo cinza/padding/raio) */
      background: transparent;
      padding: 0;
      border-radius: 0;
      flex-wrap: wrap;
    }
    .breadcrumb a { color: rgba(255,255,255,0.5); }
    .breadcrumb a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
    .breadcrumb .sep { color: rgba(255,255,255,0.25); }
    .breadcrumb .current { color: rgba(255,255,255,0.8); }

    /* ── HERO ── */
    .hero {
      background: url('../images/bgvitrine.jpg') center center / cover no-repeat;
      padding: 52px 32px 56px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(0,125,122,0.08);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: 30%;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      pointer-events: none;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,125,122,0.25);
      border: 1px solid rgba(0,125,122,0.4);
      border-radius: 32px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 600;
      color: #7DD1CE;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 16px;
    }
    .hero-title {
      font-size: 38px;
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .hero-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.72);
      max-width: 580px;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .hero-chips {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .hero-chip {
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 7px 14px;
      font-size: 13px;
      color: rgba(255,255,255,0.85);
    }
    .hero-chip strong { color: #fff; font-weight: 600; }
    .hero-chip svg { opacity: 0.6; flex-shrink: 0; }

    /* btn-inscrever-hero também usado no card da sidebar */
    .vagas-text {
      font-size: 12px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .vagas-text strong { font-weight: 700; font-size: 15px; }
    .vagas-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .btn-inscrever-hero {
      width: 100%;
      background: var(--teal);
      color: #fff;
      border: none;
      border-radius: 32px;
      padding: 13px;
      font-size: 15px;
      font-weight: 700;
      font-family: 'Georama', sans-serif;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .btn-inscrever-hero:hover { background: var(--teal-dk); }
    .btn-inscrever-hero:active { transform: scale(0.99); }
    .hero-cta-note {
      font-size: 11px;
      color: var(--muted);
      text-align: center;
      margin-top: 10px;
      line-height: 1.4;
    }

    /* Hero coluna única agora */
    .hero-inner { max-width: 1142px; margin: 0 auto; position: relative; z-index: 1; }

    /* Card de inscrição na sidebar */
    .inscricao-card {
      background: #fff;
      border-radius: 20px;
      border: 1px solid #C8D1E0;
      padding: 16px;
      margin-bottom: 20px;
      box-shadow: 0 4px 16px rgba(0,125,122,0.1);
    }
    .inscricao-card-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }
    .inscricao-card-date {
      font-size: 19px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .inscricao-card-rows { margin-bottom: 12px; }
    .inscricao-card-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 0;
      border-bottom: 1px solid #f0f3f4;
      font-size: 12px;
    }
    .inscricao-card-row:last-child { border: none; }
    .inscricao-card-key { color: var(--muted); }
    .inscricao-card-val { font-weight: 600; color: var(--dark); text-align: right; }
    .body-wrap {
      max-width: 1142px;
      margin: 0 auto;
      padding: 48px 0px 80px;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 40px;
      align-items: start;
    }
    /* Coluna única (ex.: catálogo, sem turmas na sidebar) */
    .body-wrap.single { grid-template-columns: 1fr; }

    /* Impede que conteúdo largo (palavra/URL longa, tabela, imagem, <pre>)
       estoure a coluna 1fr e empurre a sidebar. Itens de grid têm
       min-width:auto por padrão; min-width:0 deixa o track encolher. */
    .body-wrap > main { min-width: 0; }
    .content-section .rich-text { overflow-wrap: break-word; }
    .content-section .rich-text img,
    .content-section .rich-text table,
    .content-section .rich-text pre { max-width: 100%; }
    .content-section .rich-text table { display: block; overflow-x: auto; }
    .content-section .rich-text pre { white-space: pre-wrap; }

    /* ── CONTENT ── */
    .content-section { margin-bottom: 40px; }
    .content-section:last-child { margin-bottom: 0; }

    /* ── SUMÁRIO DE ÂNCORAS ── */
    .sumario {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 36px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .sumario a {
      font-size: 13px;
      font-weight: 500;
      color: var(--mid);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 5px 14px;
      transition: all 0.2s;
      text-decoration: none;
    }
    .sumario a:hover {
      background: var(--teal-lt);
      border-color: var(--teal);
      color: var(--teal);
      text-decoration: none;
    }
    .sumario a.active {
      background: var(--teal-lt);
      border-color: var(--teal);
      color: var(--teal-dk);
    }

    /* Turma encerrada — tom escuro */
    .turma-encerrada-card { opacity: 0.75; filter: saturate(0.4); }
    .turma-encerrada-card:hover { opacity: 0.9; filter: saturate(0.6); }
    .turma-body-closed { background: #f5f6f7; }
    .turma-row-closed .turma-row-key { color: #a0aaab; }
    .turma-row-closed .turma-row-val { color: #7a8a8b; }
    .turma-toggle-closed { color: #a0aaab; border-top-color: #ebebeb; }
    .turma-toggle-closed:hover { color: var(--muted); }
    .turma-expand-closed { background: #f0f2f3; }
    .turma-dia-closed { color: #8a9a9b; }
    .dia-badge-closed { background: #e4e8e9; color: #6a7a7b; }

    .section-heading {
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--teal-lt);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-heading svg, .section-heading i { color: var(--teal); flex-shrink: 0; font-size: 18px; }

    .content-section ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .content-section ul li {
      font-size: 14px;
      color: var(--text);
      padding-left: 22px;
      position: relative;
      line-height: 1.65;
    }
    .content-section ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--teal);
    }

    .content-section p {
      font-size: 14px;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 10px;
    }
    .content-section p:last-child { margin-bottom: 0; }

    .topicos-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .topico-pill {
      background: var(--teal-lt);
      border: 1px solid #b0d8d7;
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 13px;
      color: #00504e;
      font-weight: 500;
      transition: background 0.2s, border-color 0.2s;
    }
    .topico-pill:hover { background: #d0ecec; border-color: #7ec8c6; }

    /* Outras informações */
    .info-bloco { margin-bottom: 24px; }
    .info-bloco:last-child { margin-bottom: 0; }
    .info-bloco-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--mid);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .info-bloco-title::before {
      content: '';
      width: 3px;
      height: 14px;
      background: var(--teal);
      border-radius: 2px;
    }
    .info-bloco ul li { font-size: 13px; }
    .info-bloco a { color: var(--teal); }

    /* ── SIDEBAR ── */
    .sidebar { position: sticky; top: 80px; }

    .turmas-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--mid);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 14px;
    }

    .turma-card {
      background: #fff;
      border-radius: 20px;
      border: 1px solid #C8D1E0;
      overflow: hidden;
      margin-bottom: 14px;
      transition: box-shadow 0.2s;
    }
    .turma-card:hover { box-shadow: 0 4px 16px rgba(0,33,36,0.08); }
    .turma-card.available { border-color: var(--teal); }

    .turma-head {
      padding: 14px 18px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
    }
    .turma-head.avail { background: var(--mid); }
    .turma-head.closed { background: #445e61; }

    .turma-head-date {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }
    .turma-head-name {
      font-size: 11px;
      color: rgba(255,255,255,0.6);
      margin-top: 2px;
      font-weight: 500;
    }
    .turma-badge {
      background: rgba(0,125,122,0.35);
      border: 1px solid rgba(0,125,122,0.5);
      border-radius: 12px;
      padding: 3px 10px;
      font-size: 10px;
      font-weight: 700;
      color: #7DD1CE;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .turma-badge.closed-badge {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.45);
    }

    .turma-body { padding: 14px 18px; }
    .turma-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 8px;
      padding: 5px 0;
      border-bottom: 1px solid #f0f3f4;
      font-size: 12px;
    }
    .turma-row:last-child { border: none; }
    .turma-row-key { color: var(--muted); flex-shrink: 0; }
    .turma-row-val { font-weight: 500; color: var(--dark); text-align: right; }

    .turma-toggle {
      width: 100%;
      background: none;
      border: none;
      border-top: 1px solid #f0f3f4;
      padding: 9px 18px;
      font-size: 12px;
      color: var(--teal);
      font-family: 'Georama', sans-serif;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background 0.15s;
    }
    .turma-toggle:hover { background: #f5fafa; }
    .turma-toggle .arrow { margin-left: auto; transition: transform 0.2s; display: inline-block; }
    .turma-toggle.open .arrow { transform: rotate(180deg); }

    .turma-expand {
      display: none;
      border-top: 1px solid #f0f3f4;
      background: #fafcfc;
    }
    .turma-dias { padding: 12px 18px; display: flex; flex-direction: column; gap: 7px; }
    .turma-dia {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: var(--text);
    }
    .dia-badge {
      background: var(--teal-lt);
      color: var(--teal-dk);
      border-radius: 5px;
      padding: 2px 8px;
      font-weight: 700;
      font-size: 11px;
      min-width: 52px;
      text-align: center;
    }
    .dia-dow { color: var(--muted); font-size: 11px; min-width: 26px; }

    .turma-footer {
      padding: 12px 18px;
      background: #fafcfc;
      border-top: 1px solid #f0f3f4;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .vagas-info {
      font-size: 12px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .vagas-info strong { color: var(--teal); font-weight: 700; }

    .btn-inscrever {
      background: var(--teal);
      color: #fff;
      border: none;
      border-radius: 7px;
      padding: 9px 20px;
      font-size: 13px;
      font-weight: 700;
      font-family: 'Georama', sans-serif;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .btn-inscrever:hover { background: var(--teal-dk); }

    .btn-encerrado {
      background: #eef2f3;
      color: #9ab0b3;
      border: none;
      border-radius: 7px;
      padding: 9px 16px;
      font-size: 12px;
      font-family: 'Georama', sans-serif;
      cursor: default;
      white-space: nowrap;
    }

    /* Estado textual de inscrição (em breve / suspensa / encerrada) */
    .turma-status {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }
    .turma-status.closed { color: #9ab0b3; }

    /* Conteúdo rico (CKEditor) dentro das seções.
       Listas <ul> e parágrafos já são estilizados por .content-section. */
    .content-section .rich-text > *:first-child { margin-top: 0; }
    /* O CKEditor às vezes injeta list-style-type:disc inline no <ul>/<li>, que
       venceria a folha de estilo e somaria ao nosso marcador (::before). Forçamos
       a remoção do marcador nativo, mantendo apenas o "dot" teal. */
    .content-section .rich-text ul,
    .content-section .rich-text ul li { list-style: none !important; }
    .content-section .rich-text ol { list-style: decimal; padding-left: 22px; margin-bottom: 10px; }
    .content-section .rich-text ol li { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 4px; }
    .content-section .rich-text a { color: var(--teal); text-decoration: underline; }
    .content-section .rich-text strong { color: var(--dark); }
    .content-section .rich-text h2,
    .content-section .rich-text h3,
    .content-section .rich-text h4 {
      font-size: 15px; font-weight: 600; color: var(--dark); margin: 14px 0 6px;
    }

    /* Aviso quando não há turmas */
    .sidebar .alert {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      font-size: 13px;
      color: var(--text);
    }

    /* Botão "Solicite uma turma exclusiva" (catálogo) */
    .btn-turma-exclusiva {
      display: inline-block;
      background: var(--teal);
      color: #fff;
      border-radius: 32px;
      padding: 13px 28px;
      font-size: 15px;
      font-weight: 700;
    }
    .btn-turma-exclusiva:hover { background: var(--teal-dk); color: #fff; text-decoration: none; }

    /* Notificação */
    .notif-card {
      background: #fff;
      border-radius: 20px;
      border: 1px solid #C8D1E0;
      padding: 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 30px;
    }
    .notif-icon {
      width: 36px;
      height: 36px;
      background: var(--teal-lt);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .notif-body { flex: 1; }
    .notif-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .notif-text { font-size: 12px; color: var(--text); line-height: 1.5; margin-bottom: 10px; }
    .btn-notif {
      background: none;
      border: 1.5px solid var(--teal);
      border-radius: 6px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 600;
      color: var(--teal);
      font-family: 'Georama', sans-serif;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-notif:hover { background: var(--teal-lt); }

    /* Cursos relacionados */
    .relacionados {
      max-width: 1142px;
      margin: auto;
      grid-column: 1 / 2;
      margin-top: 8px;
      margin-bottom: 90px;
    }
    .rel-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 16px;
    }
    .rel-card {
      background: #fff;
      border-radius: 20px;
      border: 1px solid #C8D1E0;
      padding: 16px;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
      display: block;
    }
    .rel-card:hover {
      border-color: var(--teal);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,33,36,0.07);
      text-decoration: none;
    }
    .rel-card-tag {
      font-size: 10px;
      font-weight: 700;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 6px;
    }
    .rel-card-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.4;
    }

    /* Perguntas Frequentes */
    .faq-section {
      background: var(--dark);
      padding: 40px 32px;
    }
    .faq-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .faq-text { color: rgba(255,255,255,0.8); font-size: 15px; }
    .faq-text strong { color: #fff; display: block; font-size: 20px; margin-bottom: 6px; }
    .btn-faq {
      background: none;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 8px;
      padding: 11px 24px;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Georama', sans-serif;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .btn-faq:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

    /* ── Modais (login, recuperação, cadastro, lembrar-me) no tema da vitrine ── */
    .modal-content {
      border: none;
      border-radius: 20px;
      box-shadow: 0 16px 48px rgba(0,33,36,0.20);
      font-family: 'Georama', sans-serif;
      color: var(--text);
    }
    .modal-header { border-bottom: 1px solid var(--border); padding: 18px 22px; }
    .modal-title {
      font: 700 19px 'Georama', sans-serif !important;
      color: var(--dark) !important;
      text-transform: none !important;
    }
    .modal-body { padding: 22px; }
    .modal-body p,
    .modal-body span,
    .modal-body label,
    .modal-body h4,
    .modal-body h6 { font-family: 'Georama', sans-serif; }

    /* CTAs do modal (Acessar, gov.br, Recuperar, Cadastro) no estilo teal */
    .modal .botao3,
    .modal .btn-primary,
    .modal .btn-success {
      background: var(--teal);
      border: 1px solid var(--teal);
      color: #fff;
      border-radius: 32px;
      font: 700 15px 'Georama', sans-serif;
      padding: 12px 16px;
    }
    .modal .botao3:hover,
    .modal .btn-primary:hover,
    .modal .btn-success:hover { background: var(--teal-dk); border-color: var(--teal-dk); color: #fff; }

    /* Campos do formulário */
    .modal .form-control {
      font-family: 'Georama', sans-serif;
      border-radius: 8px;
      border-color: var(--border);
    }
    .modal .form-control:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 2px rgba(0,125,122,0.15);
    }

    /* Links e botão de fechar */
    .modal-body a { color: var(--teal); }
    .modal-body a:hover { color: var(--teal-dk); }
    .modal .close { color: var(--dark); opacity: 0.55; }
    .modal .close:hover { opacity: 1; }

    /* Animações */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-left > * {
      animation: fadeUp 0.5s ease both;
    }
    .hero-left > *:nth-child(1) { animation-delay: 0.05s; }
    .hero-left > *:nth-child(2) { animation-delay: 0.12s; }
    .hero-left > *:nth-child(3) { animation-delay: 0.19s; }
    .hero-left > *:nth-child(4) { animation-delay: 0.26s; }

    /* Responsive leve */
    @media (max-width: 900px) {
      .body-wrap { grid-template-columns: 1fr; }
      .sidebar { position: static; }
      .rel-grid { grid-template-columns: 1fr 1fr; }
    }
    .sumario-turmas-link { display: none; }

    @media (max-width: 900px) {
      .sumario-turmas-link { display: inline-flex; }
    }
    @media (max-width: 600px) {
      .govbar-links { display: none; }
      .hero { padding: 32px 20px 40px; }
      .hero-title { font-size: 26px; }
      .body-wrap { padding: 28px 20px 60px; }
      .rel-grid { grid-template-columns: 1fr; }
    }
