.carrossel-wrapper-produtos {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 40px;
}

.carrossel-lista-produtos {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.carrossel-lista-produtos::-webkit-scrollbar {
  display: none;
}

.card-produto {
  position: relative;
  flex: 0 0 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background-color: #fff;
  cursor: pointer;
}

.card-produto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.card-produto:hover img {
  transform: scale(1.05);
  filter: none !important;
  opacity: 1 !important;
}

.acao-produto {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.card-produto:hover .acao-produto {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



.estrelas-avaliacao {
  display: flex;
  gap: 3px;
}

.estrela {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: #ccc;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 
    68% 57%, 79% 91%, 50% 70%, 
    21% 91%, 32% 57%, 2% 35%, 
    39% 35%
  );
}

.estrela.cheia {
  background-color: gold;
}

/* Setas lado a lado no lado direito */
.setas-navegacao-container {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.seta-navegacao {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.seta-navegacao:hover {
  background-color: #eee;
}

.btn-ver-produto {
  color: white;
  padding: 10px 40px;
  font-size: 16px;
  outline: none; 
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-ver-produto:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}



/* Ajustes para celular */
@media (min-width: 768px) {
    .carrossel-lista-produtos {
        gap: 20px;
    }
}

/* Ajustes para celular */
@media (max-width: 768px) {
    .carrossel-lista-produtos {
        gap: 10px;
    }
    
  
    .estrela {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #ccc;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 
    68% 57%, 79% 91%, 50% 70%, 
    21% 91%, 32% 57%, 2% 35%, 
    39% 35%
  );
}

    
.btn-ver-produto {
  color: white;
  padding: 7px 15px;
  font-size: 12px;
  border: none;
  border-radius: 4px;
  outline: none; 
  cursor: pointer;
}

  .carrossel-wrapper-produtos {
    padding: 0;
    margin: 0;
  }

  .carrossel-lista-produtos {
    padding-left: 10px;
    margin: 0;
    margin-top: 20px;
  }

  .card-produto {
    flex: 0 0 calc(50% - 10px);
    height: 250px;
  }

  /* Mostrar sempre o botão e estrelas no celular */
  .acao-produto {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}



.opcao-mobile:hover{
  cursor: pointer;
  transform: scale(1.1);
}

.opcoes-promocionais:hover{
  cursor: pointer; 
  transform: scale(1.1);
}

.faixa-lancamento1 {
        background-color: red;
        color: white;
        padding: 2px 8px;
        font-size: 8px;
        text-align: center;
        font-weight: bold;
        z-index: 2;
        width: 60%;
        box-sizing: border-box;
    }



    .promoSwiper {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        border-radius: 4px;
        padding: 0;
    }

    .slider-wrapper {
        position: relative;
    }

    .slider-wrapper .slide-button {
        position: absolute;
        top: 50%;
        outline: none;
        border: none;
        height: 50px;
        width: 50px;
        z-index: 4;
        color: #fff;
        display: flex;
        cursor: pointer;
        font-size: 2.2rem;
        background: #000;
        opacity: 0.9;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .slider-wrapper .slide-button:hover {
        background: #FFF;
        opacity: 0.7;
        color: #000;
        border: solid 1px #000;
    }

    .slider-wrapper .slide-button#prev-slide {
        left: -25px;
        display: none;
    }

    .slider-wrapper .slide-button#next-slide {
        right: -25px;
    }

    .slider-wrapper .image-list {
        display: grid;
        grid-template-columns: repeat(40, 1fr);
        gap: 18px;
        font-size: 0;
        list-style: none;
        margin-bottom: 30px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .slider-wrapper .image-list::-webkit-scrollbar {
        display: none;
    }

    .slider-wrapper .image-list .image-item {
        padding: 5px 10px;
        width: 200px;
        object-fit: cover;
    }

    .container .slider-scrollbar {
        height: 24px;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .slider-scrollbar .scrollbar-track {
        background: #ccc;
        width: 100%;
        height: 2px;
        display: flex;
        align-items: center;
        border-radius: 4px;
        position: relative;
    }

    .slider-scrollbar:hover .scrollbar-track {
        height: 4px;
    }

    .slider-scrollbar .scrollbar-thumb {
        position: absolute;
        background: #000;
        top: 0;
        bottom: 0;
        width: 50%;
        height: 100%;
        cursor: grab;
        border-radius: inherit;
    }

    .slider-scrollbar .scrollbar-thumb:active {
        cursor: grabbing;
        height: 8px;
        top: -2px;
    }

    .slider-scrollbar .scrollbar-thumb::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -10px;
        bottom: -10px;
    }
    
    
    
@media (min-width: 999px) {
.opcoes-promocionais{
    width: 33%;
    height: 130px;
    margin: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 6px;
}
.opcao-mobile{
    display: none;
}    

 .img01{
    background: url("../imagens/foto01.webp");
    background-size: contain;
    background-position: center;
 }

 .img02{
    background: url("../imagens/foto02.webp") ;
    background-size: contain;
    background-position: center;
 }


 .img03{
   background: url("../imagens/foto03.webp");
   background-size: contain;
   background-position: center;
 }
}

.opcao-desktop{
    display: flex; 
    flex-wrap: row; 
    margin:0;
    justify-content: space-around;
    align-items: center;
    border-radius: 5px;
    padding: 0;
    width: 100%;
}

.img-mobile{
    width: 100%;
    width: 100%;
}

.opcoes-mobile{
    justify-content: center; 
    align-items: center; 
}

/* Styles for mobile and tablets */
@media only screen and (max-width: 999px) {
        
.off-mobile{
    display: none;
}
.opcoes-promocionais{
    width: 49%;
    height: 130px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.opcao-mobile{
    margin-top: 0px;
    margin-bottom: 5px;
    width: 100%; 
    height: 140px;
    border-radius: 5px;
}

.img02{
    background: url("../imagens/foto02.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
 }

 .img03{
   background: url("../imagens/foto03.webp");
   background-size: cover;
   background-position: center;
   border-radius: 5px;
 }
 
 .img01{
   background: url("../imagens/foto01.webp") no-repeat 0 0;
   background-size: cover;
   background-position: bottom;
   border-radius: 5px;
 } 




        .produtos {
            max-width: 50%;
            padding: 10px;
        }
        
    
.slider-wrapper .slide-button {
    margin-top: 12px;
}
        .slider-wrapper{
           width: 99%;
        }
        
        .slider-wrapper .slide-button {
            position: absolute;
            top: 50%;
            outline: none;
            border: 1px solid #000;
            height: 40px;
            width: 40px;
            z-index: 3;
            color: #000;
            display: flex;
            cursor: pointer;
            font-size: 2.2rem;
            background: #fff;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .slider-wrapper .slide-button#prev-slide {
            left: -3px;
            display: none;
        }

        .slider-wrapper .slide-button#next-slide {
            right: -3px;
        }

        .slider-wrapper .image-list {
            gap: 10px;
            margin-bottom: 15px;
            scroll-snap-type: x mandatory;
        }

        .slider-wrapper .image-list .image-item {
            padding: 5px 10px;
            width: 200px;
        }

        .slider-scrollbar .scrollbar-thumb {
            width: 20%;
        }
    }

    .div-servicos {
        padding: 5px 10px;
        width: 200px;
        color: #fff;
        font-size: 20px;
        text-align: center;
        position: relative;
        justify-content: center;
        display: flex;
        font-weight: bold;
        background-size: cover;
    }

    .div-servicos:hover {
        cursor: pointer;
    }

    a {
        text-decoration: none;
        outline: none;
    }
    
    .msgNav{
       font-family: montserrat;
       font-size: 10px;
    }
    
    
.valor-promocoes b{
    font-family: montserrat;
    font-size: 15px;
}

.valor-promocoes{
    font-family: montserrat;
    font-size: 14px;
}

.servicos-lista-menu{
    font-weight: bold; 
    border-radius: 50px; 
    width: 200px; 
    padding: 5px; 
    text-align: center; 
    align-items: center; 
    font-size: 12px; 
    padding: 10px; 
    color: #fff; 
    background: #08295e;
}

.titulo-destaque{
    margin-bottom: 15px; 
    justify-content: left; 
    display: flex;
}

.titulo-destaque a{
   font-family: 'Montserrat'; 
   font-size: 16px; 
   text-decoration: none; 
   font-weight: bold;
}
