@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Oswald&display=swap');
html, body {
  margin: 0;
  /* font-family: 'Open Sans', sans-serif; */
  font-family: 'Oswald', sans-serif;
}
/* INICIO BARRA DE NAVEGACIÓN */
header {
  width: 100%;
  margin: auto;
  position: sticky;
  top: 0;
  z-index: 2;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  background-color: black;
}
.logo img {
  width: 90px;
}
.list ul {
  display: flex;
  margin-top: 20px;
}
.list ul li {
  list-style: none;
  margin: 0 20px;
}
.list ul li a{
  color: #FFAC41;
  text-decoration: none;
  cursor: pointer;
}
.list ul li a:hover {
  color: #FFF200;
  border-bottom: 1px solid #FFF200;
}
/* FIN BARRA DE NAVEGACIÓN */

/* Inicio Hero */
.hero {
  text-align: center;
}
.hero img {
  height: 400px;
}
.hero p {
  font-size: 25px;
}
/* Fin hero */

/* Inicio tarjeta */
.container-tajetas, .container-personas {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2,400px);
  grid-template-rows: repeat(2, 500px);
  gap: 30px;
  justify-content: center;
}
.tarjeta {
  border: 1px solid grey;
  margin: 10px;
  text-align: center;
}
.batarang {
  width: 260px;
}
.mascara {
  height: 335px;
}
.tarjeta h2 {
  margin-top: -10px;
}
.boton {
  color: white;
  background-color: black;
  border-radius: 10px;
  width: 80%;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  border: 0;
}
.boton:hover {
  background-color: #323232;
  transition: .3s;
  box-shadow: 1px 16px 23px -10px rgba(0,0,0,0.84);
}
/* Fin */

/* Inicio personas */
.persona {
  text-align: center;
}
.persona img {
  padding: 10px;
  width: 60%;
  border-radius: 200px;
}
.persona p {
  font-size: 23px;
}
/* Fin persona */
footer {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  align-items: center;
  background-color: black;
  color: #FFF200;
}


/* FAQS APARTADO */
.questions {
  width: 95%;
  margin: 10px auto;
}
.faq {
  text-align: center;
}
.accordion {
  background-color: #eee;
  color: #000000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #dfdfdf;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* INICIO PRODUCTOS */

.producto-des {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  justify-items: center;
  align-items: center;
}
.descripcion {
  text-align: center;
  font-size: 30px;
}
.producto-des .tarjeta {
  border: none;
}

/* Fin */

/* Pago productos */

.pago-form {
  display: flex;
  justify-content: center;
}

.formulario label, .formulario input{
  display: block;
  margin: 5px;
}
.formulario {
  width: 500px;
  margin: auto 0;
  text-align: -webkit-center;
}
.formulario input {
  width: 90%;
}
form .boton {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .hero img {
    height: 150px;
  }
  .hero p {
    font-size: 20px;
  }
  .container-tajetas, .container-personas {
    margin-top: 50px;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 10px;
    justify-content: center;
  }
  .tarjeta button {
    margin-bottom: 20px;
  }
  
}

@media (max-width: 480px) {
  .container-tajetas, .container-personas {
    display: block;
  }
  .batarang {
    width: 100px;
  }
  .mascara{
    height: 100px;
  }
  .hero img {
    height: 60px;
  }
  .producto-des {
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 10px;
    justify-items: center;
    align-items: center;
  }
  .descripcion {
    text-align: center;
    font-size: 20px;
  }
  footer {
    display: block;
    background-color: black;
    color: #FFF200;
    text-align: center;
    height: auto;
  }
  .pago-form .tarjeta {
    display: none;
  }
}
