/* Variables */

/* PARA OCULTAR EL PROGRESO DEL VIDEO */
/* Ocultar el control de progreso en el video */
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
  display: none;
}

.a-right {
  text-align: end;
}

/* Buttons */
.slide-show-button,
.product-gallery-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 5rem;
  border: 1px solid var(--gold-color);
  background: rgba(250, 250, 250, 0.5);
  outline: none;
  border-radius: 1rem;
  cursor: pointer;
  font-size: 1rem;
  z-index: 1;
  white-space: nowrap;
}

.blog-left-pattern {
  bottom: 0;
}

.blog-right-pattern {
  right: 0;
}

.blog-pattern {
  position: absolute;
  width: 30%;
  z-index: 1;
}
.blog-section .right-pattern {
  top: 30%;
}
/* VIDEO LANDING */

.landing-video-container {
  height: 80vh;
  width: 100vw;
  position: relative;
}
.full-screen-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 35px;
  opacity: 0.5;
  color: var(--bold-color);
  z-index: 10;
}
.landing-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: 0 43%; */
}

.call-to-actions-container {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-actions-container .cta-container {
  padding: 3%;
  background-color: rgba(250, 250, 250, 0.6);
  border: 1px solid var(--gold-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-actions-container .cta-container:first-child {
  margin-right: 2%;
}

.cta-container span {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--violet-color);
}

/* PARA EDITAR HOME VIDEO */
.edit-home-video-container {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.edit-home-video-container .change-image-btn-container {
  border-radius: 50%;
}

.edit-home-video-container .change-image-btn {
  font-size: 6rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
}

.edit-home-video-container > p,
.edit-home-video-container > label {
  width: 45%;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
}

.edit-home-video-container > button {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 1.5rem;
}

/* SLIDESHOW */
.slide-images-wraper.slide-images-wraper-desktop {
  display: none;
}

.slide-show {
  position: relative;
  width: 100vw;
  height: 85vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
}

.slide-show-button {
  bottom: 10%;
}

.slide-images-wraper {
  width: 100%;
  display: flex;
  height: 100%;
  background-color: #fff;
}

.slide-image-group {
  height: 100%;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.8s;
}

/* Para el slideShow */
.slide-image-group-active {
  transform: translateX(0);
}

.slide-image-group-next {
  z-index: -1;
  transform: translateX(100%);
}

.slide-image-group-prev {
  transform: translateX(-100%);
}

.slide-image-container {
  width: 0;
  flex-grow: 1;
  opacity: 0.9;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
  opacity: 0.8;
  transition: all 0.3s ease;
  object-fit: cover;
  background: linear-gradient(
    to left,
    rgba(200, 200, 200, 0.2),
    rgba(200, 200, 200, 0.4)
  );
  position: relative;
}

.slide-image-label {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 15%;
  font-size: 1.2rem;
  font-weight: 400 !important;
  opacity: 1;
  transition: all 1s;
}

/* 
.slide-image-label-visible {
    opacity: 1;
} */

.slide-image {
  width: 60%;
  height: 60%;
  object-fit: contain;
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

/* GALLERY SHOW */
.gallery-show {
  position: relative;
  display: flex;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.product-gallery-card {
  width: 0;
  /* flex: 0 0 33.33%; */
  flex-grow: 1;
  opacity: 0.9;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  filter: brightness(0.75);
  position: relative;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  overflow: hidden;
}

/* Para mobile */
.product-gallery-card-hover {
  cursor: pointer;
  opacity: 1;
  width: 50%;
  object-position: center;
  filter: contrast(120%);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-product-detail {
  position: absolute;
  bottom: 15%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-product-detail p {
  color: #fff;
  text-align: center;
}

.gallery-product-name {
  font-size: 1.2rem;
  margin-top: 5%;
}

.gallery-product-link {
  margin-bottom: 5%;
  border: 1px solid;
  padding: 2.5% 4.5%;
  border-radius: 2rem;
  font-size: 1.3rem;
}

.gallery-product-link:hover {
  border: 2px solid;
}

.product-gallery-button {
  display: none;
  bottom: 5%;
}

.product-gallery-button a {
  display: block;
  width: 100%;
  padding: 1rem 5rem;
}

.product-gallery-button.individual-button {
  padding: 0.5rem 3rem;
  font-size: 0.8rem;
}

.product-gallery-card-hover > .product-gallery-button.individual-button {
  display: block;
}

.product-gallery-card .overlay {
  z-index: 0;
  opacity: 0;
  transition-delay: 0.5s;
  transition: all 0.5s ease;
  background-color: rgba(0, 0, 0, 0.4);
}

.product-gallery-card-hover .overlay {
  opacity: 0.6;
}

.gallery-overlay .edit-file-buttons-container {
  width: 100%;
}

/* BLOG SECTION */
.blog-section {
  width: 100%;
  height: 190vh;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.blog-background {
  width: 100%;
  position: relative;
  height: 30%;
}

.blog-background .overlay {
  z-index: 1;
}

.blog-background-image {
  width: fit-content;
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-position: top;
}

.blog-section-title {
  /* color: #fff; */
  margin: auto;
  width: fit-content;
  font-size: 2rem;
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  text-align: center;
}

.see-all-blogs-container {
  width: fit-content;
  font-size: 1.2rem;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  text-align: center;
}

.see-all-blogs-container a {
  padding: 5px 16px;
  border: 1px solid var(--gold-color);
  color: var(--violet-color);
  font-weight: 700;
  border-radius: 10px;
}

.blogs-cards-container {
  width: 90%;
  height: 80%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  transition: all 0.6s ease;
  z-index: 5;
}

.blog-group {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.blog-group-active {
  transform: translateX(0);
}

.blog-group-next {
  transform: translateX(100%);
}

.blog-card {
  width: 100%;
  height: 32%;
  position: relative;
  display: flex;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  max-width: 500px;
}

.blog-card a {
  display: flex;
  align-items: center;
  height: 100%;
}

.blog-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -10;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  outline: none;
  border: none;
}

/* .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
    z-index: -1;
    border: 1px solid var(--gold-color);
    padding: 10px;
    
    background-color: rgba(230, 230, 230, .85);
}
 */
.blog-info {
  width: 95%;
  height: 60%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2% 5%;
  transition: all 0.5s ease;
  background-color: rgba(230, 230, 230, 0.9);
  border-radius: 10px;
  margin: 0 auto;
}

.blog-title {
  width: 100%;
  height: 60%;
  font-size: 1.2rem;

  text-align: center;
  color: #580846;
}

.blog-name {
  color: var(--violet-color);
}

.blog-author {
  border-right: 1.5px solid #fff;
  padding-right: 1.5%;
  margin-right: 1.5%;
}

.blog-section-button {
  bottom: 3%;
}

.blog-section-button a {
  padding: 0.8rem 3rem;
  display: block;
  width: 100%;
}

.blog-overlay .edit-file-buttons-container {
  top: 25%;
  z-index: 10;
  background-color: #9999998a;
  width: 80%;
}

/* ABOUT-US */
.about-us-container {
  display: flex;
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 5vh;
  flex-wrap: wrap;
  justify-content: center;
}

.about-us-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.7;
}

.about-us-information-container {
  height: 70vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 5vh;
  justify-content: space-evenly;
  align-items: flex-start;
}

.about-us-information-title {
  font-size: 1.6rem;
  width: 100%;
  font-weight: 600;
  margin-bottom: 1%;
  text-align: center;
  /* transition: all 2s ease; */
}

.about-us-information-subtitle {
  width: 95%;
  font-size: 1rem;
  /* margin-bottom: 2%; */
  text-align: center;
}

.about-us-frames-space {
  width: 100%;
}

.about-us-frames-container {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 10;
  height: 80%;
  overflow: visible;
  column-gap: 20%;
  transition: all 0.6s ease;
}

.about-us-frames-container-moving {
  transition: none !important;
}

.about-us-frame {
  width: 90%;
  height: 60%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--gold-color);
  border-radius: 2.5rem;
  justify-content: center;
  padding: 3% 2%;
  background-color: #fff;
  transition: all 0.8s ease;
  align-content: space-evenly;
  flex: 0 0 auto;
  margin: 0 5%;
  position: relative;
  z-index: 10;
}

.about-us-dots-container {
  width: 40%;
  max-width: 150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.about-us-dot {
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.about-us-dot-active {
  background: #000;
}

/* .about-us-frame-active {
    transform: translate(0);
}

.about-us-frame-next {
    z-index: -1;
    transform: translateX(200%);
}

.about-us-frame-prev {
    transform: translateX(-200%);
} */

.about-us-frame-title {
  width: 100%;
  text-align: center;
  margin-bottom: 2%;
  font-size: 1.2rem;
  white-space: nowrap;
}

.about-us-information {
  font-size: 1rem;
  text-align: center;
}

.about-us-details-container {
  height: 20vh;
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2vh 1vw;
  transition: all 0.6s ease;
  background-color: #fff;
}

.about-us-details-container-desktop {
  display: none;
}

/* .about-us-details-container-active{
    
} */
.about-us-details-list {
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  width: 100%;
  justify-content: space-evenly;
  align-items: flex-start;
  transition: all 0.6s ease;
  position: absolute;
}

.about-us-details-list-active {
  transform: translateX(0);
}

.about-us-details-list-next {
  z-index: -1;
  transform: translateX(100%);
}

.about-us-details-list-prev {
  transform: translateX(-100%);
}

.about-us-list-item {
  width: 25%;
  text-align: center;
  font-size: 0.75rem;
  height: fit-content;
  /* opacity: 0; */
}

.about-us-list-item i {
  margin-right: 5px;
  width: 100%;
}

.blogs-slideshow-container {
  width: 100%;
  height: 300px;
  border: 1px solid red;
  margin-bottom: 5vh;
}

/* INSTAGRAM POSTS */
.instagram-container {
  width: 100vw;
  height: 80vh;
  display: flex;
  flex-wrap: wrap;
}

.instagram-label {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  height: fit-content;
  margin-bottom: 5vh;
}

.instagram-client-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.instagram-cards-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  position: relative;
  height: 100%;
}

.instagram-card {
  width: 80%;
  height: 60%;
  position: absolute;
  top: 0;
  cursor: pointer;
  transition: opacity 0.7s ease;
  opacity: 0;
  overflow: hidden;
  border-radius: 1.5rem;
}

.instagram-card-active {
  opacity: 1;
}

.instagram-card-active .instagram-client-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.instagram-card > a {
  display: block;
  width: 100%;
  height: 100%;
}

.edit-file-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease;
}

.edit-file-buttons-container {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  justify-content: space-evenly;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.photo-label-container {
  border-radius: 15px;
  border: 1px solid var(--gold-color);
  padding: 10px;
  width: fit-content;
  margin: 0 auto;
  background-color: rgba(230, 230, 230, 0.85);
}

.instagram-logo {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  color: var(--violet-color);
}

.instagram-page-name {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: var(--violet-color);
}

.instagram-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.instagram-overlay .edit-file-buttons-container {
  width: 100%;
}

/* Para verlo del lado del admin */
.change-image-btn-container {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.change-image-btn {
  color: #fff;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 50%;
  cursor: pointer;
}

.instagram-input-file-label,
.cancel-file-action,
.confirm-instagram-file-btn {
  cursor: pointer;
  border: 1px solid #eee;
  border-radius: 1rem;
  color: #fff;
  width: 47%;
  text-align: center;
  font-size: 0.9rem;
}

.instagram-input-file-label:hover,
.cancel-file-action:hover,
.confirm-instagram-file-btn:hover {
  background-color: #ccc;
  color: #777;
}

.confirm-instagram-file-btn {
  width: 80%;
  margin-top: 1rem;
  background: none;
}

/* DISCOUNT BANNER  */
.discount-banner-section {
  width: 100%;
  height: 40vh;
  /* background:radial-gradient(circle,var(--light-violet-color),var(--violet-color));  */
  background: linear-gradient(to bottom, var(--gold-bg-color), #aa947794);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.discount-banner-img-container {
  position: relative;
  width: 60%;
  height: 100%;
  max-width: 220px;
}

.discount-banner-img {
  width: 100%;
  height: 100%;
  /* Comienza desde arriba y transparente */
  margin-top: -100%;
  opacity: 0;
  object-fit: contain;
  transition: all 1.4s ease-in-out;
}

.discount-banner-img-container-active img {
  margin-top: 0;
  /* Llega a la posición original */
  opacity: 1;
}

.discount-banner-text-container {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

.banner-label {
  color: var(--bold-color);
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  width: fit-content;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
  overflow: hidden;
  opacity: 0;
  transition: 1.3s;
  transition-delay: 1.2s;
}
.banner-label-input {
  background: none;
}
.discount-banner-text-container-active .banner-label {
  opacity: 1;
}

.banner-discount-tag {
  font-size: 16px;
  border-radius: 10px;
  width: fit-content;
  transition: all 1.2s ease;
  transition-delay: 1.6s;
  margin-right: -200%;
  opacity: 0;
}

.banner-button {
  padding: 5px 15px;
  border: 1px solid;
  border-radius: 15px;
  font-size: 14px;
  height: fit-content;
  width: fit-content;
  background-color: var(--bold-color);
  color: #fff;
  border-color: var(--violet-color);
  transition: all 1.4s ease;
  transition-delay: 2s;
  margin-left: -200%;
  opacity: 0;
  margin-top: 20%;
}

.discount-banner-text-container-active .banner-discount-tag,
.discount-banner-text-container-active .banner-button {
  opacity: 1;
  margin-right: 0;
  margin-left: 0;
}
/* Para eliminarlos */
.destroy-all-discounts-form {
  margin-top: 5%;
  width: 80%;
}

.action-buttons-container,
.confirm-action-buttons-container {
  width: 100%;
  height: 30px;
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  align-items: center;
  transition: all 0.3s ease;
}
.confirm-action-buttons-container {
  scale: 0;
  opacity: 0;
  z-index: 10;
}
.confirm-action-buttons-container-active {
  scale: 1;
  opacity: 1;
}
.action-buttons-container {
  position: relative;
}
.confirm-action-buttons-container {
  position: absolute;
}
.action-buttons-container > p,
.confirm-action-buttons-container > p {
  width: 50%;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  padding: 5px 15px;
  height: 100%;
  white-space: nowrap;
  text-align: center;
}
.start-discounts-destroying {
  background-color: #000;
}
.start-discounts-destroying:hover {
  background-color: #555;
}
.start-editing {
  background-color: var(--bold-color);
}
.start-editing:hover {
  background-color: #5808469e;
}
.undo-title-change {
  background-color: rgb(158, 27, 27);
}
.confirm-title-change {
  background-color: rgb(10, 81, 26);
}

.destroy-discounts-popup {
  padding: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  scale: 0;
  opacity: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.destroy-discounts-popup-active {
  scale: 1;
  opacity: 1;
}
.destroy-discounts-popup-buttons-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 576px) {
  .call-to-actions-container {
    flex-direction: row;
  }

  .call-to-actions-container .cta-container:first-child {
    margin-bottom: 0;
    margin-right: 5%;
  }

  .call-to-actions-container .cta-container {
    padding: 0;
    width: 230px;
    height: 70px;
  }

  .cta-container span {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) {
  /*VIDEO SECTION*/
  .landing-video-container {
    height: 90vh;
  }
  .full-screen-btn {
    display: none;
  }
  /* BLOG SECTION */
  .blog-section {
    height: 120vh;
  }

  .blog-background {
    height: 55%;
  }

  .blogs-cards-container {
    height: 60%;
    top: 60%;
  }

  .blog-group {
    flex-direction: row;
  }

  .blog-card {
    width: 32%;
    height: 95%;
  }

  .blog-section-button {
    bottom: 0;
  }

  /* IG */
  .instagram-card {
    height: 60%;
    flex: 0 0 auto;
    flex-grow: 1;
    width: 0;
    position: static;
    scale: 1;
    opacity: 1;
  }

  .instagram-card-active {
    width: 40%;
  }

  /* ABOUTUS */
  .about-us-information-subtitle {
    margin-bottom: 2%;
    width: 60%;
  }

  .about-us-frames-container {
    background: none;
    width: 90%;
    justify-content: space-evenly;
    column-gap: unset;
    margin: 0 auto;
  }

  .about-us-frame {
    width: 30%;
    position: static;
    flex: unset;
    margin: unset;
  }

  .about-us-dots-container {
    display: none;
  }

  /* DISCOUNT BANNER */
  .discount-banner-img-container {
    width: 35%;
    max-width: 490px;
  }

  .discount-banner-img {
    object-fit: cover;
  }

  .discount-banner-text-container {
    width: 40%;
  }

  .banner-label {
    font-size: 45px;
  }

  .banner-discount-tag {
    font-size: 28px;
  }

  .banner-button {
    padding: 12.5px 17.5px;
    font-size: 18px;
    margin-top: 10%;
  }
}

@media (min-width: 1024px) {
  .call-to-actions-container .cta-container {
    cursor: pointer;
  }

  .call-to-actions-container .cta-container {
    height: 50px;
  }

  .blog-section {
    height: 140vh;
  }

  /* EDITAR HOME VIDEO */
  .edit-file-buttons-container {
    width: 30%;
  }

  .edit-home-video-container .change-image-btn {
    font-size: 6rem;
  }

  .edit-file-overlay p,
  .edit-file-overlay label,
  .edit-file-overlay .confirm-instagram-file-btn {
    font-size: 1.2rem;
    text-transform: uppercase;
  }

  .blog-overlay .edit-file-buttons-container {
    top: 15%;
    left: 15%;
    z-index: 15;
    background: none;
    width: 30%;
  }

  .blog-overlay p,
  .blog-overlay label,
  .blog-overlay .confirm-instagram-file-btn {
    font-size: 1rem;
    text-transform: uppercase;
  }

  .instagram-overlay p,
  .instagram-overlay label,
  .instagram-overlay .confirm-instagram-file-btn {
    font-size: 0.8rem;
    text-transform: none;
  }

  .instagram-client-overlay > p {
    font-size: 1.2rem;
  }

  .gallery-overlay p,
  .gallery-overlay label,
  .gallery-overlay .confirm-instagram-file-btn {
    font-size: 1rem;
  }

  /* SLIDESHOW */
  .slide-images-wraper-mobile {
    display: none;
  }

  .slide-images-wraper.slide-images-wraper-desktop {
    display: flex;
  }

  .slide-image-container {
    width: 33.333%;
    cursor: pointer;
  }

  .slide-image-container:hover > .slide-image {
    height: 70%;
    width: 80%;
  }

  .slide-image-container:hover > .slide-image-label {
    opacity: 1;
  }

  .slide-image {
    height: 60%;
  }

  .slide-image:hover {
    object-position: center;
  }

  .slide-image-label {
    top: 5%;
    transition: 0.5s;
    transition-delay: 0;
    font-size: 1.5rem;
    opacity: 0;
  }

  .slide-show-button {
    font-size: 1.2rem;
  }

  /* GALLERYSHOW */

  .product-gallery-card:hover {
    cursor: pointer;
    opacity: 1;
    width: 10%;
    object-position: center;
    filter: contrast(120%);
  }

  .gallery-product-name {
    font-size: 1.5rem;
  }

  .product-gallery-button {
    display: block;
  }

  .product-gallery-button.individual-button {
    display: none;
  }

  .product-gallery-card:hover .overlay {
    opacity: 0.6;
  }

  /* BLOG SECTION */
  .blog-section {
    height: 95vh;
  }

  .blog-background {
    height: 70%;
  }

  .blog-background .overlay {
    display: none;
  }

  .blog-section-title {
    font-size: 3rem;
    top: 20%;
  }

  .blogs-cards-container {
    width: 80%;
    height: 60%;
    top: 60%;
  }

  .blog-info {
    align-content: space-around;
  }

  .blog-group {
    flex-direction: row;
  }

  .blog-group-active {
    transform: translateX(0);
  }

  .blog-group-next {
    transform: translateX(100%);
  }

  .blog-card {
    width: 32%;
    height: 100%;
  }

  /* al hacer hover saca tanto el overlay como el titulo */
  .blog-card:hover > .overlay {
    opacity: 0.6;
  }

  .blog-card:hover .blog-img {
    width: 110%;
    height: 110%;
  }

  .blog-section .overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.4)
    );
  }

  .blog-title {
    height: 40%;
    font-size: 1.5rem;
  }

  .blog-section-button {
    bottom: 5%;
  }

  /* ABOUT US */
  .about-us-container {
    margin-bottom: 15vh;
  }

  .about-us-information-container {
    align-items: center;
  }

  .right-pattern {
    right: -10%;
  }

  .left-pattern {
    z-index: -1;
    bottom: 0%;
    rotate: 58deg;
    left: -22%;
    width: 37%;
  }

  .about-us-information-title {
    font-size: 1.8rem;
  }

  .about-us-information-subtitle {
    font-size: 1.3rem;
  }

  .about-us-dots-container {
    display: none;
  }

  .about-us-frame:hover {
    scale: 1.1;
  }

  .about-us-small-frame {
    height: 16rem;
  }

  .about-us-big-frame {
    height: 20rem;
  }

  .about-us-frame-title {
    font-size: 1.35rem;
  }

  .about-us-details-container-desktop {
    display: flex;
    align-content: flex-end;
    padding: 0 1vw;
    margin-top: 2vh;
  }

  .about-us-details-container-mobile {
    display: none;
  }

  .about-us-details-container {
    height: 20vh;
    width: 75%;
  }

  .about-us-details-list {
    opacity: 0;
    transform: translateY(200%);
    width: 85%;
    height: 50%;
    position: static;
  }

  .about-us-details-list-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .about-us-list-item {
    width: 16.666%;
    font-size: 0.9rem;
  }

  /* INSTAGRAM POSTS */
  .instagram-label {
    text-align: start;
    margin-left: 4.1666%;
    margin-bottom: 10vh;
  }

  .instagram-card {
    width: 15%;
    height: 40%;
    position: relative;
    opacity: 1;
    scale: 1;
    flex: unset;
  }

  .instagram-card:nth-child(even) {
    top: 10%;
  }

  .instagram-card:hover .instagram-image {
    width: 120%;
    height: 120%;
  }

  .instagram-client-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
  }

  .instagram-client-overlay-active {
    opacity: 1;
  }

  .instagram-logo {
    font-size: 1.5rem;
  }

  .instagram-page-name {
    font-size: 1.1rem;
  }

  .instagram-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  /* DISCOUNT BANNER */
  .banner-label {
    font-size: 60px;
  }

  .banner-discount-tag {
    font-size: 30px;
  }

  .banner-button {
    padding: 10px 20px;
    font-size: 20px;
    margin-top: 4%;
  }
}

/* ANIMAciónES */
@keyframes paragraphTranslation {
  0% {
    transform: translateX(-100%);
    /* Comienza desde la izquierda */
  }

  100% {
    opacity: 1;
    /* Al final de la animación, muestra los párrafos */
    transform: translateX(0);
    /* Los párrafos estarán en su posición original */
  }
}

@keyframes listItemTranslation {
  0% {
    transform: translateX(100%);
    /* Comienza desde la derecha */
  }

  100% {
    opacity: 1;
    /* Al final de la animación, muestra los párrafos */
    transform: translateX(0);
    /* Los párrafos estarán en su posición original */
  }
}
