/* Fuentes */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  min-height: 100vh;
  background-image: linear-gradient(to top, #C0C0C0 0%, #ffffff);
}

/* Layout */
/*Header*/
.header {
  display: grid;
  height: 500px;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr 1fr auto;
  align-items: center;
  background-image: url(../imagenes/img-hero.jpg);
  background-size: cover;
  background-position: center;
  padding: 10px;
}
.header .logo {
  grid-column: 1/3;
  grid-row: 1/3;
  width: 80%;
}
.header .titulo {
  grid-column: 2/3;
  grid-row: 1/3;
  display: flex;
  justify-content: center;
  font-family: "Kaushan Script", cursive;
  font-size: 100px;
  font-weight: 50;
  color: #B8860B;
}
.header .carrito {
  grid-column: 3/4;
  grid-row: 1/2;
  display: flex;
  justify-self: end;
  align-self: start;
}
.header .buscador {
  grid-column: 3/4;
  grid-row: 2/3;
  display: flex;
  align-self: end;
  gap: 5px;
}
.header .mi-navbar {
  grid-column: 1/4;
  grid-row: 3/4;
  background-color: #B8860B;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header .mi-navbar ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 10px;
}
.header .mi-navbar a {
  text-decoration: none;
  color: white;
  font-family: "Kaushan Script", cursive;
  font-size: 20px;
  font-weight: 700;
}
.header .bg-color-enlace:hover {
  background-color: #000000;
  border-radius: 5%;
}
.header .iconos {
  width: 25px;
}
@media (max-width: 430px) {
  .header {
    /*500*/
  }
  .header .header {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    text-align: center;
  }
  .header .logo {
    max-width: 200px;
    margin: 0 auto;
  }
  .header .titulo {
    grid-column: 1;
    grid-row: auto;
    font-size: 4rem;
    margin: 1.5rem 0;
  }
  .header .carrito, .header .buscador {
    grid-column: 4;
    grid-row: auto;
  }
  .header ul {
    flex-direction: column;
    text-align: center;
    width: 20rem;
  }
}

/*Footer*/
.texto-footer {
  text-align: center;
  color: #DAA520;
}

.contenedor-parrafos {
  display: flex;
  justify-content: center;
  text-align: center;
  justify-content: space-around;
}

.iconos {
  width: 25px;
}

/* Pages */
/* Main index */
.video {
  width: 300px;
}

.videos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  margin-top: 10px;
}

.btn-comprar {
  height: 40px;
  width: 15%;
  border: none;
  border-radius: 5%;
  background-color: #B8860B;
  font-family: "Kaushan Script", cursive;
  font-size: 20px;
  font-weight: 700;
  color: white;
  cursor: pointer;
}

h2 {
  text-align: center;
  color: #B8860B;
  font-family: "Kaushan Script", cursive;
  font-size: 40px;
  font-weight: 700;
  padding: 20px;
  padding-top: 8rem;
}

/* Pagina-Empresa */
.contenido-empresa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-top: 30px;
}

.contenido-empresa div {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 25px;
  margin-right: 30px;
}

.contenido-empresa img {
  grid-row: 1/3;
  width: 90%;
  margin-left: 30px;
}

.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto auto;
  gap: 20px;
}

.contenedor h3 {
  text-align: center;
  font-family: "Kaushan Script", cursive;
  font-size: 30px;
  color: #B8860B;
}

.contenedor p {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 25px;
  padding: 20px;
}

.contenedor img {
  height: 300px;
  width: 80%;
  border-radius: 5%;
}

@media (max-width: 430px) { /*500*/
  .contenido-empresa {
    display: flex;
    flex-direction: column;
  }
  .contenedor {
    display: grid;
    grid-template-columns: auto;
  }
}
/* Pag - Productos */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  row-gap: 50px;
  margin-top: 30px;
}

.parrafos-intro {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.producto__imagen {
  height: 250px;
  width: 200px;
}

.producto__info {
  margin-top: 20px;
}

.producto__nombre {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.producto__precio {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  color: #B8860B;
  padding: 10px;
}

.producto__boton {
  background-color: rgb(0, 0, 0);
  color: #B8860B;
  font-family: "Kaushan Script", cursive;
  border: none;
  border-radius: 5px;
  padding: 5px 5px;
  cursor: pointer;
  font-size: 20px;
  width: 100%;
}

@media (min-width: 431px) and (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Pag - Promociones */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  row-gap: 50px;
  margin-top: 30px;
}

.parrafos-intro {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.producto__imagen {
  height: 250px;
  width: 200px;
}

.producto__info {
  margin-top: 20px;
}

.producto__nombre {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.producto__precio {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  color: #B8860B;
  padding: 10px;
}

.producto__boton {
  background-color: rgb(0, 0, 0);
  color: #B8860B;
  font-family: "Kaushan Script", cursive;
  border: none;
  border-radius: 5px;
  padding: 5px 5px;
  cursor: pointer;
  font-size: 20px;
  width: 100%;
}

@media (min-width: 431px) and (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* pag - contacto */
.contacto {
  max-width: 800px;
  margin: 20px auto;
  padding: 5px;
  background: #C0C0C0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgb(0, 0, 0);
}

.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacto__field {
  display: flex;
  flex-direction: column;
}

.contacto__label {
  margin-bottom: 1rem;
  font-weight: bold;
  color: hsl(43, 86%, 26%);
  font-size: 1.5rem;
}

.contacto__textarea {
  min-height: 8rem;
  border-radius: 5px;
}

.contacto__button {
  padding: 0.5rem;
  background: hsl(0, 89%, 38%);
  color: #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contacto__button:hover {
  background: green;
}

.contacto__input {
  padding: 8px;
}

@media (max-width: 430px) { /*500*/
  .contenedor-parrafos {
    display: flex;
    flex-direction: column;
  }
}

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