*, *::before, 
*::after { 
  margin:0;
   padding:0; 
   box-sizing:border-box;
   }

:root {
  --verde:        #2e7d32;
  --verde-escuro: #1b5e20;
  --amarelo:      #f4c542;
  --cinza:        #f2f1ef;
  --Bordo:        #6b0101;
         
  --cinza-medio:  #ddd;
  --cinza-texto:  #666;
  --bege:         #F5EEDC;
  --texto:        #1a1a1a;
  --sombra:       0 2px 10px rgba(0,0,0,0.08);
  --trans:        0.2s ease;

  /* Touch targets mínimos */
  --touch-min: 44px;
}

body {
  background: var(--cinza);
  color: var(--texto);
  font-family: "Domine", serif;
  font-optical-sizing: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
   max-width:100%;
    display:block;
   }
a   { 
  color:inherit; 
  text-decoration:none; 
}

.container {
  max-width: 1160px;
  margin: auto;
  padding: 0 16px;
}


/* =========================
   CABEÇALHO
========================= */

.cabecalho-topo {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../img/escola.png') center / cover no-repeat;
  padding: 20px 0;
  position: relative;
}

.cabecalho-topo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-escuro), var(--amarelo), var(--verde-escuro));
}

.topo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.identidade {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.logo-jornal {
  height: 80px;
  border-radius: 6px;
  flex-shrink: 0;
}

.titulo-jornal {
  min-width: 0;
}

.titulo-jornal h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  word-break: break-word;
}

.titulo-jornal h1 span { color: var(--cinza); }

.titulo-jornal p {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.logo-escola {
  width: 80px;
  background: white;
  padding: 4px;
  border-radius: 5px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
  flex-shrink: 0;
}


/* =========================
   MENU
========================= */

.menu {
  background: var(--verde-escuro);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-family: 'Playfair Display', Georgia, serif;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.menu-links {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;

    gap: 6px;
    padding: 0 12px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;

    white-space: nowrap;
}

.menu-links a {
      display: flex;
    align-items: center;

  padding: 0 8px;

    min-height: 56px;
   font-size: 10px;
    font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;

    flex-shrink: 0;
}

.menu-links::-webkit-scrollbar {
    display: none;
}


.menu-links a:hover,
.menu-links a.ativo {
  color: var(--amarelo);
}

.menu-mobile {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
  padding: 0 16px;
  user-select: none;
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}


/* =========================
   CORPO
========================= */

.corpo { padding: 20px 0 48px; }


/* =========================
   BLOCO MANCHETE
========================= */

.bloco-manchete {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  margin-bottom: 28px;
}


/* =========================
   CARROSSEL
========================= */

.carrossel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: #111;
}

.carrossel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-escuro), var(--amarelo), var(--verde-escuro));
  z-index: 20;
}

.slides { position: relative; }

.slide { display: none; position: relative; }
.slide.ativo { display: block; animation: fadeIn .6s ease; }

.slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.texto-slide {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 22px 22px;
  background: linear-gradient(
      to top,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.65) 40%,
      rgba(0,0,0,0.15) 75%,
      transparent 100%
  );
  color: white;
}

.texto-slide .cat {
  display: inline-block;
  background: var(--verde);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.texto-slide h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Setas do carrossel */
.seta {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-tap-highlight-color: transparent;
}

.seta:hover,
.seta:active {
  background: var(--verde);
  border-color: var(--verde);
}

.anterior { left: 10px; }
.proximo  { right: 10px; }

/* Indicadores */
.indicadores {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 10;
}

.indicador {
  width: 7px; height: 7px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.indicador.ativo {
  background: var(--amarelo);
  width: 22px;
  border-radius: 4px;
}


/* =========================
   ÚLTIMAS NOTÍCIAS (sidebar)
========================= */

.ultimas {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  max-height: 440px;
}

.ultimas-header {
  background: linear-gradient(90deg, var(--verde-escuro), var(--verde));
  color: white;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.ultimas-header::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--amarelo);
  border-radius: 3px;
  flex-shrink: 0;
}

.ultimas-lista {
  list-style: none;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ultimas-lista::-webkit-scrollbar {
  width: 4px;
}

.ultimas-lista::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 10px;
}

.ultimas-item:nth-child(n+6) {
  display: none;
}

.ultimas-item {
  border-bottom: 1px solid #f1f1f1;
  transition: 0.25s ease;
}

.ultimas-item:last-child {
  border-bottom: none;
}

.ultimas-item a {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  align-items: flex-start;
  width: 100%;
  min-height: var(--touch-min);
}

.ultimas-item:hover,
.ultimas-item:active {
  background: #fafafa;
}

.ultimas-item img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.ultimas-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ultimas-item-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--verde);
}

.ultimas-item-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--texto);
  transition: 0.2s ease;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ultimas-item:hover .ultimas-item-titulo,
.ultimas-item:active .ultimas-item-titulo {
  color: var(--verde);
}

.ultimas-rodape {
  border-top: 1px solid #f0f0f0;
  padding: 10px 14px;
  text-align: right;
  flex-shrink: 0;
}

.ultimas-rodape a {
  font-size: 11px;
  font-weight: 700;
  color: var(--verde);
  letter-spacing: 0.5px;
  transition: var(--trans);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.ultimas-rodape a:hover {
  color: var(--verde-escuro);
}


/* =========================
   SEÇÕES E GRID
========================= */

.secao { 
  margin-bottom: 32px;
}

.secao-titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--verde-escuro);
  padding-bottom: 10px;
  margin-bottom: 16px;
  gap: 8px;
}

.secao-titulo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--verde-escuro);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}

.secao-titulo h2::before {
  content: '';
  width: 4px; height: 20px;
  background: var(--amarelo);
  border-radius: 2px;
  flex-shrink: 0;
}

.secao-titulo a {
  font-size: 12px;
  font-weight: 600;
  color: var(--verde);
  transition: var(--trans);
  white-space: nowrap;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.secao-titulo a:hover {
  color: var(--verde-escuro); 
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* =========================
   CARD HORIZONTAL
========================= */

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sombra);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #ececec;
  -webkit-tap-highlight-color: transparent;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card:active {
  transform: translateY(-1px);
}

.card img {
  width: 120px;
  min-width: 120px;
  height: auto;
  min-height: 110px;
  object-fit: cover;
  object-position: center top;
  background: var(--cinza-medio);
  display: block;
  flex-shrink: 0;
}

.card-corpo {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 3px solid var(--amarelo);
  min-width: 0;
}

.card-corpo .cat {
  display: none;
}

.card-corpo h4 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--texto);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.card:hover h4,
.card:active h4 { 
  color: var(--verde); 
}

.card-corpo p {
  display: none;
}

.card-data {
  font-size: 11px;
  color: var(--cinza-texto);
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}


/* =========================
   CARD ENTREVISTA
========================= */

.card-entrevista {
  flex-direction: row;
  align-items: stretch;
}

.card-entrevista img {
  width: 130px;
  min-width: 130px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  flex-shrink: 0;
  background: var(--cinza-medio);
}

.card-entrevista .card-corpo {
  padding: 16px 14px;
  border-left: 3px solid var(--amarelo);
}

.card-entrevista .card-corpo .cat {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 4px;
  width: fit-content;
}

.card-entrevista .card-corpo h4 {
  font-size: 14px;
  line-height: 1.35;
  -webkit-line-clamp: 3;
}

.card-entrevista .card-corpo p {
  display: -webkit-box;
  font-size: 12px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-entrevista:hover h4,
.card-entrevista:active h4 {
  color: var(--verde);
}


/* =========================
   ANIMAÇÕES
========================= */

.ph {
  background: linear-gradient(90deg, #e8e8e8 25%, #f4f4f4 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}

.rodape {
    background: var(--verde-escuro);
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 14px;
    letter-spacing: .5px;
}

.rodape a {
    color: var(--cinza);
    text-decoration: none;
    font-weight: 700;
}


/* ============================================================
   RESPONSIVO — TABLET (≤ 960px)
============================================================ */

@media (max-width: 960px) {

    .bloco-manchete {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ultimas {
        max-height: none;
        display: flex;
    }

    .ultimas-item:nth-child(n+6) {
        display: flex;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .card img {
        width: 100px;
        min-width: 100px;
    }

    .card-entrevista img {
        width: 110px;
        min-width: 110px;
    }

    .slide img {
        height: 380px;
    }
}

/* ============================================================
   RESPONSIVO — MOBILE (≤ 640px)
============================================================ */

@media (max-width: 640px) {

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 14px;
    }

    /* ───────── HEADER ───────── */

    .cabecalho-topo {
        position: relative;

        padding: 18px 14px 24px;

        overflow: hidden;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cabecalho-topo::before {
        content: "";

        position: absolute;
        inset: 0;

        background: rgba(0,0,0,0.45);

        z-index: 1;
    }

    .cabecalho-topo::after {
        z-index: 3;
    }

    .topo-inner {
        position: relative;
        z-index: 2;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 8px;
    }

    .identidade {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 6px;
    }

    .logo-jornal {
        width: auto;
        height: 88px;

        object-fit: contain;

        border-radius: 0;
    }

    .titulo-jornal {
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .titulo-jornal h1 {
        font-size: 21px;
        line-height: 1.1;

        color: #fff;

        white-space: normal;
        word-break: break-word;

        text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    }

    .titulo-jornal p {
        margin-top: 4px;

        font-size: 8px;
        line-height: 1.5;

        color: rgba(255,255,255,0.92);

        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    /* Logo escola igual ao print */
    .logo-escola {
        display: block !important;

        position: static;

        width: 76px;
        height: 76px;

        margin-top: 8px;

        background: #fff;

        padding: 5px;

        border-radius: 10px;

        object-fit: cover;

        box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    }

    /* ───────── MENU ───────── */

    .menu {
        position: relative;

        overflow: visible;
    }

    .menu-container {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        min-height: 60px;
    }

    .menu-mobile {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 100%;

        padding: 14px 0;

        font-size: 32px;

        color: #fff;

        cursor: pointer;

        user-select: none;

        z-index: 1000;
    }

    .menu-links {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: var(--verde-escuro);

        flex-direction: column;

        border-top: 2px solid var(--amarelo);

        z-index: 999;

        box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    }

    .menu-links.ativo {
        display: flex;
    }

    .menu-links li {
        width: 100%;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .menu-links li:last-child {
        border-bottom: none;
    }

    .menu-links a {
        display: flex;
        align-items: center;

        width: 100%;

        padding: 14px 20px;

        font-size: 13px;
        font-weight: 600;

        color: #fff;

        text-align: left;

        white-space: normal;

        min-height: 48px;
    }

    /* ───────── CORPO ───────── */

    .corpo {
        padding: 18px 0 42px;
    }

    /* ───────── MANCHETE ───────── */

    .bloco-manchete {
        gap: 14px;

        margin-bottom: 22px;
    }

    /* ───────── CARROSSEL ───────── */

    .carrossel {
        border-radius: 10px;
    }

    .slide img {
        height: 250px;
    }

    .texto-slide {
        padding: 34px 14px 14px;
    }

    .texto-slide .cat {
        font-size: 8px;

        padding: 3px 8px;
    }

    .texto-slide h2 {
        font-size: 16px;

        line-height: 1.35;
    }

    .seta {
        width: 34px;
        height: 34px;

        font-size: 13px;
    }

    .anterior {
        left: 8px;
    }

    .proximo {
        right: 8px;
    }

    /* ───────── ÚLTIMAS ───────── */

    .ultimas {
        border-radius: 10px;

        max-height: none;
    }

    .ultimas-header {
        font-size: 12px;

        padding: 13px 14px;
    }

    .ultimas-item a {
        padding: 10px;
    }

    .ultimas-item img {
        width: 70px;
        height: 56px;
    }

    .ultimas-item-titulo {
        font-size: 12px;
    }

    .ultimas-rodape {
        padding: 10px 12px;
    }

    /* ───────── GRID ───────── */

    .grid-3 {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    /* ───────── SEÇÕES ───────── */

    .secao {
        margin-bottom: 26px;
    }

    .secao-titulo {
        margin-bottom: 12px;

        padding-bottom: 10px;
    }

    .secao-titulo h2 {
        font-size: 16px;
    }

    .secao-titulo a {
        font-size: 11px;
    }

    /* ───────── CARDS ───────── */

    .card {
        flex-direction: row;

        align-items: stretch;

        border-radius: 10px;
    }

    .card img {
        width: 100px;
        min-width: 100px;

        min-height: 100px;

        object-position: center 20%;
    }

    .card-corpo {
        padding: 10px 12px;
    }

    .card-corpo h4 {
        font-size: 13px;

        line-height: 1.35;

        -webkit-line-clamp: 3;
    }

    .card-data {
        font-size: 10px;
    }

    /* ───────── ENTREVISTAS ───────── */

    .card-entrevista {
        flex-direction: row;
    }

    .card-entrevista img {
        width: 100px;
        min-width: 100px;

        min-height: 120px;

        aspect-ratio: auto;

        object-position: center 15%;
    }

    .card-entrevista .card-corpo {
        padding: 10px 12px;
    }

    .card-entrevista .card-corpo h4 {
        font-size: 13px;

        -webkit-line-clamp: 3;
    }

    .card-entrevista .card-corpo p {
        display: none;
    }

    /* ───────── RODAPÉ ───────── */

    .rodape {
        padding: 20px 14px;

        font-size: 11px;

        line-height: 1.7;
    }
}

/* ============================================================
   RESPONSIVIDADE
============================================================ */

@media (max-width: 992px) {

    .logo-escola {
        width: 90px;
    }

    .titulo-jornal h1 {
        font-size: 32px;
    }
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    /* ───────── HEADER ───────── */

    .cabecalho-topo {
        position: relative;

        padding: 18px 16px 24px;

        overflow: hidden;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cabecalho-topo::before {
        content: "";

        position: absolute;
        inset: 0;

        background: rgba(0,0,0,0.45);

        z-index: 1;
    }

    .cabecalho-topo::after {
        z-index: 3;
    }

    .topo-inner {
        position: relative;
        z-index: 2;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 8px;

        text-align: center;
    }

    .identidade {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 6px;
    }

    .logo-jornal {
        width: auto;
        height: 90px;

        object-fit: contain;

        border-radius: 0;
    }

    .titulo-jornal {
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .titulo-jornal h1 {
        font-size: 21px;
        line-height: 1.1;

        color: #fff;

        white-space: normal;
        word-break: break-word;

        text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    }

    .titulo-jornal p {
        margin-top: 4px;

        font-size: 8px;
        line-height: 1.5;

        color: rgba(255,255,255,0.92);

        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    /* Logo escola igual ao print */
    .logo-escola {
        display: block !important;

        position: static;

        width: 76px;
        height: 76px;

        margin-top: 8px;

        background: #fff;

        padding: 5px;

        border-radius: 10px;

        object-fit: cover;

        box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    }

    /* ───────── MENU ───────── */

    .menu {
        position: relative;

        overflow: visible;
    }

    .menu-container {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        min-height: 60px;
    }

    .menu-mobile {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 100%;

        padding: 14px 0;

        font-size: 32px;

        color: #fff;

        cursor: pointer;

        user-select: none;
    }

    .menu-links {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: var(--verde-escuro);

        flex-direction: column;

        border-top: 2px solid var(--amarelo);

        z-index: 999;

        box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    }

    .menu-links.ativo {
        display: flex;
    }

    .menu-links li {
        width: 100%;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .menu-links li:last-child {
        border-bottom: none;
    }

    .menu-links a {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        width: 100%;

        padding: 14px 20px;

        font-size: 13px;
        font-weight: 600;

        color: #fff;

        text-align: left;

        white-space: normal;
    }

    /* ───────── CONTEÚDO ───────── */

    .corpo {
        padding: 26px 0 42px;
    }

    .historia {
        padding: 30px 0;
    }

    .titulo {
        font-size: 24px;

        margin-bottom: 18px;

        padding-left: 12px;

        border-left: 5px solid var(--verde);
    }

    .historia p {
        font-size: 15px;

        line-height: 1.8;

        max-width: 100%;
    }

    /* ───────── RODAPÉ ───────── */

    .rodape {
        padding: 22px 16px;

        font-size: 12px;

        line-height: 1.7;
    }
}

/* ============================================================
   MOBILE PEQUENO
============================================================ */

@media (max-width: 480px) {

    .cabecalho-topo {
        padding: 16px 12px 22px;
    }

    .logo-jornal {
        height: 80px;
    }

    .titulo-jornal h1 {
        font-size: 18px;
    }

    .titulo-jornal p {
        font-size: 7px;
    }

    .logo-escola {
        width: 68px;
        height: 68px;
    }

    .titulo {
        font-size: 21px;
    }

    .historia p {
        font-size: 14px;
    }
}

