.destaque-container {
  display: flex;
  max-width: 1100px;
  height: 420px;
  margin: 0px auto 30px auto;
  position: relative;
  justify-content: center;
}

.destaque-texto {
  width: 40%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  z-index: 2;
  position: relative;
  margin-right: -30px; /* sobreposição de 30px na imagem */
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90%; /* igual à altura da imagem */
  text-align: left
}

.destaque-imagem {
  width: 60%;
  background-size: cover;
  background-position: top center;
  border-radius: 20px;
}

.destaque-data {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.destaque-titulo {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.destaque-descricao {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.destaque-btn {
  display: inline-block;
  background-color: #005baa;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.destaque-btn:hover {
  background-color: #004080;
  color: #fff;
}

.titulo-limitado {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* número máximo de linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.post-item {
  padding: 0px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.10);
  margin-bottom: 25px;
  transition: 0.3s; 
  height: 300px;
}

.post-item:hover {
  transform: scale(1.03);
}

.post-item-thumbnail {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 200px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.10);
  padding: 10px;
  position: relative;
}

.post-item-data {
  background-color: #007cc2;
  color: #fff;
  padding: 5px 8px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  font-size: 12px;
  font-weight: bold;
  border-top-right-radius: 7px;
}

.post-item-content {
  padding: 12px 15px 0px 15px;
}

.post-item-cat {
  background-color: #03b34e;
  border-radius: 4px;
  padding: 6px 18px;
  color: #fff;
  font-size: 0.6em;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-top: 5px;
}

.post-item-content i {
  color: rgba(1, 43, 103, 0.5);
  font-size: 24px;
}

.post-item-titulo {
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 6px 0;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.posts-mais {
  border: 1px solid #1a202c;
  border-radius: 30px;
  background-color: #fff;
  color: #1a202c;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 24px;
  
}

.posts-mais:hover {
  border: 1px solid #1a202c;
  border-radius: 30px;
  background-color: #1a202c;
  color: #fff;
  
}

.btn-noticias-todas {
  border-radius: 7px 7px 0px 0px;
  padding: 8px 15px 7px 15px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background-color: #147ed2;
  transition: 0.3s;
}

.btn-noticias-todas:hover {
  background-color: #054979;
  text-decoration: none;
}

.noticia-info-compartilhar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 14px;
  color: #444;
}

.noticia-info-esquerda {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.noticia-info-esquerda .data {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
}

.categoria-box {
  background-color: orange;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

.noticia-info-direita {
  display: flex;
  align-items: center;
  gap: 10px;
}

.noticia-foto-materia {
  max-height: 300px;
  margin: 0px 0px 20px 20px;
  float: right;
}

.compartilhar-label {
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 4px;
}

.redes-sociais {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 13px;
  transition: transform 0.2s ease;
}

.icon-wrapper:hover {
  transform: scale(1.1);
}

.facebook { background-color: #3b5998; }
.whatsapp { background-color: #25D366; }
.email    { background-color: #6e6e6e; }
.messenger{ background-color: #0078FF; }
.x        { background-color: #000000; }
.linkedin { background-color: #0077B5; }


.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  padding: 15px 0px;
  color: #444;
  border-bottom: 1px solid #eee;
  margin-top: 20px;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  margin: 0 6px;
  display: flex;
  align-items: center;
}

.breadcrumb a:hover {
  text-decoration: none;
}

.breadcrumb span {
  color: #777;
  margin: 0 6px;
  display: flex;
  align-items: center;
}

.breadcrumb i {
  margin-right: 5px;
}

.breadcrumb .divider::before {
  content: '\f105'; /* Font Awesome: chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #bbb;
  margin: 0 8px;
}

@media (max-width: 600px) {
  .noticia-info-compartilhar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .noticia-info-direita {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .destaque-container {
    flex-direction: column-reverse;
    height: auto;
  }

  .destaque-texto, .destaque-imagem {
    width: 100%;
    margin: 0;
    position: static;
    transform: none;
    border-radius: 0;
    height: auto;
  }

  .destaque-texto {
    padding: 20px;
    box-shadow: none;
  }

  .noticia-foto-materia {
    max-height: 280px;
    float: none;
    display: block;
    margin: 10px auto;
  }
}