body.news-show .navbar {
  background-color: var(--red) !important; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050; 
  margin-bottom: 8vh;
}


body.news-show .navbar {
    backdrop-filter: none;           
    text-shadow: none;
}

body.news-show .nav-link {
  text-shadow: none !important;
}

.news-single {
  width: 50%;
  margin: 8vh auto 8vh auto;
}

.news-single img {
    width: 100%;
    height: auto; 
    display: block;
    border-radius: 10px;
}

.news-image-container {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    
}

.news-single img,
.news-single .card-text img,
.news-container img {
  height: auto;
}

.news-date {
    color: var(--grey-mid);
}

.share-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 4vh;
}

.share-label-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-weight: 500;
  color: #333;
}

.share-label-btn:hover {
  background-color: #ebeaea;
  cursor: pointer;
}

.share-label-btn i {
  font-size: 1rem;
}

.share-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: #333;
  transition: color 0.2s;
  border-radius: 50%;
  text-align: center;
}

.share-icons a:hover {
  color: var(--crisal-green-light);
}

.share-bar i {
  font-size: 1.5rem;
  color: var(--grey-mid);
  transition: color 0.3s ease;
}

.share-icons {
  display: flex;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.share-icons.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.share-icons a.facebook:hover i {
  color: #1877f2;
}

.share-icons a.twitter:hover i {
  color: #000000;
}

.share-icons a.linkedin:hover i {
  color: #0a66c2;
}

.share-icons a.whatsapp:hover i {
  color: #25d366;
}

.share-icons a.email:hover i {
  color: #000000;
}

@media screen and (max-width: 768px) {
  .news-single {
    width: 80%;
  }


  .share-icons a {
    width: 2.2rem;   /* menor largura */
    height: 2.2rem;  /* menor altura */
  }

  .share-bar i {
    font-size: 1.2rem; /* ícones das redes mais pequenos */
  }

  
}

@media (max-width: 1200px) {
  .news-single {
    margin-top: 4vh;
  }
}
