*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary: #ec994b;
  --white: #ffffff;
  --bg: #f5f5f5;
  --magenta: #BF0625;
  --rosa: #e4007c;
  --cyan: #00a5bb;
  --azul: #114eab;
  --oscuro: #2a2a4e;
  --gris:  #212121;
  --negro: #1c1c1c;
  --blanco: #f0f0f0;
}

header{
  list-style-type: none;
  list-style: none;
  text-decoration: none;
  background-color: #1d1d1d;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  padding: 0 4rem;
  font-family: "Noto Sans";
  position: fixed;
  top: 0;
  z-index:100;
}
header .nav{
  width: auto;
  /*height: 5rem;*/
  display: flex;
  align-items: center;
  justify-content: end;
}
header ul{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}
header a{
  list-style-type: none;
  list-style: none;
  text-decoration: none;
  color: var(--blanco);
}
header li{
  color: whitesmoke;
  height: 5rem;
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header li:hover{
  background-color: var(--rosa);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
header #logo-nav-pc{
  margin-top: .5rem;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/nav/logo-black-background.png");
  background-size: cover;
  background-position: center center;
}
header #abrir-menu,
header #cerrar-menu,
header #logo-nav-cel,
header #icon-contact,
header .logo-cel{
  display: none;
}
@media screen and (max-width: 820px){
  header #abrir-menu{
    display: block;
    border: none;
    width: 2.8rem;
    height: 2.8rem;
    background-image: url("../img/nav/menu-icon.png");
    background-color: #1d1d1d ;
    background-size: cover;
    background-position: center center;
  }
  header #logo-nav-pc,
  header .logo-pc{
    display: none;
  }
  header .logo-cel{
    display: block;
    text-decoration: none;
  }
  header #logo-nav-cel{
    display: block;
    margin-top: .5rem;
    width: 5rem;
    height: 5rem;
    background-image: url("../img/nav/logo-black-background.png");
    background-size: cover;
    background-position: center center;
  }
  header #icon-contact{
    display: block;
    width: 3rem;
    height: 3rem;
    background-image: url("../img/nav/telefono-icon.png");
    background-color: #1d1d1d ;
    background-size: cover;
    background-position: center center;
  }
  header .nav{
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.7);
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
  }
  header .visible{
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transition: all .3s ease-in-out;
    /*height: 100vh;
    width: 100vw;
    z-index: 10;
    transition: all .3s ease-in-out;*/
  }
  header .novisible{
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all .3s ease-in-out;
  }
  header ul{
    flex-direction: column;
    align-items: flex-start;
    background-color:#1d1d1d;
  }
  header #orientador{
    height: 2.7rem;
    width: 7.5rem;
    display: flex;
    justify-content: end;
    background-color: #1d1d1d;
  }
  header #cerrar-menu{
  display: block;
    margin-top: .5rem;
    width: 1.6rem;
    height: 1.6rem;
    background-image: url("../img/nav/x-icon.png");
    background-color: #1d1d1d ;
    background-size: cover;
    background-position: center center;
    border: none;
}
}
@media screen and (max-width: 420px){
  header{
    padding: 0 2rem;
  }
  header #abrir-menu{
    display: block;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    background-image: url("../img/nav/menu-icon.png");
    background-color: #1d1d1d ;
    background-size: cover;
    background-position: center center;
  }
  header #icon-contact{
    width: 2.5rem;
    height: 2.5rem;
    background-image: url("../img/nav/telefono-icon.png");
  }
  header #logo-nav-cel{
    height: 4.5rem;
    width: 4.5rem;
  }
}
@media screen and (max-width: 500px){
  header{
    padding: 0 1rem;
  }}

body{
  font-family: "Noto Sans", sans-serif;
  background-color: var(--blanco);
}


#aviso-de-privacidad{
  margin-top: 4rem;
  margin-bottom: 10rem;
  text-align: justify;
  width: 100vw;
  display: flex;
  justify-content: center;
}
#aviso-de-privacidad .container{
  width: 80%;
}
#aviso-de-privacidad ol{
  padding-left: 3rem;
}