/*body {
/*  font-family: 'Montserrat', sans-serif;*/
  /*margin: 0;
  background-color: #f9f9f9;
  /*padding: 20px;*/
/*}*/

.noticias-container {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Estilo base para cada item */
.noticia-item {
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.noticia-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}
.linknews{
  text-decoration: none;
}

.data-hora {
  font-size: 0.9rem;
  color: #777;
  margin-top: 8px;
}

.titulo-noticia {
  font-size: 1.1rem;
  color: #111;
  margin-top: 5px;
}

/* Tablets maiores (2 colunas) */
@media (min-width: 469px) {
  .noticias-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .noticia-item {
    width: 48%;
  }
}

/* Desktops (3 colunas) */
@media (min-width: 680px) {
  .noticia-item {
    width: 30%;
  }

  .titulo-noticia {
    font-size: 1.2rem;
  }

  .data-hora {
    font-size: 1rem;
  }
}

/* Botão Veja Mais */
.btn-veja-mais {
  flex-basis: 100%;
  padding: 18px 30px;
  margin-top: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
}

.btn-veja-mais:hover {
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-veja-mais:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
}

.btn-veja-mais:disabled {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  cursor: not-allowed;
  opacity: 0.9;
  transform: translateY(0);
}
