/**HEADER**/

.header-contenedor {
  background-color: var(--color-azul);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
}

.header-3-columnas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.header-2-columnas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.header-desk {
  display: none;
}

@media (min-width: 768px) {
  .header-desk {
    display: block;
  }

  .header-mobile {
    display: none;
  }
}

/**LOGO**/
.header__logo img {
  width: 160px;
}

/**BOTON **/
.header__boton {
  background-color: var(--color-amarillo);
  text-decoration: none;
  padding: 0.7rem 1.8rem;
  display: flex;
  align-items: center;
  max-width: 15rem;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 30rem;
}

.header__boton--icono {
  width: 2rem;
}

.header__boton--texto {
  color: var(--color-azul);
  font-size: 1.8rem;
  line-height: 1;
   font-weight: 600;
}

@media (min-width: 768px) {
  .header__boton {
    padding: 0.7rem 2.5rem;
  }
}

/**MENU MOBILE**/
.menu-abrir {
  width: 3rem;
  cursor: pointer;
  display: none;
}
.menu-cerrar {
  width: 3rem;
  cursor: pointer;
  display: none;
}
.menu-abrir.active {
  display: block;
}
.menu-cerrar.active {
  display: block;
}

/**NAVEGACION**/
.header__navegacion {
  margin-top: 1.5rem;
}

.header__navegacion ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.header__navegacion li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__link {
  text-decoration: none;
  color: var(--color-blanco);
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header__link--icono {
  width: 1.8rem;
  height: 1.8rem;
}

.header__link--texto {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
}

@media (min-width: 768px) {
  .header__navegacion {
    margin-top: 0;
  }
}
