
.tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-top: 10px;
  margin-bottom: 10px;
}
.tab-label {
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  font-size: 18px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.tab-label::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #2b6e83;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.tab-label:hover::after {
  width: 100%;
  background: #ccc;
}
.active {
  color: #2b6e83;
  font-weight: bold;  
}
.active::after {
  width: 100%;
  background: #2b6e83;
}
.tab-content {
  display: none;
  /*padding: 20px;*/
  text-align: center;
}

@media screen and (max-width: 1680px) { /* Para pantallas más pequeñas */
  .tab-label {
    font-size: 14px; /* Tamaño más pequeño */
    padding: 8px 15px; /* Ajustar el espaciado si es necesario */
  }
}

@media screen and (max-width: 768px) { /* Para pantallas más pequeñas */
  .tab-label {
    font-size: 12px; /* Tamaño más pequeño */
    padding: 8px 15px; /* Ajustar el espaciado si es necesario */
  }
}

@media screen and (max-width: 480px) { /* Para móviles más pequeños */
  .tab-label {
    font-size: 12px;
    padding: 6px 10px;
  }

  
}