:root {
    --color-primario: #EA031B;
    --color-secundario: #cc000e;
    --color-terciario: #ffffff;
    --color-cuaternario: #7f0307;
  }

  @font-face {
    font-family: 'SugoNum';
    src: url('../assets/fonts/sugo-regular.otf') format('truetype');
  }

  @font-face {
    font-family: 'Sugo';
    src: url('../assets/fonts/sugo-pro-display-regular.ttf') format('truetype');
  }


  
/* MENÚ LATERAL */
.menu-lateral {
  position: fixed;
  width: 70vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-71vw);
  z-index: 4;
  background-color: var(--color-primario);
  border-right: 1px solid var(--color-secundario);
  transition: 1s;
}

.items-menu-lateral {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  padding-bottom: 20px;

  border-bottom: 2px solid var(--color-terciario);

}

.titulos-menu-lateral {
  width: 100%;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-terciario);
}

/* Header del menu lateral */

.header-menu-lateral {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid var(--color-terciario);
  padding: 15px 0px;
}

.logo-menu-lateral {
  width: 60%;

}

/* Hasta aqui el header del menu lateral */
.redes-menu-lateral {
  width: 90%;
}

.redes-section {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}

.redes-section a {
  text-decoration: none;
  color: white;
  font-size: 1.1em;
  transition: 0.5s;
}

.redes-section a:hover {
  color: var(--color-secundario);
  transform: scale(1.1);
}

.social-network-nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-right: 15px;
}

.social-network-img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.social-network-img path {
  fill: white;
  transition: 0.4s;

}

.social-network-img:hover path {
  fill: var(--color-secundario);
}

/* El boton de apertura y cerrado */
#checkbox2 {
  display: none;
}

.toggle2 {
  position: fixed;
  z-index: 6;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition-duration: .5s;
  top: 15px;
  left: 15px;
}

.bars {
  width: 100%;
  height: 6px;
  background-color: var(--color-terciario);
  border-radius: 6px;
}

#bar5 {
  transition-duration: .8s;
}

#bar4,
#bar6 {
  width: 80%;
}

#checkbox2:checked+.toggle2 .bars {
  position: absolute;
  transition-duration: .5s;
}

#checkbox2:checked+.toggle2 #bar5 {
  transform: scaleX(0);
  transition-duration: .5s;
}

#checkbox2:checked+.toggle2 #bar4 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: .5s;
}

#checkbox2:checked+.toggle2 #bar6 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: .5s;
}

#checkbox2:checked+.toggle2 {
  transition-duration: .5s;
  transform: rotate(180deg);
}

/* fin del Boton de apertura y cerrado */
/* MENÚ LATERAL */