/* Fondo de las tabs (wrapper completo) */
.tabs-background {
  background-color: #f7f7f7;
  border-radius: 44px;
  width: fit-content;
  padding: 5px 10px;
  margin: 0 auto;
}

/* Nav interno (solo alinea las tabs) */
.project-tabs__nav {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Cada tab */
.project-tabs__item {
  width: 250px;
  height: 45px;
  background-color: transparent;
  border: none;
  border-radius: 44px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.project-tabs__item.is-active {
  background: linear-gradient(90deg, #FFCE00 0%, #FFB000 100%);
  color: #fff;
}

.project-tabs__panel {
  display: none;
}

.project-tabs__panel.is-active {
  display: block;
}

@media (max-width: 767px) {
  .tabs-background {
    width: 100%;
    padding: 0 1rem;
    border-radius: 0;
    margin-bottom: 2rem; 
  }

  .project-tabs__nav {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .project-tabs__item {
    width: 100%;
    height: 48px;
    font-size: 0.875rem;
    border-radius: 9999px;
  }
}
