/* =========================
   RESET E BASE
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

html, body {
  height: 100%;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  padding-top: 180px; /* 70px topbar + 60px menu (para desktop) */
}

/* Mobile: o padding-top muda */
@media screen and (max-width: 992px) {
  body {
    padding-top: 60px !important; /* Apenas a topbar, menu some */
  }
}

/* =========================
   TOPBAR FIXA
   ========================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Lado esquerdo - hamburger + logo */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

/* Logo */
.topbar .logo img {
  height: 50px;
  width: auto;
  max-height: 100%;
}
/* =========================
   ANIMAÇÃO DE TEXTOS
   ========================= */
.text-animation {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 30px;
  max-width: 500px;
}

.animation-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  backdrop-filter: blur(5px);
}

.static-text {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dynamic-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.dynamic-text::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ffffff;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Responsividade */
@media screen and (max-width: 992px) {
  .text-animation {
    margin: 0 10px;
  }
  
  .static-text {
    font-size: 14px;
  }
  
  .dynamic-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .animation-wrapper {
    padding: 6px 12px;
  }
  
  .static-text {
    font-size: 12px;
  }
  
  .dynamic-text {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .static-text {
    display: none; /* Esconde o texto estático em telas muito pequenas */
  }
  
  .animation-wrapper {
    justify-content: center;
  }
}

/* Ações desktop */
.actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.actions a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  white-space: nowrap;
}

.actions a i {
  margin-right: 5px;
}

.actions .cart {
  position: relative;
}

.actions .cart span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff0c0c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

/* =========================
   MENU FIXO (branco)
   ========================= */
.menu-bar {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  z-index: 9998;
  display: flex;
  align-items: center;
}

.menu-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.menu-bar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
  white-space: nowrap;
}

.menu-bar ul li a:hover {
  color: #ff0c0c;
}

/* =========================
   BANNER
   ========================= */
#carouselExampleAutoplaging {
  height: 400px;
  
}

#carouselExampleAutoplaging img {
  
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   BENEFÍCIOS
   ========================= */
.benefits {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background: #ececec;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit .icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit .icon i,
.benefit .icon svg {
  font-size: 24px;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.benefit:hover .icon {
  border-color: #000;
}

.benefit:hover .icon i,
.benefit:hover .icon svg {
  transform: scale(1.2) rotate(10deg);
  color: #111;
}

.benefit p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

.benefit a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.benefit a:hover {
  text-decoration: underline;
}
/* =========================
   BENEFÍCIOS - RESPONSIVIDADE (CORRIGIDO - SEMPRE VISÍVEIS)
   ========================= */

/* Tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  .benefits {
    gap: 12px;
    margin: 30px 15px;
    flex-wrap: wrap; /* Mantém wrap para não forçar scroll */
  }
  
  .benefit {
    flex: 1 1 auto; /* Permite que os itens se ajustem */
    min-width: 180px; /* Largura mínima para não ficarem muito pequenos */
    padding: 8px 15px;
    gap: 10px;
  }
  
  .benefit .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0; /* Não encolhe */
  }
  
  .benefit .icon i,
  .benefit .icon svg {
    font-size: 20px;
  }
  
  .benefit p {
    font-size: 0.8rem;
    white-space: normal; /* Permite quebra de linha */
  }
}

/* Celulares grandes (576px - 767px) */
@media screen and (max-width: 767px) {
  .benefits {
    gap: 10px;
    margin: 20px 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .benefit {
    flex: 1 1 calc(50% - 20px); /* 2 por linha em telas médias */
    min-width: 160px;
    max-width: calc(50% - 10px);
    padding: 8px 10px;
    gap: 8px;
  }
  
  .benefit .icon {
    width: 45px;
    height: 45px;
  }
  
  .benefit .icon i,
  .benefit .icon svg {
    font-size: 18px;
  }
  
  .benefit p {
    font-size: 0.75rem;
    white-space: normal;
  }
  
  .benefit p br {
    display: none; /* Remove a quebra de linha */
  }
  
  .benefit a {
    display: inline-block;
    margin-left: 3px;
    font-size: 0.7rem;
  }
}

/* Celulares médios (480px - 575px) */
@media screen and (max-width: 575px) {
  .benefits {
    gap: 8px;
    margin: 15px 8px;
    flex-wrap: wrap;
  }
  
  .benefit {
    flex: 1 1 calc(50% - 10px); /* Continua 2 por linha */
    min-width: 140px;
    max-width: calc(50% - 4px);
    padding: 6px 8px;
  }
  
  .benefit .icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit .icon i,
  .benefit .icon svg {
    font-size: 16px;
  }
  
  .benefit p {
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .benefit a {
    font-size: 0.65rem;
  }
}

/* Celulares pequenos (400px - 479px) */
@media screen and (max-width: 479px) {
  .benefits {
    gap: 8px;
    margin: 15px 5px;
  }
  
  .benefit {
    flex: 1 1 calc(50% - 10px); /* 2 por linha */
    min-width: 130px;
    padding: 5px 6px;
  }
  
  .benefit .icon {
    width: 35px;
    height: 35px;
  }
  
  .benefit .icon i,
  .benefit .icon svg {
    font-size: 14px;
  }
  
  .benefit p {
    font-size: 0.65rem;
  }
}

/* Celulares muito pequenos (320px - 399px) */
@media screen and (max-width: 399px) {
  .benefits {
    gap: 6px;
    margin: 10px 3px;
  }
  
  .benefit {
    flex: 1 1 calc(50% - 8px); /* Ainda 2 por linha */
    min-width: 120px;
    padding: 4px 5px;
  }
  
  .benefit .icon {
    width: 30px;
    height: 30px;
  }
  
  .benefit .icon i,
  .benefit .icon svg {
    font-size: 12px;
  }
  
  .benefit p {
    font-size: 0.6rem;
  }
  
  .benefit p strong {
    display: block; /* Nome do benefício em linha própria */
    font-size: 0.65rem;
    margin-bottom: 2px;
  }
  
  .benefit a {
    font-size: 0.55rem;
  }
}

/* Garantir que os textos não quebrem o layout */
.benefit {
  transition: all 0.3s ease;
}

.benefit p {
  word-break: break-word; /* Quebra palavras longas se necessário */
}

/* Ajuste para links */
.benefit a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.benefit a:hover {
  text-decoration: underline;
}

/* Remover quebras de linha em mobile */
@media screen and (max-width: 767px) {
  .benefit p br {
    display: none;
  }
}


/* =========================
   CATEGORIAS
   ========================= */
.categorias {
  text-align: center;
  margin: 50px 20px;
}

.categorias h1,
.categorias h2,
.categorias h5 {
  color: #000;
}

.categorias h2 {
  margin-bottom: 40px;
}
/* =========================
   CATEGORIAS - RESPONSIVIDADE
   ========================= */

/* Tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  .categorias {
    margin: 40px 15px;
  }
  
  .categorias h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .categorias h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .categorias h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
}

/* Celulares grandes (576px - 767px) */
@media screen and (max-width: 767px) {
  .categorias {
    margin: 30px 12px;
  }
  
  .categorias h1 {
    font-size: 1.8rem;
  }
  
  .categorias h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .categorias h5 {
    font-size: 1rem;
    padding: 0 10px;
  }
}

/* Celulares médios (480px - 575px) */
@media screen and (max-width: 575px) {
  .categorias {
    margin: 25px 10px;
  }
  
  .categorias h1 {
    font-size: 1.6rem;
  }
  
  .categorias h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .categorias h5 {
    font-size: 0.95rem;
  }
}

/* Celulares pequenos (400px - 479px) */
@media screen and (max-width: 479px) {
  .categorias {
    margin: 20px 8px;
  }
  
  .categorias h1 {
    font-size: 1.4rem;
  }
  
  .categorias h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .categorias h5 {
    font-size: 0.9rem;
  }
}

/* Celulares muito pequenos (320px - 399px) */
@media screen and (max-width: 399px) {
  .categorias {
    margin: 15px 5px;
  }
  
  .categorias h1 {
    font-size: 1.2rem;
  }
  
  .categorias h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .categorias h5 {
    font-size: 0.85rem;
  }
}

/* Telas extremamente pequenas (até 320px) */
@media screen and (max-width: 320px) {
  .categorias h1 {
    font-size: 1.1rem;
  }
  
  .categorias h2 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .categorias h5 {
    font-size: 0.8rem;
  }
}
.categoria-lista {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.categoria {
  position: relative;
  width: 220px;
  text-align: center;
}

.categoria .circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #060202, #ffffff);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.categoria img {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 200px;
  height: auto;
  z-index: 2;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.categoria:hover img {
  transform: translate(-50%, -50%) scale(1.1);
  filter: brightness(1.1);
}

.categoria p {
  margin-top: 50px;
  font-weight: bold;
  font-size: 1rem;
  color: #000;
}

/* =========================
   CATEGORIAS - RESPONSIVIDADE
   ========================= */

/* Notebooks e tablets grandes (até 1200px) */
@media screen and (max-width: 1200px) {
  .categoria-lista {
    gap: 60px;
  }
}

/* Tablets (até 992px) */
@media screen and (max-width: 992px) {
  .categoria-lista {
    gap: 40px;
  }
  
  .categoria {
    width: 180px;
  }
  
  .categoria .circle {
    width: 180px;
    height: 180px;
  }
  
  .categoria img {
    max-width: 160px;
  }
  
  .categoria p {
    margin-top: 30px;
    font-size: 0.9rem;
  }
}

/* Tablets pequenos e celulares grandes (até 768px) */
@media screen and (max-width: 768px) {
  .categoria-lista {
    gap: 30px;
  }
  
  .categoria {
    width: 150px;
  }
  
  .categoria .circle {
    width: 150px;
    height: 150px;
  }
  
  .categoria img {
    max-width: 130px;
  }
  
  .categoria p {
    margin-top: 25px;
    font-size: 0.85rem;
  }
}

/* Celulares (até 576px) */
@media screen and (max-width: 576px) {
  .categoria-lista {
    gap: 20px;
  }
  
  .categoria {
    width: 130px;
  }
  
  .categoria .circle {
    width: 130px;
    height: 130px;
  }
  
  .categoria img {
    max-width: 110px;
  }
  
  .categoria p {
    margin-top: 20px;
    font-size: 0.8rem;
  }
}

/* Celulares pequenos (até 400px) */
@media screen and (max-width: 400px) {
  .categoria-lista {
    gap: 15px;
  }
  
  .categoria {
    width: 110px;
  }
  
  .categoria .circle {
    width: 110px;
    height: 110px;
  }
  
  .categoria img {
    max-width: 95px;
  }
  
  .categoria p {
    margin-top: 15px;
    font-size: 0.75rem;
  }
}

/* Muito pequeno - uma por linha (até 320px) */
@media screen and (max-width: 320px) {
  .categoria-lista {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .categoria {
    width: 150px;
  }
  
  .categoria .circle {
    width: 150px;
    height: 150px;
  }
}

/* =========================
   PRODUTOS
   ========================= */
.produtos {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.produtos-lista,
.ofertas-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.produto {
  flex: 1 1 200px;
  max-width: 250px;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   cursor: pointer;
  position: relative;
}

.produto:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.produto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.produto:hover img {
  transform: scale(1.05);
}

.produto h3 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.produto .descricao {
  font-size: 14px;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Preços */
.produto .preco-varejo {
  font-weight: bold;
  font-size: 18px;
  color: #222;
  margin: 4px 0;
}

/* Pontos FIT (PIX) */
.produto .pontos-fit {
  font-size: 14px;
  color: #2a9d8f;
  margin: 4px 0;
}

.produto .pontos-fit strong {
  color: #1b7f6b;
}

/* Preço atacado */
.produto .preco-atacado {
  font-weight: bold;
  color: #2a9d8f;
  margin: 6px 0;
  font-size: 15px;
}

/* Botões */
.botoes-produto {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Remove qualquer efeito estranho no hover */
.produto:hover button {
  transform: none !important;
}

.botoes-produto button {
  width: 100%;
  padding: 10px 0;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 14px;
}

.btn-comprar {
  background-color: #e71111;
  color: #fff;
}

.btn-comprar:hover {
  background-color: #c40000;
  transform: translateY(-2px);
}

.btn-carrinho {
  background-color: #f39c12;
  color: #fff;
}

.btn-carrinho:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
}
.produto-card { 
  cursor: pointer; 
}
/* =========================
   PRODUTOS - RESPONSIVIDADE (MAIS LARGOS, MENOS COMPRIDOS)
   ========================= */

/* Ajustes base para todos os tamanhos */
.produto {
  aspect-ratio: 3/4; /* Proporção mais larga que alta */
  max-width: 280px;
  min-width: 220px;
  padding: 12px;
}

.produto img {
  height: 140px; /* Altura fixa menor */
  width: 100%;
  object-fit: contain; /* Para não cortar a imagem */
}

/* Notebooks e tablets grandes (992px - 1199px) */
@media screen and (max-width: 1199px) {
  .produtos {
    padding: 25px 15px;
  }
  
  .produtos-lista,
  .ofertas-lista {
    gap: 25px;
  }
  
  .produto {
    max-width: 260px;
    min-width: 220px;
    padding: 12px;
  }
  
  .produto img {
    height: 130px;
  }
}

/* Tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  .produtos {
    padding: 20px 12px;
  }
  
  .produtos-lista,
  .ofertas-lista {
    gap: 22px;
  }
  
  .produto {
    max-width: 240px;
    min-width: 200px;
    padding: 10px;
  }
  
  .produto img {
    height: 120px;
  }
  
  .produto h3 {
    font-size: 15px;
    margin: 8px 0 4px;
  }
}

/* Celulares grandes (576px - 767px) */
@media screen and (max-width: 767px) {
  .produtos {
    padding: 15px 10px;
  }
  
  .produtos-lista,
  .ofertas-lista {
    gap: 20px;
  }
  
  .produto {
    max-width: 220px;
    min-width: 180px;
    padding: 10px;
  }
  
  .produto img {
    height: 110px;
  }
  
  .produto h3 {
    font-size: 14px;
  }
  
  .produto .descricao {
    font-size: 12px;
    margin: 5px 0;
  }
}

/* Celulares médios (480px - 575px) */
@media screen and (max-width: 575px) {
  .produtos {
    padding: 12px 8px;
  }
  
  .produtos-lista,
  .ofertas-lista {
    gap: 18px;
  }
  
  .produto {
    max-width: 200px;
    min-width: 165px;
    padding: 8px;
  }
  
  .produto img {
    height: 100px;
  }
  
  .produto h3 {
    font-size: 13px;
    min-height: auto;
  }
  
  .produto .descricao {
    font-size: 11px;
    -webkit-line-clamp: 2;
    min-height: 28px;
  }
  
  .produto .preco-varejo {
    font-size: 15px;
    margin: 2px 0;
  }
}

/* Celulares pequenos (400px - 479px) */
@media screen and (max-width: 479px) {
  .produtos {
    padding: 10px 5px;
  }
  
  .produtos-lista,
  .ofertas-lista {
    gap: 15px;
  }
  
  .produto {
    max-width: 180px;
    min-width: 150px;
    padding: 8px;
  }
  
  .produto img {
    height: 90px;
  }
  
  .produto h3 {
    font-size: 12px;
  }
  
  .produto .descricao {
    font-size: 10px;
    min-height: 26px;
  }
  
  .botoes-produto button {
    padding: 6px 0;
    font-size: 11px;
  }
}

/* Celulares muito pequenos (320px - 399px) */
@media screen and (max-width: 399px) {
  .produtos {
    padding: 8px 3px;
  }
  
  .produtos-lista,
  .ofertas-lista {
    gap: 12px;
  }
  
  .produto {
    max-width: 160px;
    min-width: 140px;
    padding: 6px;
  }
  
  .produto img {
    height: 80px;
  }
  
  .produto h3 {
    font-size: 11px;
    margin: 5px 0 3px;
  }
  
  .produto .descricao {
    font-size: 9px;
    min-height: 24px;
  }
  
  .produto .preco-varejo {
    font-size: 13px;
  }
  
  .botoes-produto button {
    padding: 4px 0;
    font-size: 9px;
  }
}

/* Telas extremamente pequenas (até 319px) */
@media screen and (max-width: 319px) {
  .produto {
    max-width: 150px;
    min-width: 130px;
  }
  
  .produto img {
    height: 70px;
  }
}

/* =========================
   SEÇÕES SOBRE / CLIENTES
   ========================= */
.sobre, .clientes {
  text-align: center;
  margin: 60px 20px;
}

.sobre h2, .clientes h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.sobre p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
.clientes-lista {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 20px;
  width: 100%;
  /* Adicione estas propriedades: */
  justify-content: flex-start; /* padrão, muda no JS quando necessário */
  transition: transform 0.6s ease-in-out; /* move para cá do JS */
}

/* Classe adicional para centralizar */
.clientes-lista.centralizado {
  justify-content: center;
  transform: none !important; /* desabilita o translate quando centralizado */
}

.cliente {
  flex: 0 0 250px;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-align: center;
  position: relative;
}

.cliente::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: #ccc;
}

.cliente::after {
  content: "”";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 3rem;
  color: #ccc;
}

.cliente p {
  margin: 20px 0;
  color: #333;
}

.cliente span.nome {
  display: block;
  font-weight: bold;
  margin-top: 5px;
}

.cliente span.data {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.stars {
  color: #fbc02d;
  font-size: 1.2rem;
}
/* =========================
   SEÇÕES SOBRE / CLIENTES - RESPONSIVIDADE (1 POR VEZ NO MOBILE)
   ========================= */

/* Tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  .sobre, .clientes {
    margin: 50px 15px;
  }

  .sobre h2, .clientes h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }

  .sobre p {
    max-width: 700px;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 15px;
  }

  .cliente {
    flex: 0 0 220px;
    padding: 18px;
  }

  .cliente::before,
  .cliente::after {
    font-size: 2.5rem;
  }
}

/* Celulares grandes (576px - 767px) */
@media screen and (max-width: 767px) {
  .sobre, .clientes {
    margin: 40px 12px;
  }

  .sobre h2, .clientes h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .sobre p {
    max-width: 100%;
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .clientes-lista {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 5px 20px 20px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .clientes-lista::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .cliente {
    flex: 0 0 calc(100% - 40px); /* Ocupa quase toda a largura */
    max-width: 320px;
    margin: 0 auto;
    scroll-snap-align: center;
    padding: 20px;
  }

  .cliente::before,
  .cliente::after {
    font-size: 2.2rem;
  }

  .cliente p {
    font-size: 1rem;
    margin: 20px 0;
  }

  .cliente span.nome {
    font-size: 1.1rem;
  }

  .cliente span.data {
    font-size: 0.9rem;
  }

  .stars {
    font-size: 1.2rem;
  }

  /* Indicadores de página */
  .clientes {
    position: relative;
    padding-bottom: 30px;
  }

  .clientes::after {
    content: '';
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .clientes .dot-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .clientes .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
  }

  .clientes .dot.active {
    background: #ff0c0c;
    width: 20px;
    border-radius: 10px;
  }
}

/* Celulares médios (480px - 575px) */
@media screen and (max-width: 575px) {
  .sobre, .clientes {
    margin: 35px 10px;
  }

  .sobre h2, .clientes h2 {
    font-size: 1.5rem;
  }

  .cliente {
    flex: 0 0 calc(100% - 30px);
    max-width: 300px;
    padding: 18px;
  }

  .cliente::before,
  .cliente::after {
    font-size: 2rem;
  }

  .cliente p {
    font-size: 0.95rem;
  }
}

/* Celulares pequenos (400px - 479px) */
@media screen and (max-width: 479px) {
  .sobre, .clientes {
    margin: 30px 8px;
  }

  .sobre h2, .clientes h2 {
    font-size: 1.4rem;
  }

  .cliente {
    flex: 0 0 calc(100% - 20px);
    max-width: 280px;
    padding: 16px;
  }

  .cliente::before,
  .cliente::after {
    font-size: 1.8rem;
  }

  .cliente p {
    font-size: 0.9rem;
    margin: 15px 0;
  }
}

/* Celulares muito pequenos (320px - 399px) */
@media screen and (max-width: 399px) {
  .sobre, .clientes {
    margin: 25px 5px;
  }

  .sobre h2, .clientes h2 {
    font-size: 1.3rem;
  }

  .cliente {
    flex: 0 0 calc(100% - 10px);
    max-width: 260px;
    padding: 14px;
  }

  .cliente::before,
  .cliente::after {
    font-size: 1.5rem;
    top: 5px;
    left: 5px;
  }

  .cliente::after {
    right: 5px;
    bottom: 5px;
  }

  .cliente p {
    font-size: 0.85rem;
  }
}
/* =========================
   RODAPÉ
   ========================= */
.rodape {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 80px;
  padding: 20px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #060202);
}

.rodape h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

/* =========================
   PAGAMENTOS E REDES SOCIAIS - RESPONSIVO
   ========================= */

/* Container principal das formas de pagamento */
.pagamentos_formas {
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.pagamentos_formas h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.2rem;
}

/* Container dos ícones de pagamento */
.pagamentos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center; /* Centraliza os itens */
  align-items: center;
  margin: 0 auto;
}

.pagamentos img {
  height: 50px;
  width: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pagamentos img:hover {
  transform: scale(1.1);
}

/* Container das redes sociais */
.redes_sociais {
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.redes_sociais h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.2rem;
}

/* Container dos ícones de redes sociais */
.redes {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center; /* Centraliza os itens */
  align-items: center;
  margin: 0 auto;
}

.redes img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.redes img:hover {
  transform: scale(1.2);
}

/* =========================
   RESPONSIVIDADE - MOBILE
   ========================= */

/* Tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  .pagamentos_formas,
  .redes_sociais {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .pagamentos {
    gap: 12px;
  }
  
  .pagamentos img {
    height: 45px;
    width: 70px;
  }
  
  .redes {
    gap: 12px;
  }
  
  .redes img {
    height: 35px;
    width: 35px;
  }
}

/* Celulares grandes (576px - 767px) */
@media screen and (max-width: 767px) {
  .pagamentos_formas h3,
  .redes_sociais h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .pagamentos {
    gap: 10px;
  }
  
  .pagamentos img {
    height: 40px;
    width: 65px;
  }
  
  .redes {
    gap: 10px;
  }
  
  .redes img {
    height: 32px;
    width: 32px;
  }
}

/* Celulares médios (480px - 575px) */
@media screen and (max-width: 575px) {
  .pagamentos_formas,
  .redes_sociais {
    padding: 0 15px;
  }
  
  .pagamentos_formas h3,
  .redes_sociais h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .pagamentos {
    gap: 8px;
  }
  
  .pagamentos img {
    height: 35px;
    width: 60px;
  }
  
  .redes {
    gap: 8px;
  }
  
  .redes img {
    height: 28px;
    width: 28px;
  }
}

/* Celulares pequenos (320px - 479px) */
@media screen and (max-width: 479px) {
  .pagamentos_formas h3,
  .redes_sociais h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .pagamentos {
    gap: 6px;
  }
  
  .pagamentos img {
    height: 30px;
    width: 50px;
    padding: 3px;
  }
  
  .redes {
    gap: 6px;
  }
  
  .redes img {
    height: 25px;
    width: 25px;
  }
}

/* Telas muito pequenas (até 320px) */
@media screen and (max-width: 320px) {
  .pagamentos {
    gap: 5px;
  }
  
  .pagamentos img {
    height: 28px;
    width: 45px;
  }
  
  .redes {
    gap: 5px;
  }
  
  .redes img {
    height: 22px;
    width: 22px;
  }
}

/* Rodapé final */
.footer {
  background-color: #0f0f0f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  font-size: 14px;
  color: #fff;
  flex-wrap: wrap;
}

.footer a {
  color: #0073e6;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}

/* =========================
   CART / ANIMAÇÃO
   ========================= */
.cart {
  position: relative;
  font-size: 1.8rem;
  color: #333;
  text-decoration: none;
}

.cart #contador {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
}

.bolinha-animada {
  position: fixed;
  background: red;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 6px 10px;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* =========================
   RESPONSIVIDADE
   ========================= */
@media (max-width: 1024px) {
  .rodape { gap: 30px; }
  .categoria-lista { gap: 30px; }
  .benefits { gap: 15px; }
}

@media (max-width: 768px) {
  .produtos-lista { justify-content: center; }
  .benefits { justify-content: center; }
  .menu-bar ul { flex-wrap: wrap; gap: 15px; }
  .rodape { gap: 20px; }
  .footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .benefit { flex-direction: column; text-align: center; }
  .topbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .search-box { margin: 10px 0; }
  .rodape { flex-direction: column; gap: 10px; }
}
