.servicios {

  padding: 40px 24px;
}
.tabs {

  margin: 24px 0;

  display: flex;

  gap: 12px;

}
.tab-btn {

  padding: 10px 16px;

  border: 1px solid #ccc;

  background: #f5f5f5;

  cursor: pointer;
}
.tab-btn.active {

  background: #ddd;

  font-weight: bold;
}

.tab-content {

  display: none;

  margin-top: 24px;

}

.tab-content.active {

  display: block;
}

