* {
  margin: 0;
  padding: 0;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 1rem;
}

.background {
  background-image: url(./assets/fondo-movil.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: -1100;
}

.container {
  margin: 0;
  padding: 0 0 5%;
  border-bottom: 3px solid #d9d900;
  box-sizing: border-box;
}

.component {
  max-width: 100vw;
  display: flex;
  flex-flow: column;
  align-content: center;
  justify-content: center;
  padding: 3% 0;
}

.header-container {
  padding: 0 0 5%;
  margin: 0;
  border-bottom: 3px solid #d9d900;
  background-image: url(./assets/fondo-landing-movil.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
}

.logo {
  overflow: hidden;
  width: 100%;
  text-align: center;
  margin: 0;
}

.img-logo {
  width: 65px;
}

.txt-logo {
  color: #e6e6e6;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.07rem;
  text-shadow: -1px -1px 1px#242415, 2px 2px 1px #363636;
}

.txt {
  color: #e6e6e6;
  width: 80%;
  margin: 0 auto;
  font-size: 0.7rem;
  font-weight: 300;
  text-align: justify;
}

.button {
  width: 45%;
  background: #d9d900;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: bold;
  line-height: 1.5rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-align: center;
  color: #242415;
  margin: 5% auto;
  border: none;
  border-radius: 0.5em;
  transition: all 0.25s ease;
}
.button:hover {
  background: #fcfc94;
}
.title {
  width: 80%;
  color: #d9d900;
  font-weight: 500;
  font-family: 'Architects Daughter', cursive, Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  text-align: center;
  margin: 0 auto;
  padding: 5% 0 0;
}

.video {
  width: 80%;
  margin: 2% auto;
  max-height: 220px;
  background-color: #151611;
}

.list {
  text-align: start;
  justify-content: start;
}

.header-list {
  font-size: 0.8rem;
  font-weight: 300;
  margin: 2% 0;
}

.body-list {
  padding: 1% 0 0 8%;
}

.item-list {
  font-size: 0.7rem;
  padding: 0.5% 0;
}

.footer {
  display: flex;
  flex-flow: column;
  width: 100%;
  min-width: 320px;
  padding: 10% 0 0;
}

.imgFooter {
  max-width: 140px;
  padding: 2% 0;
  align-self: center;
}

.menuFooter {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: center;
  align-self: center;
  padding: 0;
}

.itemMenuFooter {
  padding: 2% 4%;
}

.linkMenuFooter {
  text-decoration: none;
  color: #b3b3b3;
  font-size: 0.7rem;
}

.copyFooter {
  justify-self: flex-end;
  font-size: 0.4rem;
  color: #b3b3b3;
  padding: 3%;
  align-self: flex-end;
}

@media (max-width: 300px) {
  .imgFooter {
    max-width: 80px;
  }
  .copyFooter {
    font-size: 0.3rem;
  }
}

@media (min-width: 550px) {
  .background {
    background-image: url(./assets/fondo-tablet.jpg);
  }
  .header-container {
    background-image: url(./assets/fondo-landing-tablet.jpg);
  }
  .component {
    padding: 2% 0;
  }
  .img-logo {
    width: 100px;
  }
  .txt-logo {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .title {
    font-size: 1.7rem;
    padding: 2% 0 0;
  }
  .button {
    width: 30%;
    line-height: 2rem;
    font-size: 0.9rem;
  }
  .txt {
    font-size: 0.9rem;
  }
  .video {
    width: 70%;
    margin: 5% auto 4%;
  }
  .header-list {
    font-size: 1rem;
  }
  .item-list {
    font-size: 0.9rem;
  }
  .linkMenuFooter {
    font-size: 0.8rem;
  }
  .copyFooter {
    font-size: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .background {
    background-image: url(./assets/fondo-desktop.jpg);
  }
  .container {
    background-image: url(./assets/fondo-landing-desktop.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .component {
    padding: 1% 0;
  }
  .header-container {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  .logo {
    margin-top: 0%;
  }
  .img-logo {
    width: 130px;
  }
  .txt-logo {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .txt {
    width: 80%;
    font-size: 1rem;
    text-align: center;
    margin: 2% auto;
  }

  .button-top {
    display: none;
  }

  .button {
    width: 20%;
    line-height: 2rem;
    font-size: 1rem;
    margin-top: 1%;
  }
  .title {
    font-size: 1.8rem;
    padding: 0;
  }

  .video-container {
    flex-flow: row-reverse wrap;
    justify-items: center;
    align-items: center;
    gap: 5%;
    width: 80%;
    margin: 1% auto;
  }
  .video {
    margin: inherit;
    padding: 0;
    max-width: 400px;
    flex: 30%;
  }
  .list {
    text-align: justify;
    flex: 40%;
  }
  .header-list {
    font-size: 0.9rem;
    font-weight: 300;
  }
  .item-list {
    font-size: 0.8rem;
  }
  .linkMenuFooter {
    font-size: 0.8rem;
  }
  .copyFooter {
    font-size: 0.5rem;
  }
}

@media (min-width: 1228px) {
  .txt {
    margin: 0 auto 1%;
  }
  .title {
    font-size: 2rem;
  }

  .footer {
    padding: 3% 0 0;
  }
  .imgFooter {
    max-width: 160px;
  }
  .linkMenuFooter {
    font-size: 0.9rem;
  }
  .copyFooter {
    padding: 2%;
    font-size: 0.6rem;
  }
}

@media (min-width: 1350px) {
  .video-container {
    max-width: 50%;
  }
}
