.carousel-container{
position: relative;
}

.carousel-items{
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding-top: 5px;
    padding-bottom: 10px;
}

.carousel-items ::-webkit-scrollbar{
display: none;
}

.card-produto {
    min-width: 180px;
    position: relative;
    max-width: 180px;
    min-width: 180px;
    max-height: 300px;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    border: 0px solid #979696;
    box-shadow: 1px 2px 4px #979696;
    transition: .2s;
   
  }

.card-produto:hover {
  transform: translateY(-3px);
}

.card-produto-image{
    width: 180px;

}
.card-preco-sm{
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    color: rgb(206, 138, 11);
    transform: translateX(-50%);
    font-weight: bold;
}

.card-preco-lg{
    font-size: 26px;
    color: rgb(206, 138, 11);
    font-weight: bold;
}

.card-produto:first-child{
    margin-left: 5px;
}

.card-produto-size{
    min-height: 260px;
    max-height: 260px;
}
.carousel-link {
    background-color: #ffffff;
    min-width: 100px;
    min-height: 100px;
    border-radius: 10px;
    padding: 10px;
    transition: .2s;
    text-align: center;
    justify-content: center;
}

.card-categoria {
    min-width: min-content;
    max-width: 180px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 2px solid transparent;
    transition: .2s;
   
  }
.card-categoria:hover{
   border-radius: 0px;
    border-bottom: 2px solid orange;
}

.btn-scroll{
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px #979696;
}

.btn-left{
    left: -20px;
}

.btn-right{
    right: -20px;
}

.card-produto-nome{
    margin-bottom: 50px;
    font-size: 14px;
}

.text-data{
    font-size: 13px;
    font-style: italic;
}

.text-orange{
    color: #ffa500;
}
.text-orange-dark{
    color: rgb(218, 144, 8);
}

.text-post{
    font-size: 8px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.text-md{
    font-size: 14px;
}

.text-small{
    font-size: 8px;
    color: black;
}
.fs-9{
    font-size: 9px;
}

.card-post{
    min-width: 260px;
    max-width: 260px;
    min-height: 300px;
    background: #fff;
    border-radius: 10px;
    border-radius: 15px;
    position: relative;
    padding: 10px;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px #979696;
    transition: .2s;
}
.card-post-image{
    width: 200px;
}

.card-post:hover{
    border: solid 1px white;
}

.text-small-italic{
    font-size: 10px;
    font-style: italic;
}
.bg-orange{
    background-color: orange;
}

.bg-orange-dark{
    color: rgb(218, 144, 8);
}

.ic-size-md{
    font-size: 18px;
}

#iframe-localizacao{
    transition: opacity 0.3s ease-in-out ;
}

.icon-hover{
    transform: scaleY(0px);
}
.icon-hover:hover{
    transform: translateY(-2px);
}

.bg-nav-gradient{
    background-image: linear-gradient(#fd7e14,#ffffff);
}

/*
.bg-footer-gradient{
    background-image: linear-gradient(#f7f5f5,#fff2c9);
}
*/
.bg-footer-gradient{
    background-image: linear-gradient(#ffffff,#e9e1d4);
}

/* media query pra mobile */
@media (max-width:767px){

    /* Card produto*/
    .card-produto {
    min-width: 130px;
    position: relative;
    max-width: 130px;
    background: #ffffff;
    border-radius: 5px;
    padding: 8px;
    border: 0px solid #979696;
    box-shadow: 1px 2px 4px #c0bebe;
    transition: .2s;
  }
  .card-produto-image{
    width: 100px;
  }
  .card-preco-sm{
    font-size: 13px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    }
    /*Card post*/
    .card-post{
    min-width: 180px;
    max-width: 180px;
    min-height: 190px;
    max-height: 320px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    padding: 10px;
    border: 2px solid transparent;
    box-shadow: 1px 2px 4px #cac8c8;
    transition: .2s;
    }
    .card-post-image{
    width: 160px;
    }
    .text-md{
    font-size: 13px;
}
}