.seccion-tabs-noticias {
  gap: 32px;
  align-items: flex-start;
  padding: 32px 240px;
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
}


/* Contenedor de tabs */
.tabs-container {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 32px;
}

/* Botones de tabs */
.tab-button {
  padding: 8px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #1c1c1c;
  font-weight: 400;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Tab activo */
.tab-button.active {
  border-top: 1px solid #1c1c1c;
  border-left: 1px solid #1c1c1c;
  border-right: 1px solid #1c1c1c;
  border-bottom:transparent;
  noneborder-radius: 4px 4px 0 0;
  background: #f5f5f5;
  font-weight: bold;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
}

/* Contenido de tabs */
.tab-content {
  display: none;
  width: 100%;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Animación de fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}