@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Tektur:wght@400..900&display=swap");
body {
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.navbar {
  background-color: #b4b2b2;
  border-radius: 20px;
  justify-content: end;
  border: 2px solid #ff0000;
  box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.nav-link {
  font-family: tektur;
  font-size: 1.7rem;
  color: #4cff4c;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  -webkit-text-stroke: 1px #0a0a0a;
}

h1 {
  text-align: center;
  font-family: tektur;
  font-size: 4rem;
  color: #4cff4c;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  -webkit-text-stroke: 1px #0a0a0a;
}
@media (min-width: 480px) and (max-width: 960px) {
  h1 {
    font-size: 4rem;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  h1 {
    display: none;
  }
}

.logo {
  height: auto;
  width: 175px;
}

footer {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: end;
}
footer .derechos-de-autor {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
  text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
  font-size: 30px;
}
footer .redes-sociales {
  display: flex;
  flex-direction: row;
  gap: 16px;
  list-style: none;
}
footer .logo_red_social {
  height: auto;
  width: 60px;
  margin-top: 50px;
}
@media (min-width: 480px) and (max-width: 960px) {
  footer {
    justify-content: space-around;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  footer .derechos-de-autor {
    margin-top: 50px;
    margin-bottom: 0px;
  }
  footer .redes-sociales {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  footer .redes-sociales {
    order: 1;
    margin-bottom: 0;
    justify-content: center;
    padding-left: 0;
  }
  footer .derechos-de-autor {
    order: 2;
    margin-top: 0;
    align-items: center;
  }
}

main {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
main .info {
  display: flex;
  justify-content: center;
  padding: 1rem;
}
main .info p {
  text-align: center;
  color: #000000;
  font-family: roboto;
  font-size: 30px;
  text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
  margin-top: 50px;
  white-space: pre-line;
}
@media (min-width: 480px) and (max-width: 960px) {
  main .info p {
    text-align: center;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  main .info p {
    text-align: center;
  }
}
main .titulo-imagenes-ilustrativas {
  display: flex;
  justify-content: center;
  font-family: tektur;
  font-size: 50px;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  -webkit-text-stroke: 1px #0a0a0a;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 300px) and (max-width: 479px) {
  main .titulo-imagenes-ilustrativas {
    text-align: center;
  }
}
main .imagenes-ilustrativas {
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
  justify-content: center;
}
main .imagenes-ilustrativas .imagen_ilustrativa {
  height: auto;
  width: 300px;
  box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
  transition: 2s all;
}
main .imagenes-ilustrativas .imagen_ilustrativa:hover {
  scale: 1.25;
}
@media (min-width: 300px) and (max-width: 479px) {
  main .imagenes-ilustrativas .imagen_ilustrativa {
    height: auto;
    width: 150px;
  }
}

.titulo-catalogo {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  font-family: tektur;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  margin-top: 30px;
  margin-bottom: 40px;
}

.catalogo-de-productos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  justify-items: center;
}
.catalogo-de-productos .card {
  box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
}
.catalogo-de-productos .card .card-body {
  height: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-family: roboto;
}
.catalogo-de-productos .card .btn {
  margin-top: auto;
  background-color: #4cff4c;
  border: 1px;
  border-style: groove;
}
.catalogo-de-productos .card .card-title {
  min-height: 40px;
}
.catalogo-de-productos .card .card-text {
  min-height: 24px;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 12px;
  text-shadow: none;
  font-size: 1.5rem;
}

@media (min-width: 300px) and (max-width: 479px) {
  h2 {
    text-align: center;
  }
  .catalogo-de-productos {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    justify-items: center;
  }
  .card-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 480px) and (max-width: 960px) {
  .catalogo-de-productos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    justify-items: center;
  }
  .card-text {
    font-size: 1.5rem;
  }
}
.titulo-pedidos {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  font-family: tektur;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  margin-top: 30px;
  margin-bottom: 10px;
}

.text-ideas {
  text-align: center;
  color: #000000;
  font-family: roboto;
  font-size: 30px;
  text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.ideas {
  display: flex;
  font-family: tektur;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.ideas label {
  font-family: roboto;
  font-size: 2rem;
}
.ideas input {
  width: 30%;
  text-align: center;
}
.ideas textarea {
  height: 100px;
  width: 1000px;
  text-align: center;
}
.ideas .boton-archivo {
  padding: 10px 20px;
  background-color: #4cff4c;
  cursor: pointer;
  border-color: black;
  border-style: groove;
  border-radius: 8px;
}
.ideas button[type=submit] {
  background-color: #4cff4c;
  font-size: 30px;
  padding: 10px 25px;
  border-color: black;
  border-style: groove;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

@media (min-width: 480px) and (max-width: 960px) {
  .titulo-pedidos {
    text-align: center;
  }
  .ideas input {
    width: 600px;
    text-align: center;
    font-size: 1.75rem;
  }
  .ideas textarea {
    height: 250px;
    width: 600px;
    text-align: center;
    font-size: 1.75rem;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  .titulo-pedidos {
    text-align: center;
  }
  .ideas input {
    width: 400px;
    text-align: center;
    font-size: 1.25rem;
  }
  .ideas textarea {
    height: 250px;
    width: 400px;
    text-align: center;
    font-size: 1.25rem;
  }
}
.titulo-contacto {
  display: flex;
  justify-content: center;
  font-size: 48px;
  font-family: tektur;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  margin-top: 30px;
  margin-bottom: 10px;
}

.text-contacto {
  text-align: center;
  color: #000000;
  font-family: roboto;
  font-size: 30px;
  text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
}

.contenedor-contacto {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 400px;
  width: 100%;
}
.contenedor-contacto .informacion-contacto {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  gap: 16px;
  margin-left: 32px;
  width: 400px;
}
.contenedor-contacto .informacion-contacto h2 {
  font-family: tektur;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  text-align: center;
}
.contenedor-contacto .informacion-contacto input {
  width: 100%;
}
.contenedor-contacto .informacion-contacto textarea {
  width: 100%;
  height: 120%;
}
.contenedor-contacto .informacion-contacto label {
  font-family: tektur;
}
.contenedor-contacto .informacion-contacto [type=submit] {
  background-color: #4cff4c;
  font-size: 30px;
  padding: 10px 25px;
  border-color: black;
  border-style: groove;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.contenedor-contacto .informacion-contacto [type=reset] {
  background-color: #4cff4c;
  font-size: 30px;
  padding: 10px 25px;
  border-color: black;
  border-style: groove;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.mapa {
  margin-right: 32px;
  font-family: tektur;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  text-align: center;
}
.mapa iframe {
  width: 600px;
  height: 450px;
}
.mapa .horarios-contacto {
  margin-top: 16px;
}
.mapa h3 {
  margin-bottom: 8px;
}
.mapa p {
  margin: 0;
  text-align: center;
  font-size: 30px;
  white-space: pre-line;
  text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000;
}

@media (min-width: 480px) and (max-width: 960px) {
  .contenedor-contacto {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .contenedor-contacto .informacion-contacto {
    align-items: center;
  }
  .contenedor-contacto .informacion-contacto input {
    width: 600px;
    font-size: 1.75rem;
    text-align: center;
  }
  .contenedor-contacto .informacion-contacto textarea {
    text-align: center;
    width: 600px;
    height: 400px;
    font-size: 1.75rem;
  }
  .contenedor-contacto .mapa {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 0;
  }
  .contenedor-contacto .mapa iframe {
    width: 400px;
    height: 400px;
    display: block;
    margin: 0 auto;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  .contenedor-contacto {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .contenedor-contacto .informacion-contacto {
    margin-left: 0;
  }
  .contenedor-contacto .informacion-contacto input {
    width: 100%;
    font-size: 1.25rem;
  }
  .contenedor-contacto .informacion-contacto textarea {
    width: 100%;
    height: 400px;
    font-size: 1.25rem;
  }
  .contenedor-contacto .horarios-contacto p {
    text-align: center;
    font-size: 25px;
  }
  .mapa {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 0;
  }
  .mapa iframe {
    width: 300px;
    height: 300px;
  }
  .horarios-contacto {
    text-align: center;
  }
}
.titulo-datos-de-cuenta {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  font-family: tektur;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  margin-top: 30px;
  margin-bottom: 50px;
}

.tu-cuenta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
}
.tu-cuenta h2 {
  font-family: tektur;
  text-shadow: 0 0 5px #4cff4c, 0 0 10px #4cff4c, 0 0 20px #4cff4c, 0 0 40px #4cff4c;
  font-size: 2.5rem;
}
.tu-cuenta .datos-personales {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
}
.tu-cuenta .datos-domicilio {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
}
.tu-cuenta .datos-persona-autorizada {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
}

.tu-cuenta label {
  font-family: tektur;
}

.tu-cuenta button {
  grid-column: 1/4;
  justify-self: center;
  margin-top: 20px;
  background-color: #4cff4c;
  font-size: 30px;
  padding: 10px 25px;
  border-color: black;
  border-style: groove;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

@media (min-width: 480px) and (max-width: 960px) {
  .tu-cuenta {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }
  .datos-personales input {
    width: 600px;
    font-size: 1.75rem;
  }
  .datos-domicilio input {
    width: 600px;
    font-size: 1.75rem;
  }
  .datos-persona-autorizada input {
    width: 600px;
    font-size: 1.75rem;
  }
  .tu-cuenta button {
    grid-column: 1/-1;
  }
  .datos-persona-autorizada {
    grid-column: 1/-1;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  .tu-cuenta {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }
  .tu-cuenta .datos-personales input {
    width: 400px;
    font-size: 1.25rem;
  }
  .tu-cuenta .datos-domicilio input {
    width: 400px;
    font-size: 1.25rem;
  }
  .tu-cuenta .datos-persona-autorizada input {
    width: 400px;
    font-size: 1.25rem;
  }
  .tu-cuenta button {
    grid-column: 1/-1;
  }
  .datos-persona-autorizada {
    grid-column: 1/-1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*# sourceMappingURL=styles.css.map */
