.custom-tabs .menu-tabs {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 10px;
}

.custom-tabs .boton-tab {
  padding: 10px 60px;
  background: var(--color-azul-pastel);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  width: 100%;
}

.custom-tabs .boton-tab.active {
  background: var(--porto-primary-color, #263689);
}

.custom-tabs .contenido-tab {
  display: none;
}

.custom-tabs .contenido-tab.active {
  display: block;
}

@media (min-width: 768px) {
  .custom-tabs .menu-tabs {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .custom-tabs .boton-tab {
    width: auto;
    min-width: 150px;
  }

  .seccion-tab:has(.listado-con-iconos) {
    column-span: all;
  }
}
