/* ---- CARROSSEL DE NOTÍCIAS ---- */
.noticias-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.noticias-nav {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 0.4rem;
}

.noticias-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--verde-claro);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.noticias-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.noticias-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.noticias-carrossel-wrap {
  overflow: hidden;
}

.noticias-carrossel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.noticias-carrossel .noticia-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

@media (max-width: 768px) {
  .noticias-carrossel .noticia-card {
    flex: 0 0 100%;
  }
}

/* ---- ATALHOS DE PRODUÇÕES ---- */
.producoes-atalhos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.producao-atalho {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  background: rgba(27, 81, 45, 0.05);
  border: 1px solid rgba(27, 81, 45, 0.12);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  transition: all 0.3s ease;
}

.producao-atalho:hover {
  background: rgba(27, 81, 45, 0.1);
  border-color: rgba(27, 81, 45, 0.25);
  transform: translateY(-2px);
}

.producao-atalho-icone {
  font-size: 1.4rem;
  color: var(--verde-escuro);
  opacity: 0.6;
}

.producao-atalho span:last-child {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--verde-escuro);
}

@media (max-width: 768px) {
  .producoes-atalhos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 660px) {
  .producoes-atalhos { grid-template-columns: 1fr; }
}
