/************************************************/
/*************** SECCION NAVIGATOR **************/
/************************************************/

.navegacion {
    background-color: var(--backcolor-nav);
    padding: 1rem;
    height: 80px;
    box-sizing: border-box;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
  
    /* border-radius: 0 0 20px 20px; */
    box-shadow: 0 0 20px #ccccccd3;
}
  
.navegacion__logotipo {
    height: 100%;
    width: 430px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 1rem;
}

.navegacion__logotipo img {
  height: 100%;
  max-height: 45px;
}

.navegacion__logotipo span {
    text-align: center;
}

.menu {
  display: flex;
  justify-content: space-between;
  min-width: 170px;
  padding: 0 1% 0 0;
}


/* MENU HAMBURGUESA */
.menu__checkbox {
  display: none;
}
  
.menu__icono_checkbox {
  width: 40px;
  height: 40px;
  color: black;
  display: none;
}
  
.menu__icono_checkbox img {
  width: 100%;
  height: 100%;
}

/* QUERY DE MENU HAMBURGUESA */
@media (max-width: 1064px) {
  .menu {
    min-width: 0;
  }

  .menu__icono_checkbox {
    display: block;
  }

  .menu__items {
    background-color: #f3f3f3;

    position: fixed;
    width: 50vw;

    height: calc(100vh - 70px);
    bottom: 0;
    right: -50vw;
    border-radius: 5px;

    display: flex;
    flex-direction: column;
    transition: 0.5s;
  }

  .menu__items a {
    margin-top: 20px;
    margin-bottom: 10px;

    background-image: none;
  }

  .menu__checkbox:checked ~ .menu__items {
    right: 0;
  }
}

.menu__items {
  /* border: 2px solid red; */
  /* width: 700px; */
  padding: 1rem;
}
  
.menu__enlace {
  font-family: var(--title-font-family);
  font-size: 1.2rem;
  padding: 0.4rem;
  text-decoration: none;
  /* position: relative; */
  border-radius: 4px;
  display: inline-block;
  color: #333;
  margin-right: 1rem;
  min-width: 100px;
  text-align: center;
  /* border: 1px solid blue; */
  
  background-image: linear-gradient(#dadada, #dadada);
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: center;
  background-size:  0% 10%;

}

.menu__enlace--seleccionado {
  background-size: 100% 10% !important;
}

.menu__enlace:hover {
  background-image: linear-gradient(var(--backcolor-header-inicio), var(--backcolor-header-inicio));
  transition: 0.3s;
  background-size:  100% 10%;
}