:root {
  /* Cambia el color primario a un tono de azul más oscuro porque viene definido incorrectamente como teal */
  --bulma-primary-h: 217deg;
  --bulma-primary-s: 77%;
  --bulma-primary-l: 39%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* corrige el comportamiento del dropdown en dispositivos móviles y desktop */
.navbar-dropdown {
  display: none;
}
.navbar-dropdown.is-active {
  display: block;
}

/* Ajusta el tamaño máximo de las imágenes en los items de la navbar para que se vean bien con el nuevo logo */
.navbar {
  --bulma-navbar-item-img-max-height: 4rem;
  padding: 0.5rem 0 0.5rem 0;
}

/* Ajusta el espacio entre el logo y el texto del isotipo para que se vean bien juntos */
#brand-isotipo {
  gap: 0;
  padding: 0 4rem 0 0;
}

/* Estilos para el bloque de texto e imagen en la sección principal */
.home-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Ajusta el tamaño de la imagen para que se vea bien en diferentes tamaños de pantalla */
.home-overview-image img {
  width: 100%;
  /* height: auto; */
  max-height: 65vh;
}

.home-ht-video {
  max-height: 65vh;
  height: fit-content;
  width: auto;
  aspect-ratio: 16/9;
  border-radius: 1rem;
}

.doc-video {
  max-height: 65vh;
  height: fit-content;
  width: auto;
  aspect-ratio: 16/9;
  border-radius: 1rem;
}

.custom-navbar-rounded {
  border-radius: 1rem;
  margin: 0 1rem 0 1rem;
}

.arg {
  background-image: url("/images/arg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.usa {
  background-image: url("/images/usa.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.text-content > p {
  text-align: justify;
  hyphens: auto;
}

.user-button {
  width: max-content;
  background-color: hsl(from var(--bulma-primary) h s l);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 50%;
}

.user-button :hover {
  background-color: hsl(217 60% 60%);
  border-radius: 50%;
}

.program-card:hover {
  background-color: hsl(from var(--bulma-primary-light) h s l);
}

.testimonial-card:hover {
  background-color: hsl(from var(--bulma-primary-light) h s l);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.quitted-tobbacco {
  display: none;
}

.cholesterol-med {
  display: none;
}

.sugar-med {
  display: none;
}

.preassure-med {
  display: none;
}

.in-centimeters {
  display: none;
  width: 47%;
}

.in-feet {
  display: block;
}

.in-pounds {
  display: block;
  width: 47%;
}

.in-kilograms {
  display: none;
  width: 47%;
}

.btn-ft {
  width: 50px;
}

.btn-cm {
  width: 50px;
}

.btn-lb {
  width: 50px;
}

.btn-kg {
  width: 50px;
}

/* .radio-eat {
  height: 45px;
  width: 40px;
} */

.radio-eat input[type="radio"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-eat input[type="radio"]:checked + .radio-btn {
  color: white;
  background-color: black;
  border-color: black;
}

.radio-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid black;
  background-color: white;
  border-radius: 20px;
}

.radio-gap {
  gap: 0.5rem;
}

.form-step .field {
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
}

/* En pantallas grandes, muestra el texto e imagen lado a lado */
@media (min-width: 768px) {
  .home-overview {
    flex-direction: row;
    justify-content: center;
  }
  .home-overview-text {
    max-width: 40%;
  }
  .home-overview-image {
    max-width: 40%;
  }
  body {
    padding-top: 1.5rem; /* Agrega espacio para la navbar fija */
  }
  .registered-user-button {
    margin-bottom: 0 !important;
  }
  .text-content {
    padding: 0 6rem 0 6rem;
  }
}
