.portfolio-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  margin: 0 5px 10px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: #ddd;
}

.tab-btn.active {
  background-color: #2c3e50;
  color: white;
}

/* Ocultar proyectos inicialmente según su categoría */
.proyecto-card {
  transition: all 0.3s ease;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .portfolio-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    margin-bottom: 10px;
    width: 200px;
  }
}
