.news-section {
  padding: 82px 0;
  background: linear-gradient(
    180deg,
    rgba(20, 34, 84, 0.03),
    rgba(255, 255, 255, 0.6)
  );
}
.news-carousel-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.news-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(23, 43, 104, 0.14);
  background: #0e1b4d;
}
.news-track {
  display: flex;
  transition: transform 0.45s ease;
  touch-action: pan-y;
}
.news-slide {
  min-width: 100%;
  user-select: none;
}
.news-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.news-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.news-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: var(--azul-escuro);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--sombra);
}
.news-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.news-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #c7d3f7;
  cursor: pointer;
}
.news-dot.active {
  width: 28px;
  background: linear-gradient(135deg, var(--amarelo), var(--amarelo-escuro));
}

@media (max-width: 760px) {
  .news-slide img {
    object-fit: fill;
  }
}
