/* ========================= */
/* RESET BÁSICO */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* TODAS AS IMAGENS */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================= */
/* CORPO */
/* ========================= */
body {
  font-family: "Georgia", "Times New Roman", serif;
  background-color: #dcecf5;
  color: #2b2b2b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================= */
/* TOPO DO JORNAL */
/* ========================= */
.topo-jornal {
  position: relative;
  text-align: center;
  padding: 120px 20px 100px;
  overflow: hidden;
  background-color: #fdfaf4;
  border-bottom: 2px solid #2b2b2b;
  background-image: url("img/mapa.jpg");
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: cover;
}

.topo-jornal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

/* TEXTO POR CIMA */
.topo-jornal p,
.topo-jornal h1,
.topo-jornal h2 {
  position: relative;
  z-index: 2;
}

.data {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nome-jornal {
  font-size: 56px;
  margin: 10px 0;
  line-height: 1.2;
}

.slogan {
  font-style: italic;
  color: #555;
  font-size: 16px;
}

/* MAPA DECORATIVO */
.mapa-fundo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  opacity: 0.15;
  z-index: 1;
}

/* ========================= */
/* MANCHETE PRINCIPAL */
/* ========================= */
.manchete-principal {
  text-align: center;
  padding: 40px 20px;
  background-color: #f7f2f3;
  border-bottom: 1px solid #ccc;
}

.manchete-principal h2 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.linha-fina {
  font-size: 18px;
  margin-bottom: 20px;
  color: #6b6b6b;
  line-height: 1.6;
}

.manchete-principal a {
  font-weight: bold;
  color: #2b2b2b;
  text-decoration: underline;
}

/* ========================= */
/* NOTÍCIAS */
/* ========================= */
.noticias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 60px;
}

.noticia {
  padding-bottom: 20px;
  border-bottom: 1px solid #aaa;
}

.noticia h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.noticia p {
  margin-bottom: 10px;
  font-size: 16px;
}

.noticia a {
  font-weight: bold;
  color: #2b2b2b;
  text-decoration: none;
}

.noticia a:hover {
  text-decoration: underline;
}

/* ========================= */
/* BLOCO CONTEXTO */
/* ========================= */
.contexto {
  background-color: #fff9e6;
  padding: 30px 40px;
  margin: 40px 60px;
  border-left: 6px solid #2b2b2b;
  border-radius: 8px;
}

.contexto h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contexto p {
  font-size: 16px;
}

/* ========================= */
/* CARD GIGANTE */
/* ========================= */
.card-gigante {
  background-color: #fffdf8;
  border-radius: 28px;
  padding: 42px;
  max-width: 850px;
  width: 90%;
  margin: 60px auto;
  border: 2px solid #000;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.04),
    5px 5px 0 #000;
}

.titulo-card {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #2f2f2f;
  line-height: 1.3;
}

.conteudo-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #3b3b3b;
}

/* ========================= */
/* IMAGEM USA */
/* ========================= */
.USA {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 24px auto;
}

/* ========================= */
/* RODAPÉ */
/* ========================= */
.rodape {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #2b2b2b;
  font-size: 14px;
  background-color: #fdfaf4;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */
@media (max-width: 768px) {

  body {
    line-height: 1.5;
  }

  .topo-jornal {
    padding: 80px 15px 70px;
    background-size: cover;
    background-position: center;
  }

  .mapa-fundo {
    width: 180px;
    opacity: 0.12;
  }

  .data {
    font-size: 12px;
  }

  .nome-jornal {
    font-size: 34px;
    line-height: 1.2;
  }

  .slogan {
    font-size: 14px;
    padding: 0 10px;
  }

  .manchete-principal {
    padding: 30px 15px;
  }

  .manchete-principal h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .linha-fina {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .noticias {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .noticia h3 {
    font-size: 20px;
  }

  .noticia p {
    font-size: 15px;
  }

  .contexto {
    margin: 20px;
    padding: 20px;
  }

  .contexto h4 {
    font-size: 18px;
  }

  .contexto p {
    font-size: 15px;
  }

  .card-gigante {
    width: 92%;
    padding: 24px 18px;
    margin: 30px auto;
    border-radius: 20px;
  }

  .titulo-card {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .conteudo-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .USA {
  width: 65%;
  max-width: 170px;
  min-width: 120px;
  margin: 18px auto;
}

  .rodape {
    font-size: 13px;
    padding: 15px;
  }
}