* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
}

/* HERO */
.noticias-hero {
  background: url('../../src/img/imgNoticias.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.noticias-content h1 {
  font-size: 60px;
  font-weight: 900;
  background-color: #922124;
  color: white;
  padding: 15px 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.cta {
  font-size: 18px;
  font-weight: 900;
  background-color: #922124;
  color: white;
  padding: 12px 20px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
  transform-origin: left center;
}

.cta:hover {
  transform: scale(1.1);
}

/* LISTA DE NOTÍCIAS */
.noticias-lista {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  flex-wrap: wrap;
}

.noticia-card {
  width: 300px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.noticia-card h2 {
  font-size: 24px;
  font-weight: 900;
}

.noticia-card p {
  font-size: 16px;
  line-height: 1.5;
}

.noticia-card a {
  color: black;
}

.noticia-card .btn {
  background-color: white;
  color: black;
  font-weight: 900;
  padding: 10px 15px;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s ease;
}

.noticia-card .btn:hover {
  opacity: 0.9;
}

.vermelho {
  background-color: #922124;
}

.azul {
  background-color: #0056b3;
}

/* RESPONSIVO – MOBILE */
@media screen and (max-width: 768px) {
  .noticias-hero {
    height: auto;
    padding: 60px 20px;
    text-align: center;
    justify-content: center;
    background-position: top;
  }

  .noticias-content h1 {
    font-size: 28px;
    background: none;
    color: #922124;
  }

  .cta {
    font-size: 16px;
    padding: 10px 15px;
    background-color: #922124;
    margin-top: 15px;
  }

  .noticias-lista {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .noticia-card {
    width: 100%;
    max-width: 350px;
  }
}