@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/*VARIABLES*/
* {
  font-family: "Playfair Display", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-transform: capitalize;
  background-color: #2f506c;
}

.body_contacto {
  background-image: url(../img/fondo_contacto.png);
  background-size: 50%;
}
.body_contacto .contacto {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.body_contacto .contacto .formulario {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.body_contacto .contacto .formulario label {
  color: #E3C77E;
  font-size: 1rem;
  font-weight: bold;
}
.body_contacto .contacto .formulario input {
  width: 300px;
}
.body_contacto .contacto .formulario textarea {
  width: 300px;
}
.body_contacto .contacto .formulario .confirmacion_de_pedido {
  display: flex;
  gap: 10px;
  max-width: 150px;
  width: 100%;
  padding: 5px;
}
.body_contacto .contacto .formulario .confirmacion_de_pedido input {
  background-color: #E3C77E;
}
.body_contacto .contacto .logos img {
  max-width: 500px;
  width: 100%;
}

@media (min-width: 320px) and (max-width: 430px) {
  .body_contacto {
    background-size: cover;
  }
  .body_contacto .contacto {
    margin: 10px;
  }
}
.foto_contacto {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.foto_contacto img {
  max-width: 400px;
  width: 100%;
  height: 500px;
  border-radius: 2px;
}
.foto_contacto p {
  font-size: 30px;
  color: #E3C77E;
  font-weight: bold;
}

@media (min-width: 320px) and (max-width: 430px) {
  .foto_contacto {
    display: flex;
    flex-wrap: wrap;
  }
  .foto_contacto img {
    width: cover;
    height: 200px;
    object-fit: cover;
  }
  .foto_contacto p {
    padding: 10px;
    font-size: 1.5rem;
    text-align: center;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  margin: 20px;
}
footer ul li a img {
  filter: brightness(0) invert(1);
  max-width: 20px;
  width: 100%;
}

@media (min-width: 320px) and (max-width: 430px) {
  .footer ul {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 0 auto;
  }
}
.navs {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2f506c;
  color: #7FA8B5;
}
.navs img {
  max-width: 120px;
  width: 100%;
}
.navs ul {
  display: flex;
  gap: 20px;
  list-style: none;
  font-size: 1.5rem;
}
.navs ul li a {
  text-decoration: none;
  color: #7FA8B5;
  font-weight: bold;
  padding: 10px;
}
.navs ul li a:hover {
  color: #E3C77E;
  outline: 2px solid #E3C77E;
}

@media (min-width: 320px) and (max-width: 430px) {
  .navs {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .navs img {
    max-width: 120px;
    width: 100%;
  }
  .navs ul {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .navs ul li a {
    font-size: 0.9rem;
  }
}
.body_shop {
  background-image: url(../img/banner2.png);
  background-size: 100%;
}
.body_shop .shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  margin: 20px;
  justify-content: center;
}
.body_shop .shop h1 {
  grid-column: 1/4;
  text-align: center;
  margin-top: 20px;
  color: #E3C77E;
}
.body_shop .shop ul {
  display: contents;
  list-style: none;
}
.body_shop .shop ul li {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  color: #E3C77E;
}
.body_shop .shop ul img {
  max-width: 250px;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 0 5px rgba(250, 249, 249, 0.712);
  padding: 10px;
}
.body_shop .shop ul img:hover {
  animation: zoomcolor 0.5s ease-in forwards;
}
@keyframes zoomcolor {
  from {
    transform: scale(1);
    filter: brightness(1) saturate(1);
  }
  to {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.1);
  }
}

@media (min-width: 320px) and (max-width: 430px) {
  .body_shop {
    background-size: cover;
  }
  .body_shop .shop {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .body_shop .shop h1 {
    grid-column: 1/1;
  }
  .body_shop .shop ul li {
    font-size: 1.5rem;
  }
  .body_shop .shop ul li img {
    width: 250px;
    height: 300px;
  }
}
.principal {
  background-image: url(../img/fondo_home.png);
  background-size: 100%; /* para que ocupe todo */
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
}
.principal .titulo_boton {
  margin: 20px;
}
.principal .titulo_boton h1 {
  font-size: 2.8rem;
  max-width: 400px;
  color: #E3C77E;
}
.principal .titulo_boton button {
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  background-color: #E3C77E;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
.principal .titulo_boton button:hover {
  animation: zoom 0.5s ease forwards;
}
.principal .titulo_boton button a {
  list-style: none;
  text-decoration: none;
  color: #FFFFFF;
}

@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@media (min-width: 320px) and (max-width: 430px) {
  .principal {
    background-size: cover;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    height: 250px;
  }
  .principal img {
    max-width: 350px;
    width: 100%;
  }
  .principal .titulo_boton h1 {
    font-size: 1.5rem;
  }
  .principal .titulo_boton button {
    width: 30%;
    height: auto;
    font-size: 1rem;
    padding: 5px;
  }
}
.mujeres {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
  padding: 10px;
  background-color: #2f506c;
}
.mujeres img {
  width: 300px;
  object-fit: cover;
  border-radius: 5px;
}
.mujeres .titulo_texto {
  margin: 20px;
}
.mujeres .titulo_texto h2 {
  font-size: 2.5rem;
  color: #E3C77E;
}
.mujeres .titulo_texto p {
  font-size: 1.5rem;
  color: #FFFFFF;
}

@media (min-width: 320px) and (max-width: 430px) {
  .mujeres {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .mujeres img {
    border-radius: 0;
    width: 100%;
  }
  .mujeres .titulo_texto {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .mujeres .titulo_texto h2 {
    font-size: 1.5rem;
  }
  .mujeres .titulo_texto p {
    font-size: 1rem;
  }
}
.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 60% 10%;
}

@media (min-width: 320px) and (max-width: 430px) {
  .carousel-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: 60% 10%;
  }
}
.whatsapp {
  position: fixed;
  bottom: 20px; /*20 píxeles desde el borde inferior de la ventana.*/
  right: 20px; /*20 píxeles desde el borde derecho de la ventana.*/
  z-index: 1; /* para que quede encima */
}
.whatsapp img {
  width: 40px;
  height: auto;
}

.frescura {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}
.frescura h2 {
  font-size: 2.5rem;
  grid-column: 1/4;
  color: #E3C77E;
  margin-top: 10px;
  text-align: center;
}
.frescura ul {
  display: contents;
  list-style: none;
}
.frescura ul li {
  display: flex;
  justify-content: center;
}
.frescura ul li img {
  margin-top: 10px;
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  padding: 5px;
}

@media (min-width: 320px) and (max-width: 430px) {
  .frescura {
    display: grid;
    grid-template-columns: 1fr;
    grid-row: 1fr;
    justify-content: center;
    justify-items: center;
  }
  .frescura h2 {
    grid-column: 1/4;
    font-size: 1.5rem;
    padding: 10px;
  }
  .frescura ul li {
    grid-row: 2/2;
  }
  .frescura ul li img {
    max-width: 350px;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}

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