* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    /* scroll-behavior: smooth; */
}
body {
    margin: 0;
    padding: 0;
    background: #fff;
}
.vh{
    visibility: hidden;
}
.animated{
    opacity: 0;
}
.border-0{
    border: none !important;
}
.text-white{
    color: #fff;
}
.bg-dark{
    background-color: #000;
}
.bg-gray-dark{
    background-color: #313131;
}

.bread{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14pt;
    color: #000;
    margin: 17pt 0pt;
}
.bread a span{
    font-size: 12pt;
}
.bread a{
    color: #000;
    text-decoration: none;
}
.bread .text-muted{
    font-size: 12pt;
    color: #888;
}

.products-container{
    padding: 0 15pt;
    margin-top: 25pt;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scroll-behavior: smooth;
    height: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.products-container .products{
    display: flex;
    gap: 12pt;
    flex-direction: row;
    width: fit-content;
    justify-content: center;
}
.products-container::-webkit-scrollbar{
    display: none;
}
.products-container .products .product{
    display: flex;
    position: relative;
    flex-direction: column;
    width: 178pt;
    text-decoration: none;
    transition: border .3s;
    border: 1px solid transparent;
    padding-bottom: 5px;
}
.products-container .products .product:hover{
    border: 1px solid #707070;
}
.products-container .products .product:hover .content{
    padding-left: 10px;
}

.products-container .products .product .favorite{
    width: 12pt;
    height: 13pt;
    position:absolute;
    right: 7pt;
    top: 6pt;
    cursor: pointer;
    text-align: center;
}
.products-container .products .product .favorite svg{
    width: 100%;
    height: 100%;
}
.products-container .products .product .image{
    width: 100%;
    height: 225px;
    padding: 10pt;
    background: #F8F8F8;
}
.products-container .products .product .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    mix-blend-mode: multiply;
}
.products-container .products .product .content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all .3s ease-in-out;
}
.products-container .products .product .title{
    color: #222222;
    margin-top: 9pt;
}
.products-container .products .product .title h3{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12pt;
    font-weight: 900;
}
.products-container .products .product .title span{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10pt;
    font-weight: 300;
}
.products-container .products .product .action{
    width: 100%;
    margin-top: 7pt;
}
.products-container .products .product .action a, .products-container .products .product .action div{
    width: fit-content;
    background: #F2F2F2;
    border-radius: 24pt;
    padding: 2pt 13pt;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10pt;
    color: #222222;
    font-weight: 800;
    text-decoration: none;
}

.s4{
    width: 100%;
    height: 100pt;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.s4 div {
    width: 100%;
    height: 30.45pt;
}
.s4 div img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.s4 p{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 9pt;
    color: #000000;
    margin-top: 7pt;
    font-weight: 400;
    margin-bottom: 0px;
}
.s4 p strong{
    font-weight: 900;
}

.chevron {
    position: absolute;
    width: 2.1rem;
    height: 0.48rem;
    opacity: 0;
    bottom: 70pt;
    transform: scale(0.5);
  
    -webkit-animation: move-chevron 3s ease-out infinite;
            animation: move-chevron 3s ease-out infinite;
           
  }
  
  .chevron:nth-child(2) {
    -webkit-animation: move-chevron 3s ease-out 1s infinite;
            animation: move-chevron 3s ease-out 1s infinite;
  }
  
  .chevron:nth-child(3) {
    -webkit-animation: move-chevron 3s ease-out 2s infinite;
            animation: move-chevron 3s ease-out 2s infinite;
  }
  
  .chevron:before,
  .chevron:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #2c3e50;
  }
  
  .chevron:before {
    left: 0;
    transform: skewY(30deg);
  }
  
  .chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
  }
  
  @-webkit-keyframes move-chevron {
    25% {
      opacity: 1;
    }
    33.3% {
      opacity: 1;
      transform: translateY(2.28rem);
    }
    66.6% {
      opacity: 1;
      transform: translateY(3.12rem);
    }
    100% {
      opacity: 0;
      transform: translateY(4.8rem) scale(1);
    }
  }
  
  @keyframes move-chevron {
    25% {
      opacity: 1;
    }
    33.3% {
      opacity: 1;
      transform: translateY(2.28rem);
    }
    66.6% {
      opacity: 1;
      transform: translateY(3.12rem);
    }
    100% {
      opacity: 0;
      transform: translateY(4.8rem) scale(1);
    }
  }


/* Estilos para teléfonos móviles en modo horizontal */
@media (min-width: 481px) and (max-width: 767px) and (orientation: landscape) {
    .products-container .products .product .image{
        height: 185px;
    }
}

/* Estilos para tablets en modo retrato */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    .products-container{
        padding: 10px 0px;
        height: auto;
    }
    .products-container .products{
        width: 100%;
    }
    .products-container .products .product{
        width: 100%;
    }
    .products-container .products .product .title h3{
        font-size: 15pt;
    }
    .products-container .products .product .title span, .products-container .products .product .action a{
        font-size: 11pt;
    }
    .products-container .products .product .image{
        height: 185px;
    }    
}

@media screen and (width > 768px) and (width < 1024px){
    .products-container .products .product .image{
        height: 230px;
    }
    .products-container{
        width: 100% !important;
    }
}
/* Estilos para dispositivos de tamaño medio */
@media (min-width: 992px) and (max-width: 1279px) {
    .products-container{
        padding: 10px 0px;
        height: auto;
    }
    .products-container .products{
        width: 100%;
    }
    .products-container .products .product{
        width: 100%;
    }
    .products-container .products .product .title h3{
        font-size: 15pt;
    }
    .products-container .products .product .title span, .products-container .products .product .action a{
        font-size: 11pt;
    }
    .products-container .products .product .image{
        height: 290px;
    }
}

@media screen and (width > 1279px){
    .products-container .products{
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
    }
    .products-container .products .product .image{
        height: 255px;
    }
}

/* Estilos para laptops y desktops grandes */
@media (min-width: 1440px) {
    .products-container{
        padding: 10px 0px;
        height: auto;
    }
    .products-container .products{
        width: 100%;
    }
    .products-container .products .product{
        width: 100%;
    }
    .products-container .products .product .title h3{
        font-size: 15pt;
    }
    .products-container .products .product .title span, .products-container .products .product .action a{
        font-size: 11pt;
    }
    .products-container .products .product .image{
        height: 270px;
    }
    
}

@media screen and (width > 768px){
    .products-container{
        height: 280pt;
    }

}