@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  width: 290px;
}

h1 {
  color: rgb(255, 255, 255);
  font-size: 50px;
}

h2 {
  color: rgb(0, 0, 0);
  font-size: 40px;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgb(0, 0, 255) 0%, rgb(255, 0, 255) 50%, rgb(0, 0, 255) 100%);
  transition: 0.5s;
  background-size: 200% auto;
  outline: none;
  border: none;
}

header img {
  width: 150px;
  border-radius: 100%;
  margin: 5px;
}

header:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.nav-link {
  color: white;
  font-size: 20px;
}

.activo {
  color: rgb(0, 247, 255);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(255, 255, 255);
}

.flex-mio {
  display: flex;
  flex-direction: row;
  align-items: start;
  background-color: rgb(255, 255, 255);
}

.carousel-indicators {
  background-color: rgb(255, 0, 0);
  width: 1200px;
}

.carousel {
  width: 1200px;
}

.section1,
.section3 {
  margin: 100px;
}

.section3 h2::before {
  content: "Explora nuestras ";
  font-size: 30px;
  color: gray;
}

.section2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.section2 div div {
  padding: 5px;
}

.ej {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
}

.ej1 {
  width: 200px;
  height: 200px;
  border: 3px solid red;
  margin: 10px;
  border-radius: 10px;
  background-color: black;
}

.ej1 img {
  height: 90%;
  width: 100%;
  border-radius: 3px;
}

.ej1 figcaption {
  color: rgb(255, 255, 255);
  width: 100%;
  height: 10%;
  text-align: center;
  font-size: 15px;
}

.ej2 {
  grid-row: span 2;
  grid-column: span 2;
  width: 420px;
  height: 420px;
}

.ej2 img {
  height: 95%;
}

.ej2 figcaption {
  height: 5%;
}

aside {
  display: flex;
  flex-direction: column;
  margin: 20px;
  width: 200px;
}

aside form fieldset {
  display: grid;
  grid-template-columns: 17px 100px;
  grid-template-rows: 1fr 1fr;
}

aside form fieldset input {
  width: 15px;
  height: 15px;
}

aside form input {
  border: 3px solid rgb(255, 255, 255);
  border-radius: 7px;
  background-color: orangered;
  color: white;
  width: 100px;
  height: 40px;
}

.productos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px;
  gap: 10px;
}

.productos div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  padding: 5px;
  border: 2px solid black;
  border-radius: 10px;
}

.productos div p {
  height: 30px;
}

.productos div button {
  border: 3px solid rgb(255, 255, 255);
  border-radius: 7px;
  background-color: orangered;
  width: 90px;
  height: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 20px;
  color: white;
  transition: transform 0.4s, background-color 0.4;
}

.productos div button:hover {
  transform: translateY(-5px);
  background-color: rgb(141, 39, 2);
}

.productos div button:active {
  background-color: rgb(65, 28, 15);
  color: rgb(107, 107, 107);
}

.productos div img {
  height: 250px;
}

section h2 {
  margin: 20px;
}

.datos {
  margin: 100px;
}

.datos form {
  margin: 50px;
  gap: 20px;
}

.datos form fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 20px;
}

.datos form fieldset legend {
  grid-column: span 2;
  display: block;
  text-align: center;
}

.datos form fieldset label {
  display: block;
  text-align: center;
}

.datos form fieldset input {
  border: 3px solid rgb(0, 0, 0);
  border-radius: 7px;
}

.datos form fieldset .enviar {
  grid-column: span 2;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 7px;
  background-color: orangered;
  color: white;
}

footer {
  background: linear-gradient(90deg, rgb(0, 0, 255) 0%, rgb(255, 0, 255) 50%, rgb(0, 0, 255) 100%);
  transition: 0.5s;
  background-size: 200% auto;
  outline: none;
  border: none;
}

footer p::before {
  content: "©";
}

footer p {
  height: 20px;
  background-color: white;
}

footer div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: white;
  border: 2px solid red;
}

footer div div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  border: none;
}

footer:hover {
  background-position: right center;
  text-decoration: none;
}

@media (max-width: 1550px) {
  .productos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  header {
    flex-direction: column;
  }

  .flex-mio {
    flex-direction: column;
  }

  .flex-mio section {
    width: 100%;
  }

  .productos {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .carousel {
    width: 450px;
  }

  .section2 div div div img {
    width: 180px;
  }

  .ej {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 1fr 1fr;
  }

  aside {
    width: 90%;
  }

  aside form fieldset {
    display: grid;
    grid-template-columns: repeat(2, 17px 100px);
    grid-template-rows: 1fr 1fr 1fr;
  }
}

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