*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body{
    background-color: #e3e6e6;
    color: #0f1111;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f6fc;
  margin: 0;
  padding: 0;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.produto {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 7px;
  padding: 12px;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Poppins', sans-serif;
  max-width: 285px; /* AUMENTOU A LARGURA */
  height: 320px;     /* Também aumentei um pouco a altura para manter a proporção */
}

.produto:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.produto img {
  max-width: 100%;
  height: auto;
  border-radius: 7px;
  margin-bottom: 10px;
}

.nome-produto {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
  min-height: 68px; /* Pode ajustar conforme o tamanho dos nomes */
  line-height: 1.3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6px;
  margin-bottom: 5px;
}


.valor-promocao {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #232f3e;
  background-color: #f7f7f7  /*rgba(0, 0, 0, 0.08)*/;
   border-radius: 7px;
  padding: 6px 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.preco-original {
  text-decoration: line-through;
  color:rgba(0,0,0,0.7) /* #777*/;
  font-size: 12px;
  font-weight: normal;
}


.desconto-badge {
  background-color: #E91E63 /* #c8102e*/; /* Vermelho forte */
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 7px;
  align-self: flex-start; /* Alinha à esquerda dentro do flex container */
  margin-left: 5px;
}


.linha-desconto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0px;
  
}


.cliques-info {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
  gap: 5px;
  margin-right: 5px;
}


/* Container principal */
.product-col {
  max-width: 24%;
  min-height: 200px;
  margin: 28px auto;
  background: #fff;
  padding: 20px 24px;
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(106, 27, 154, 0.12);
  animation: fadeIn 0.5s ease forwards;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* AJUSTE RESPONSIVO PARA TELAS MENORES */
@media (max-width: 768px) {
  .product-col {
    max-width: 95%;
    padding: 16px 18px;
    margin: 0px auto;
  }
}


.product-col:hover {
  box-shadow: 0 8px 24px rgba(106, 27, 154, 0.18);
}

/* Título */
.product-col h3 {
  font-size: 0.99rem;
  color: #000000;
  font-weight: 500;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
}

.product-col h3 span {
  font-size: 1.12rem;
  margin-right: 0px;
}

/* Grade 2 colunas expansiva */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

/* Card do item */
.product-item {
  flex: 1 1 calc(50% - 14px);
  min-width: calc(50% - 14px);
  background: #fff;
 /* border-radius: 7px;*/
  padding: 1px 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*text-align: center;*/
 /* box-shadow: 0 2px 8px rgba(106, 27, 154, 0.08);*/
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  min-height: 119px;
  user-select: none;
  
}

.product-item:hover {
 /* box-shadow: 0 6px 18px rgba(106, 27, 154, 0.18);*/
  transform: translateY(-4px);
}

/* Imagem */
/* Imagem */
.product-item img {
    width: 100%;
    max-width: 150px;
    height: 100px;
    /* object-fit: contain; */
    gap: 15px;
    border-radius: 5px;
    filter: brightness(1.05);
    transition: transform 0.3s 
ease;
}

.product-item:hover img {
  transform: scale(1.1);
}

/* Nome do item */
.product-item h4 {
    font-size: 0.80rem;
    font-weight: 600;
    margin: 0;
    color: #000000;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.00em;
}
.titulo-com-icone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.99rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 16px;
}

.titulo-com-icone .circle-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Animações */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo para celular: 1 por linha */
@media (max-width: 600px) {
 
  .product-col {
    padding: 16px 20px;
  }

  .product-col h3 {
    font-size: 1.2rem;
  }
}
.promo-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.promo-texto {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-texto small {
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.promo-texto h2 {
  font-size: 20px;
  margin: 0 0 16px;
  line-height: 1.4;
}

.btn {
  background-color: #E91E63;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  width: fit-content;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #e91e62a9;
  color: white;
}
.texto-link{
    color: white;
}

.promo-imagem {
  flex: 1;
  background-image: url('sua-imagem.jpg');
  background-size: cover;
  background-position: center;
  min-height: 200px;
  background: #e2e5e7;
}
.promo-icone i {
  font-size: 60px; /* aumenta o tamanho do ícone */
  color: #000000;
  margin-top: 70px;
  margin-left: 35px;
}
.sponsored {
  color: #999; /* cinza claro */
  font-size: 11px;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  margin-left: 235px;
  margin-top: 2px;
}

.publicidade{
  border-radius: 7px;
  height: 234px;
}
.info-icon {
  display: inline-block;
  font-size: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ccc;
  color: white;
  text-align: center;
  margin-left: 4px;
  line-height: 14px;
  font-weight: bold;
  font-family: sans-serif;
}


.modal-promocao {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-promocao-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  padding: 60px 30px 80px;
  border-radius: 7px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.svg-fundo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.svg-fundo svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.modal-promocao-content > * {
  position: relative;
  z-index: 1;
}

.fechar-modal-promocao {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  z-index: 2;
}

.confete-promocao {
  width: 80px;
  margin-bottom: 20px;
}

.modal-promocao-content h2 {
  font-size: 26px;
  color: #8226c9;
  margin-bottom: 16px;
}

.texto-promocao {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.destaque {
  color: #8226c9;
  font-weight: bold;
}

.aviso-promocao {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.botao-promocao {
  display: inline-block;
  background-color: #a64bd1;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.botao-promocao:hover {
  background-color: #8226c9;
}

.svg-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Colocar atrás de tudo */
  pointer-events: none;
  overflow: hidden;
}

.onda {
  position: absolute;
  width: 200%;
  height: 200px;
  background: linear-gradient(to right, #a64bd1, #8226c9);
  border-radius: 100%;
  opacity: 0.15; /* Menor opacidade para não interferir no texto */
  
}

.onda-top {
  top: -100px;
  left: -50%;
  transform: rotate(180deg);
}

.onda-bottom {
  bottom: -100px;
  left: -50%;
}

  .gif-uma-vez {
    width: 100%;
    height: auto;
  }

/* Container do texto, exemplo */
.modal-promocao-content {
  position: relative;
  z-index: 1; /* Acima das ondas */
}


.promo-box {
  background: #fff;
  border-radius: 8px;
  padding: 3px;
  
  max-width: 100%;
  margin-top: 4px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.promo-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: #000000;
}

.promo-box p {
  font-size: 0.85rem;
  margin-bottom: 7px;
  color: #000000;
}

.promo-box a {
  font-size: 0.9rem;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.promo-box a:hover {
  text-decoration: underline;
}



.carrossel-container {
  position: relative;
  margin: auto;
  overflow: hidden;
  margin-top: -0px;
    background-color: white;
    padding: 20px;
    margin: 20px 70px;
    position: relative;
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.12);
    animation: fadeIn 0.5s 
ease forwards;
    transition: box-shadow 0.3s 
ease;
}

@media (max-width: 768px) {
  .carrossel-container  {
 margin-top: 0px;
         max-width: 320px;
  }
}

.carrossel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 140px; /* largura fixa para cada item */
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; 
  padding: 0 15px; 
  gap: 20px;
  align-items: start; /* alinha todos no topo */
}

.carrossel::-webkit-scrollbar {
  display: none; 
}

.container-centralizada {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    height: 100%; /* ocupa toda a altura do grid */
}

.item {
  width: 120px;      
  height: 120px;     
  background: linear-gradient(135deg, #6a1b9a, #6a1b9a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; 
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 2rem;
  margin-bottom: 8px;
}

.iten {
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: #333;
  font-family: 'Poppins', sans-serif;
  max-width: 140px;
  word-wrap: break-word;
  /* Altura mínima para uniformizar */
  min-height: 40px;
  display: flex;
  align-items: flex-start; /* alinha texto no topo */
  justify-content: center;
}

.item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(186, 104, 200, 0.9);
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 500px) {
  .item-wrapper {
    flex: 0 0 110px;
  }

  .item {
    width: 90px;
    height: 90px;
  }

  .iten {
    font-size: 0.8rem;
    max-width: 110px;
  }
}


.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.image-item {
  transition: transform 0.3s ease; /* Suavização */
}

.image-item:hover {
  transform: scale(1.05);
 
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.image-item p {
    
    font-size: 12px;
    font-weight: bold;
    font-family: 'Poppins';
}


.product-recomendado {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* ⬅ Para distribuir melhor os elementos */
    min-height: 420px; /* ⬅ Garante altura mínima do card */
}

.grid-recomendado {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-grow: 1;
    transition: transform 0.3s ease;
}
.grid-recomendado:hover {
  transform: scale(1.05);
}
.item-recomendado img {
    width: 100%;
   /* height: 220px;  ⬅ Imagem maior */
    object-fit: contain; /* ⬅ Mantém proporção sem cortar */
    border-radius: 5px;
}

.item-recomendado p {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: bold;
}

.item-recomendado small {
    font-size: 13px;
    color: #666;
}

.product-recomendado a {
    text-decoration: none;
    color: #6a1b9a;
    font-weight: bold;
    margin-top: 10px;
}


.product-col h3 {
  margin-bottom: 0px;
  font-weight: bold;
}

/* Classes internas renomeadas para .product-col-... */
.product-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.p-desc{
  margin: 5px 0 0;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Poppins';
}

.product-col-item {
  position: relative;
  text-align: center;
  font-size: 14px;
  color: #333;
  transition: transform 0.3s ease; /* Suavização */
}
.product-col-item:hover {
  transform: scale(1.05);
}

.product-col-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

.product-col-discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #e60023; /* vermelho similar */
  color: white;
  padding: 4px 8px;
  font-weight: bold;
  font-size: 12px;
  border-radius: 3px;
}

.product-col-offer-text {
  margin-top: 6px;
  font-weight: 600;
  color: #e60023;
  font-size: 12px;
}

.product-col a {
  
  margin-top: 0px;
  text-decoration: none;
  color: #0073e6;
  font-weight: 600;
  cursor: pointer;
}

.product-col a:hover {
  text-decoration: underline;
}


.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #6a1b9a;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
}

.carrossel-btn.esquerda { left: 10px; }
.carrossel-btn.direita { right: 10px; }

.barra-progresso {
  height: 5px;
  background: #ddd;
  width: 100%;
  margin-top: 10px;
  border-radius: 3px;
  overflow: hidden;
}

.barra-progresso-preenchida {
  height: 100%;
  width: 0%;
  background: #6a1b9a;
  transition: width 0.2s ease;
}

.iten {
  margin-left: 0px; /* Se quiser manter, mas pode atrapalhar centralização */
  font-family: 'Poppins';
  font-size: 15px;
  color: #000000;
  
  text-align: center; /* Centraliza o texto horizontalmente */
}

.cat-img{
  border-radius: 5px;
}
.cat-title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

a{
    text-decoration: none;
    color: inherit;
}






.cart-container{
    display: flex;
    align-items: center;
    margin: 0px 15px;
    color: white;
    font-size: 13px;
}

.hero-slider ul{
    display: flex;
    overflow-y: hidden;
}


/**/

.hero-slider {
  position: relative;
  overflow: hidden;
   line-height: 0; /* elimina cálculo errado inicial */
}

.hero-slider img {
  width: 100%;
  height: auto;
  display: block;
}


/* Gradiente profundo, fusão total */
.hero-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%; /* transição mais longa */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(248, 246, 252, 0.4) 40%,
    rgba(248, 246, 252, 0.7) 65%,
    rgba(248, 246, 252, 0.9) 85%,
    #f8f6fc 100%
  );
  pointer-events: none;
  transition: background 0.3s ease-in-out;
}




.hero-slider a{
    position: absolute;
    top: 14%;
    z-index: 1;
    color: #6a1b9a;
    text-decoration: none;
    font-weight: 600;
    font-size: 50px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: white;
}

.hero-slider a:hover{
  background-color: #f5f7f7;
}

.slider-control-next{
    right: 0;
}

.hidden{
    opacity: 0;
    pointer-events: none;
    position: absolute;
}


.product-row{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: space-between;
    margin: 20px 63px;
    
}


.product-col a{
    font-size: 13px;
    font-weight: 700;
    color: #673AB7;
    transition: 0.4s ease-in-out;
    
}

.product-col a:hover{
    color: #cc260c;
    text-decoration: none;
}

/* CORREÇÃO SIMPLES E EFETIVA */
.header-box{
    position: relative;
    top: -430px;
    margin-bottom: -430px;
    z-index: 10;
}

/* CORREÇÃO SIMPLES E EFETIVA */
.header-box{
    position: relative;
    top: -430px;
    margin-bottom: -430px;
    z-index: 10;
}

/* Ajustes progressivos a cada 200px */
@media (max-width: 1600px) {
  .header-box {
    top: -425px;
    margin-bottom: -415px;
  }
}

@media (max-width: 1400px) {
  .header-box {
    top: -380px;
    margin-bottom: -370px;
  }
}

@media (max-width: 1360px) {
  .header-box {
    top: -375px;
    margin-bottom: -360px;
  }
}

@media (max-width: 1200px) {
  .header-box {
    top: -335px;
    margin-bottom: -320px;
  }
}

@media (max-width: 1064px) {
  .header-box {
    top: -300px;
    margin-bottom: -290px;
  }
}

@media (max-width: 1024px) {
  .header-box {
    top: -260px;
    margin-bottom: -240px;
  }
}

@media (max-width: 992px) {
  .header-box {
    top: -220px;
    margin-bottom: -200px;
  }
}

@media (max-width: 800px) {
  .header-box {
    top: -200px;
    margin-bottom: -180px;
  }
}

@media (max-width: 768px) {
  .header-box {
    top: -173px;
    margin-bottom: -150px;
  }
}

@media (max-width: 600px) {
  .header-box {
    top: -140px;
    margin-bottom: -117px;
  }
}

@media (max-width: 480px) {
  .header-box {
    top: -65px;
    margin-bottom: -80px;
    margin: auto;
    width: 350px;
  }
}

@media (max-width: 360px) {
  .header-box {
    top: -80px;
    margin-bottom: -60px;
  }
}
@media (max-width: 1024px) {
    .split-box {
        padding: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        width: 300px;

    }

   
}

@media (max-width: 1024px) {
.product-col {
        max-width: 95%;
        padding: 16px 18px;
        margin: 0px auto;
    }
}
/* Herda o layout das outras colunas */
.split-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
  padding: 0;
  min-height: 200px; /* mesma altura das outras colunas */
  gap: 10px;
}

@media (max-width: 768px) {
  .split-column {
    max-width: none;
    margin-top: 10px;
  }
}

/* Cada caixa ocupa 50% da coluna */
.split-box {
  background-color: white;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}

/* AJUSTE RESPONSIVO PARA TELAS MENORES */
@media (max-width: 768px) {
  .split-box {
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 300px;
  }
}


.products-slider {
    background-color: white;
    padding: 20px;
    margin: 20px 70px; /* Desktop */
    position: relative;
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.12);
    animation: fadeIn 0.5s ease forwards;
    transition: box-shadow 0.3s ease;
}

/* Tablet */
@media(max-width: 768px){
    .products-slider{
        margin: 20px 40px;
    }
}

/* Celular */
@media(max-width: 480px){
    .products-slider{
        margin: 20px 30px; /* Ou 15px para ainda menos margem */
    }
}

/* Celular muito pequeno */
@media(max-width: 360px){
    .products-slider{
        margin: 20px 10px;
    }
}

.products-slider:hover{
   box-shadow: 0 8px 24px rgba(106, 27, 154, 0.18);
}

.products-slider .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-slider .header h2 {
  font-size: 18px;
  font-weight: bold;
}

.products-slider .header a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Poppins';
}
.products-slider .header a:hover{
  color: #691b9aa4;
}

.products {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 10px 0;
}

.products img {
  max-width: 185px;
  max-height: 185px;
  object-fit: contain;
  flex-shrink: 0;
}

.products::-webkit-scrollbar {
  display: none;
}

/* Botões de navegação */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.8);
  border: 1px solid #ccc;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(230,230,230,1);
}

.slider-btn.left {
  left: 5px;
}

.slider-btn.right {
  right: 5px;
}

.slider-btn:disabled {
  opacity: 0;
  pointer-events: none;
  display: none;
}

/* Barra de progresso */
.barra-progresso {
  height: 4px;
  background: #eee;
  margin-top: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.barra-preenchida {
  height: 100%;
  width: 0%;
  background: #6a1b9a;
  transition: width 0.3s ease;
}

.product-card{
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-width: 210px;
    background-color: white;
}

.product-card img{
    width: 110px;
    margin: 0 50px;
}

.product-offer p{
    background-color: #cc0c39;
    color: white;
    font-size: 12px;
    display: inline-block;
    padding: 5px 5px;
    border-radius: 3px;
    margin: 7px 0;
}

.product-offer span{
    font-size: 12px;
    font-weight: 800;
    color: #cc0c39;
}

.product-price{
    color: #0f1111;
    font-size: 12px;
    font-weight: 500;
}

.product-price span{
    font-size: 20px;
}

.product-price h4{
    font-size: 14px;
}

footer{
    margin-top: 15px;
}

.back-to-top{
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.footer-menu{
    background-color: #232f3e;
    height: 350px;
    color: white;
    display: flex;
    justify-content: space-evenly;
}

.footer-menu ul{
    margin-top: 35px;
}

ul p{
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 25px;
}

ul a{
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-top: 13px;
    transition: 0.4s ease-in-out;
}

ul a:hover{
    text-decoration: underline;
}

.footer-copyright{
    background-color: #232f3e;
    color: white;
    font-size: 14px;
    border-top: 0.3px solid #686868;
    display: flex;
    justify-content: space-between;
    padding: 20px 120px;
    align-items: center;
}





/* Botões */

/*.bottom-nav{
    background-color: #6a1b9aed;
    color: white;
    display: flex;
    align-items: center;
    padding: 7px 25px;
    font-size: 14px;
    gap: 18px;
}

.bottom-nav div{
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 600;
}

.bottom-nav img,
.bottom-nav p{
    cursor: pointer;
}*/


/* SISTEMA DE AVALIAÇÃO - LAYOUT INFORMATIVO */
.container-avaliacao {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    gap: 4px;
    /*margin: 12px 0;*/
   /* padding: 10px 16px;*/
  /*  background: #f8fafc;*/
    border-radius: 8px;
  /*  border: 1px solid #e2e8f0;*/
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-left: 9px;
    margin-top: 2px;
}

.nota-media {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    
}

.estrela-destaque {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 700;
    min-width: 30px;
    margin-top: -2px;
}

.contador-avaliacao {
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    margin-left: auto; /* Isso empurra para a direita */
    text-align: right;
    margin-right: 10px;
    min-width: 30px; /* Garante um tamanho mínimo */
}

.sem-avaliacao-texto {
    color: #94a3b8;
    font-size: 14px;
    font-style: italic;
}

/* Badge para avaliações TOP */
.badge-avaliacao {
    position: absolute;
    top: -6px;
    right: -8px;
    background: rgb(255 2 2 / 79%);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow:  0 2px 8px rgb(0 0 0 / 13%);
}

/* Versão compacta para mobile */
@media (max-width: 768px) {
    .container-avaliacao {
        padding: 8px 12px;
        gap: 6px;
    }
    
    .nota-media {
        font-size: 14px;
    }
    
    .estrela-destaque {
        font-size: 16px;
    }
    
    .contador-avaliacao {
        font-size: 12px;
    }
}

/*.avaliacao-produto {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 5px;
    margin: 0px 0;
    font-size: 12px;
    width: 100%;
}
*/
.avaliacao-produto {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 5px;
    margin: 0px 0;
    font-size: 12px;
    width: 100%;
}

.nota-avaliacao {
    font-weight: bold;
    color: #ff9800;
}

.total-avaliacoes {
    color: #666;
    font-size: 11px;
}

.sem-avaliacao {
    color: #999;
    font-style: italic;
}

