html {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  padding: 0%;
  margin: 0%;
}

/* HEADER */

.header {
  width: 100%;
  height: auto;
  background-color: #ffe262;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 10px 5%;
}

.redes {
  display: flex;
  flex-wrap: wrap;
}

.redes li {
  list-style: none;
  margin: 5px;
}

.redes li a img {
  width: 36px;
  height: 36px;
  filter: invert(100%);
}

/* MENU */
.menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
  padding: 20px 0;
  border-bottom: 3px solid #ffe262;
}

.izquierdo {
  flex: 1 1 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.izquierdo_imagen {
  max-height: 300px;
  width: auto;
}

.derecho {
  flex: 2 1 300px;
  padding: 10px;
}

.derecho_imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.derecho_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.nav {
  width: 100%;
}

.menu2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 18px;
  gap: 15px;
  padding: 0;
}

.menu2 li {
  list-style: none;
  margin: 8px;
  font-weight: 500;
}

.menu2 li a {
  color: black;
  text-decoration: none;
}

.menu2 li:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
  color: #ffe262;
}

.boton {
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 50px;
  transition: transform 0.3s ease-in-out;
}

.boton:hover {
  background-color: #ffee00;
}

.boton:active {
  transform: scale(0.9);
}

.primary {
  background-image: linear-gradient(to right, #f7e869ea, #ffc933f5);
}

/* SLIDER */
.slider_cont {
  margin: 0 auto;
  width: 85%;
  height: 500px;
  margin-top: 15px;
  margin-bottom: 10px;
  overflow: hidden;
}

.slider_cont ul {
  list-style: none;
  display: flex;
  width: 100%;
  animation: movimiento_slider 15s infinite alternate ease-in-out;
}

@keyframes movimiento_slider {
  0%,
  20% {
    transform: translateX(0%);
  }
  25%,
  45% {
    transform: translateX(-100%);
  }
  50%,
  70% {
    transform: translateX(-200%);
  }
  75%,
  100% {
    transform: translateX(-300%);
  }
}

.imagenes3 {
  display: flex;
  width: 85%;
  height: 300px;
  margin: 0 auto 5px;
}

.imagen1,
.imagen2,
.imagen3 {
  width: 95%;
  height: 90%;
  border-radius: 20px;
  margin: 15px;
}

.texini {
  display: flex;
  width: 82%;
  justify-items: center;
  height: 350px;
  margin: 0 auto 30px;
  border-top: 3px solid #7c727297;
  border-bottom: 3px solid #7c727297;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 15px;
  width: 75%;

  margin: 0 auto;
}

.bag-item1 {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(74, 213, 142, 0.3);
}

.bag-item1:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(65, 229, 144, 0.486);
}

.bag-item1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 226, 98, 0.1),
    rgba(255, 226, 98, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bag-item1:hover::after {
  opacity: 1;
}
.bag-item2 {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #f6b4ba;
}

.bag-item2:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #eb8f97;
}

.bag-item2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 226, 98, 0.1),
    rgba(255, 226, 98, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bag-item2:hover::after {
  opacity: 1;
}
.bag-item3 {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #f5d0ae;
}

.bag-item3:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #f5caa2;
}

.bag-item3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 226, 98, 0.1),
    rgba(255, 226, 98, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bag-item3:hover::after {
  opacity: 1;
}
.bag-item4 {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #f5df7f;
}

.bag-item4:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #ffe262;
}

.bag-item4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 226, 98, 0.1),
    rgba(255, 226, 98, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bag-item4:hover::after {
  opacity: 1;
}
.bag-item5 {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #65cef8cb;
}

.bag-item5:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #65cef8cb;
}

.bag-item5::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 226, 98, 0.1),
    rgba(255, 226, 98, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bag-item5:hover::after {
  opacity: 1;
}
.bag-text {
  font-size: 1.4em;
  font-weight: bold;
  color: #5a4a00;
  text-align: center;
  padding: 20px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nueva disposición y colores basados en #ffe262 */
.item-1 {
  grid-column: span 2;
  grid-row: span 1;
  background-color: #dcede3;
}

.item-2 {
  grid-column: span 2;
  grid-row: span 2;
  background-color: #f9d0d4;
}

.item-3 {
  grid-column: span 1;
  grid-row: span 2;
  background-color: #fee5cd;
}

.item-4 {
  grid-column: span 1;
  grid-row: span 2;
  background-color: #fcf5bf;
}

.item-5 {
  grid-column: span 2;
  grid-row: span 1;
  background-color: #c3eeff;
}

/* Efectos hover con tonos más oscuros */
.item-1:hover {
  background-color: #c1ebd2;
}
.item-2:hover {
  background-color: #f6b4ba;
}
.item-3:hover {
  background-color: #ffecdafa;
}
.item-4:hover {
  background-color: #fce479aa;
}
.item-5:hover {
  background-color: #65cef8cb;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Espacio entre líneas y texto */
  margin: 40px 0; /* Ajusta según necesites */
}

.divider-line {
  flex: 0.4; /* Las líneas ocupan el espacio disponible */
  height: 3px;
  background-color: #333; /* Color de las líneas */
  opacity: 0.3; /* Transparencia para un look sutil */
}

.divider-text {
  font-size: 26px;
  color: #817b7baf;
  font-weight: 900;
  text-transform: uppercase; /* Opcional: mayúsculas */
  letter-spacing: 1px; /* Espaciado entre letras */
  white-space: nowrap; /* Evita saltos de línea */
  position: relative;
  text-decoration: none;
}

.divider-text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ffe262;
  transition: width 0.3s ease;
}
.divider-text:hover::after {
  width: 100%;
}
.featured-container {
  max-width: 1200px;
  margin: 0 auto 55px auto;
}

.section-header {
  position: relative;
  margin-bottom: 20px;
}

.section-title {
  display: inline-block;
  padding: 0 20px;
  position: relative;
  font-weight: 900;
  z-index: 1;
  font-size: 24px;
  color: #817b7baf;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ddd;
  z-index: 0;
}

.product-slider {
  margin: 0 -10px;
}

.product-item {
  background: white;
  margin: 0 10px;
  padding: 25px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 180px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.product-name {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
  font-weight: normal;
  text-transform: uppercase;
}

.product-status {
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
}

/* Flechas del slider */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.slick-prev {
  left: -15px;
}

.slick-next {
  right: -15px;
}

.slick-prev:before,
.slick-next:before {
  color: #333;
  font-size: 40px;
  opacity: 0.7;
}

/* Puntos de navegación */
.slick-dots {
  bottom: -30px;
}

.slick-dots li button:before {
  font-size: 10px;
}

@media (max-width: 768px) {
  .product-item {
    padding: 15px;
  }

  .section-title {
    font-size: 20px;
  }
}

.final {
  background-color: #eaeaea;
  width: 100%;
  height: 450px;
  margin-top: 30px;
}

.texfinal {
  background-color: #686867;
  width: 100%;
  height: 30px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.imgfinal1 {
  display: flex;
  width: 50%;
  height: 80%;
  justify-content: center;
  align-items: center;
  gap: 160px;
  margin-left: 460px;
}

.modal::backdrop {
  background-color: #eaeaea7a;
}

.modal {
  width: 45%;
  height: 51%;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 25%;
  box-shadow: 0 2px 2px rgba(254, 251, 251, 0.896);
}

.stilomodal {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
}

h2 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  background-color: #f7e869ea;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #ffc933bd;
}

.request-label {
  font-weight: bold;
  margin-top: 20px;
  color: #333;
}

.form2 {
  margin-bottom: 10px;
  width: 420px;
}

.intform2 {
  width: 100%;
  padding: 12px;
  border-radius: 40px;
  font-size: 18px;
  border: none;
}
.formmjs {
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 200;
  margin-left: 120px;
  margin-bottom: 10px;
  animation: desaparecer 5s forwards;
}
@keyframes desaparecer {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.btnform2 {
  background-color: #f7e869ea;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  width: 60%;
  transition: background-color 0.3s;
}

.btnform2:hover {
  background-color: #ffc933bd;
}

.text_form2 {
  margin-bottom: 20px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #3c3b3b;
}

.container_follow {
  display: flex;
  margin-top: 15px;
}

.follow {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
  color: #3c3b3b;
}

.follow_img {
  margin: 22px 0 0 40px;
}

/* === RESPONSIVE DESIGN === */

/* Tablets */
@media (max-width: 1024px) {
  .menu {
    flex-direction: column;
    height: auto;
    padding-bottom: 60px;
  }

  .derecho {
    width: 100%;
  }

  .derecho_menu {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .menu2 {
    flex-direction: column;
    align-items: center;
  }

  .menu2 li:not(:last-child)::after {
    content: none;
  }

  .imagenes3 {
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .imagen1,
  .imagen2,
  .imagen3 {
    width: 90%;
    height: auto;
  }

  .muestra {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
  }

  .recuadro1,
  .recuadro2,
  .recuadro3,
  .recuadro4,
  .recuadro5 {
    width: 80%;
    margin: 20px auto;
    position: static;
  }

  .imgfinal1 {
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 20px;
    align-items: center;
  }

  .form2 {
    width: 90%;
  }
}

/* Celulares */

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
    justify-content: center;
    height: 65px; /* Asegura que tenga altura fija */
  }

  .menu {
    flex-direction: column;
    height: auto;
    padding-bottom: 60px;
    margin-top: 65px; /* Previene que se superponga con el header */
  }

  .slider_cont {
    height: 0px;
  }

  .texini {
    height: auto;
    flex-direction: column;
  }

  .final {
    height: auto;
    padding: 20px 0;
  }

  .texfinal {
    font-size: 14px;
    text-align: center;
  }

  .modal {
    width: 90%;
    left: 5%;
    top: 40%;
    height: auto;
  }

  .stilomodal {
    padding: 20px;
  }

  .btnform2 {
    width: 90%;
  }

  .container_follow {
    flex-direction: column;
    align-items: center;
  }

  .follow_img {
    margin: 10px 0 0 0;
    display: flex;
    gap: 15px;
  }

  .recuadro3 img,
  .recuadro4 img,
  .recuadro5 img {
    width: 100% !important;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .izquierdo_imagen {
    max-height: 220px;
    width: auto;
  }
}
