.list-group-item {
    border: none; padding: 14px 20px;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.list-group-item:hover {
    background-color: #f5f5f5;
}

.text-orange {
    color: #ff6900
}

.bg-orange {
    background-color: #ff6900
}

.img-carousel {
    height: 400px;
    object-fit: cover;
}
.carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
}

/*NOTÍCIAS*/
    .news-card, .news-card-2 {
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .news-card:hover {
        transform: scale(1.02);
    }

    .news-card-2:hover {
        opacity: 0.6;
    }

    .news-img {
        height: 22vh;
        object-fit: cover;
        border-radius: 10px;
    }

    .news-category {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

  .news-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .news-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
  }

  @media (max-width: 768px) {
    .news-img {
      height: 18vh;
    }
  }

  /*NOTICIAS RELACIONADAS*/
  .related-card {
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.25s ease;
    height: 100%;
  }

  .related-card:hover {
    background: #f7f7f7;
  }

  .related-link {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;
    display: block;
  }

  .related-link:hover {
    color: #e30613;
  }

  @media (max-width: 768px) {
    .related-link {
      font-size: 0.9rem;
    }
  }

.footer-link {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    color: #fff;
}

.footer-social {
    color: #bbb;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social:hover {
    color: #dc3545;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover geral */
.social-icon:hover {
    transform: translateY(-3px);
}

/* Cores específicas */
.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

.social-icon.twitter:hover {
    background: #000;
}

.social-icon.youtube:hover {
    background: #ff0000;
}




.text-lowercase {
    text-transform: lowercase;
}


.nav-link {
    position: relative;
    padding: 8px 14px;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

/* hover discreto e elegante */
.nav-link:hover {
    color: #0d6efd;
}

/* ACTIVE mais sofisticado */
.nav-link.active {
    color: #0d6efd;
}

/* indicador tipo “pill underline” moderno */
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 2px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #66a3ff);
    border-radius: 999px;
    transform: scaleX(1);
    transform-origin: center;
    transition: all 0.25s ease;
}

/* efeito hover no active */
.nav-link.active:hover::after {
    left: 15%;
    right: 15%;
}

/* micro “glow” bem sutil */
.nav-link.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(13,110,253,0.12), transparent 70%);
    border-radius: 8px;
    opacity: 1;
    z-index: -1;
}

 .cursor-pointer {
    cursor: pointer;
    transition: all 0.3s ease;
}

/*EFEITO BRILHANDO*/
.brilho-deslizante :is(h1, h2, h3, h4, h5, h6){
    position: relative;
    margin: 0;
    padding-left: 18px;
    font-size: 2.3vh;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    overflow: hidden;
    transition: .25s ease;
}
/* barra vermelha */
.brilho-deslizante :is(h1, h2, h3, h4, h5, h6)::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    border-radius:30px;
    background:linear-gradient(
        to bottom,
        #ee1717,
        #fc8b4e
    );
    transition:.3s ease;
}
/* efeito passando no texto nas categorias*/
.brilho-deslizante :is(h1, h2, h3, h4, h5, h6)::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,.0) 35%,
        rgba(255,255,255,.85) 50%,
        rgba(255,255,255,.0) 65%,
        transparent 100%
    );
    transform:skewX(-25deg);
    transition:all 1.2s ease;
}
/* hover */
.brilho-deslizante:hover :is(h1, h2, h3, h4, h5, h6)::after{
    left: 140%;
}
.brilho-deslizante:hover :is(h1, h2, h3, h4, h5, h6)::before{
    width: 8px;
    box-shadow: 0 0 12px rgba(220,53,69,.35);
}