/* Banner */
.banner-whey {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  color: white;
  padding: 30px;
  border-radius: 5px;
  margin: 0px 0;
}

.banner-whey h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.banner-whey p {
  font-size: 16px;
}

.banner-whey img {
  max-width: 250px;
  border-radius: 8px;
}

/* Benefícios */
.beneficios {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 20px 0;
}

.beneficio {
  flex: 1;
  background: #f8f8f8;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.beneficio i {
  font-size: 30px;
  color: #00a2ff;
  margin-bottom: 10px;
}

/* Diferenciais */
.diferenciais {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0 40px 40px; /* topo, direita, baixo, esquerda */
}


.diferencial {
  flex: 1;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.diferencial i {
  font-size: 28px;
  color: #000;
  margin-bottom: 10px;
}
/* =========================
   QUALIDADE E LANÇAMENTOS - RESPONSIVO
   ========================= */

/* Container principal */
.novidades-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.novidades-container h1 {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Grid para os dois cards */
.novidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 colunas iguais */
  gap: 30px;
  align-items: stretch;
}

/* Cards individuais */
.novidade-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.novidade-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255,12,12,0.15);
  border-color: #ff0c0c;
}

/* Efeito de brilho no hover */
.novidade-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255,12,12,0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  opacity: 0;
}

.novidade-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

/* Ícone decorativo */
.novidade-card i {
  font-size: 48px;
  color: #ff0c0c;
  margin-bottom: 20px;
}

/* Títulos */
.novidade-card h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.novidade-card h2 strong {
  color: #ff0c0c;
  font-weight: 800;
}

/* Texto */
.novidade-card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Botão */
.novidade-card .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff0c0c;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #ff0c0c;
}

.novidade-card .btn:hover {
  background: transparent;
  color: #ff0c0c;
  transform: scale(1.05);
}

/* =========================
   RESPONSIVIDADE
   ========================= */

/* Notebooks (992px - 1199px) */
@media screen and (max-width: 1199px) {
  .novidades-container {
    margin: 50px auto;
  }

  .novidades-container h1 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .novidade-card {
    padding: 30px;
  }

  .novidade-card h2 {
    font-size: 1.6rem;
  }

  .novidade-card p {
    font-size: 1rem;
  }
}

/* Tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  .novidades-container {
    margin: 40px auto;
    padding: 0 15px;
  }

  .novidades-container h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .novidades-grid {
    gap: 20px;
  }

  .novidade-card {
    padding: 25px;
  }

  .novidade-card i {
    font-size: 42px;
  }

  .novidade-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .novidade-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .novidade-card .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

/* Celulares grandes (576px - 767px) */
@media screen and (max-width: 767px) {
  .novidades-grid {
    grid-template-columns: 1fr; /* 1 coluna em mobile */
    gap: 25px;
  }

  .novidades-container {
    margin: 35px auto;
  }

  .novidades-container h1 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .novidade-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Celulares médios (480px - 575px) */
@media screen and (max-width: 575px) {
  .novidades-container {
    margin: 30px auto;
    padding: 0 12px;
  }

  .novidades-container h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .novidade-card {
    padding: 22px;
  }

  .novidade-card i {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .novidade-card h2 {
    font-size: 1.3rem;
  }

  .novidade-card p {
    font-size: 0.9rem;
  }

  .novidade-card .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Celulares pequenos (400px - 479px) */
@media screen and (max-width: 479px) {
  .novidades-container {
    margin: 25px auto;
    padding: 0 10px;
  }

  .novidades-container h1 {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .novidade-card {
    padding: 20px;
  }

  .novidade-card i {
    font-size: 34px;
  }

  .novidade-card h2 {
    font-size: 1.2rem;
  }

  .novidade-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

/* Celulares muito pequenos (320px - 399px) */
@media screen and (max-width: 399px) {
  .novidades-container h1 {
    font-size: 1.2rem;
  }

  .novidade-card {
    padding: 18px;
  }

  .novidade-card i {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .novidade-card h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .novidade-card p {
    font-size: 0.8rem;
  }

  .novidade-card .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
/* Layout principal com filtros + produtos */
.conteudo {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

/* Coluna lateral de filtros */
.filtros {
  width: 250px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 14px;
  margin-left: 20px;
  text-transform: uppercase;

  /* Evita que o flex estique a altura */
  align-self: flex-start;  
  height: auto; 
}

#filtros-sabor {
  max-height: 300px; /* altura máxima */
  overflow-y: auto;   /* habilita scroll vertical */
}


.filtros-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.filtros-header button {
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

.filtros-header button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.filtro-categoria h3 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
}

#filtros-sabor label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

#filtros-sabor input {
  margin-right: 8px;
}
/* Container da lista de produtos */
#produtos-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* Centraliza os cards */
  margin-top: 20px;
}

/* Card do produto */
.produto-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
   cursor: pointer; 
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Imagem */
.produto-card img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 8px;
}
/* Pontos FIT (PIX) */
.produto-card .pontos-fit {
  font-size: 14px;
  color: #2a9d8f;
  margin: 4px 0;
}

.produto-card .pontos-fit strong {
  color: #1b7f6b;
}

/* Nome */
.produto-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #222;
  font-weight: 600;
  text-transform: capitalize;
}

/* Descrição */
/* Descrição do produto - CORTE POR LINHAS */
.produto-card .descricao {
  font-size: 14px;
  color: #555;
  margin: 8px 0 12px;
  min-height: 40px;
  line-height: 1.4;
  
  /* ADICIONE ESTAS PROPRIEDADES: */
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Muda aqui: 1, 2 ou 3 linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================
   Preço à vista (varejo)
========================== */
.produto .preco-varejo {
  font-weight: 700;
  font-size: 18px;
  color: #222; /* cor escura para destacar */
  margin: 4px 0;
}


/* ==========================
   Botões do produto
========================== */
.produto .botoes-produto,
.produto .botoes-card-produto {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.produto .botoes-produto button,
.produto .botoes-card-produto button {
  background-color: #e74c3c; /* vermelho chamativo */
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.produto .botoes-produto button:hover,
.produto .botoes-card-produto button:hover {
  transform: translateY(-2px);
  background-color: #c0392b;
}

.preco-atacado {
  font-size: 15px;
  font-weight: bold;
  color: #388e3c;
}

.qtd_minima,
.vendidos {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

/* Botões */
.botoes-card-produto {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-card-comprar {
  background-color: #d32f2f;
  color: white;
  border: none;
  padding: 10px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-card-comprar:hover {
  background-color: #b71c1c;
}

.btn-card-carrinho {
  background-color: #f9a825;
  color: white;
  border: none;
  padding: 10px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-card-carrinho:hover {
  background-color: #f57f17;
}
/* =========================
   PRODUTO CARD - MAIS LARGO, MENOS ESTICADO (COM OCULTAÇÃO DE SABORES NO CELULAR)
   ========================= */

/* Tablet (768px - 991px) */
@media screen and (max-width: 991px) {
  .produto-card {
    flex: 1 1 240px;
    max-width: 280px;
    min-width: 220px;
    padding: 12px;
    aspect-ratio: 3/4; /* Mais largo que alto */
  }

  .produto-card img {
    height: 140px; /* Altura reduzida */
    width: 100%;
    object-fit: contain;
    margin-bottom: 8px;
  }

  .produto-card h3 {
    font-size: 16px;
    margin: 5px 0;
    min-height: 38px;
  }

  .produto-card .descricao {
    font-size: 13px;
    min-height: 32px;
    margin: 4px 0 6px;
    -webkit-line-clamp: 2;
  }

  .produto .preco-varejo {
    font-size: 17px;
    margin: 2px 0;
  }

 .produto-card .pontos-fit {
    font-size: 12px;
    margin: 2px 0;
  }

  /* Sabores ainda aparecem em tablet */
  .produto-card .sabores {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin: 5px 0;
  }

  .sabor-badge {
    font-size: 11px;
    padding: 3px 8px;
  }

  .preco-atacado {
    font-size: 13px;
    margin: 2px 0;
  }

  .btn-card-comprar,
  .btn-card-carrinho {
    padding: 8px;
    font-size: 13px;
  }
}

/* Celulares grandes (576px - 767px) */
@media screen and (max-width: 767px) {
  .produto-card {
    flex: 1 1 220px;
    max-width: 260px;
    min-width: 200px;
    padding: 10px;
    aspect-ratio: 3/4;
  }

  .produto-card img {
    height: 130px;
  }

  .produto-card h3 {
    font-size: 15px;
    min-height: 36px;
  }

  .produto-card .descricao {
    font-size: 12px;
    min-height: 30px;
    -webkit-line-clamp: 2;
  }

  .produto .preco-varejo {
    font-size: 16px;
  }

  .produto-card .pontos-fit {
    font-size: 11px;
  }

  /* Esconde sabores em celular grande */
  .produto-card .sabores {
    display: none;
  }

  .btn-card-comprar,
  .btn-card-carrinho {
    padding: 7px;
    font-size: 12px;
  }
}

/* Celulares médios (480px - 575px) */
@media screen and (max-width: 575px) {
  .produto-card {
    flex: 1 1 190px;
    max-width: 220px;
    min-width: 170px;
    padding: 8px;
    aspect-ratio: 3/4;
  }

  .produto-card img {
    height: 110px;
  }

  .produto-card h3 {
    font-size: 14px;
    min-height: 34px;
    margin: 4px 0;
  }

  .produto-card .descricao {
    font-size: 11px;
    min-height: 28px;
    -webkit-line-clamp: 2;
    margin: 3px 0 5px;
  }

  .produto .preco-varejo {
    font-size: 15px;
  }

  .produto-card .pontos-fit{
    font-size: 10px;
  }

  .preco-atacado {
    font-size: 12px;
  }

  .qtd_minima,
  .vendidos {
    font-size: 10px;
  }

  .btn-card-comprar,
  .btn-card-carrinho {
    padding: 6px;
    font-size: 11px;
  }

  /* Sabores já escondidos desde 767px */
  .produto-card .sabores {
    display: none;
  }
}

/* Celulares pequenos (400px - 479px) */
@media screen and (max-width: 479px) {
  .produto-card {
    flex: 1 1 170px;
    max-width: 195px;
    min-width: 150px;
    padding: 7px;
    aspect-ratio: 3/4;
  }

  .produto-card img {
    height: 100px;
  }

  .produto-card h3 {
    font-size: 13px;
    min-height: 32px;
  }

  .produto-card .descricao {
    font-size: 10px;
    min-height: 26px;
  }

  .produto .preco-varejo {
    font-size: 14px;
  }

 .produto-card .pontos-fit {
    font-size: 9px;
  }

  .preco-atacado {
    font-size: 11px;
  }

  .btn-card-comprar,
  .btn-card-carrinho {
    padding: 5px;
    font-size: 10px;
  }
}

/* Celulares muito pequenos (320px - 399px) */
@media screen and (max-width: 399px) {
  .produto-card {
    flex: 1 1 150px;
    max-width: 170px;
    min-width: 135px;
    padding: 6px;
    aspect-ratio: 3/4;
  }

  .produto-card img {
    height: 90px;
  }

  .produto-card h3 {
    font-size: 12px;
    min-height: 30px;
  }

  .produto-card .descricao {
    font-size: 9px;
    min-height: 24px;
    -webkit-line-clamp: 2;
  }

  .produto .preco-varejo {
    font-size: 13px;
  }

 .produto-card .pontos-fit {
    font-size: 8px;
  }

  .btn-card-comprar,
  .btn-card-carrinho {
    padding: 4px;
    font-size: 9px;
  }
}

/* Telas extremamente pequenas (até 319px) */
@media screen and (max-width: 319px) {
  .produto-card {
    flex: 1 1 130px;
    max-width: 150px;
    min-width: 120px;
    padding: 5px;
    aspect-ratio: 3/4;
  }

  .produto-card img {
    height: 80px;
  }

  .produto-card h3 {
    font-size: 11px;
    min-height: 28px;
  }

  .produto-card .descricao {
    font-size: 8px;
    min-height: 22px;
  }

  .produto .preco-varejo {
    font-size: 12px;
  }

  .btn-card-comprar,
  .btn-card-carrinho {
    padding: 3px;
    font-size: 8px;
  }
}

/* Classe para forçar esconder sabores quando necessário */
.hide-sabores-mobile .sabores {
  display: none;
}

/* Garantir que sabores não apareçam em mobile */
@media screen and (max-width: 767px) {
  .sabores {
    display: none !important;
  }
}
/* Versão ultra-compacta */
.produto-card .pontos-fit {
  font-size: 11px;
  background: rgba(42, 157, 143, 0.1);
  padding: 2px 6px;
  border-radius: 12px;
  display: inline-block;
  width: auto;
  margin: 2px auto;
}

.produto-card .pontos-fit i {
  display: none; /* Remove ícone */
}

.produto-card .pontos-fit .valor {
  font-weight: 800;
}

.produto-card .pontos-fit .nome-pontos {
  display: none; /* Esconde o texto "PontosFIT" */
}

/* Resultado: mostra só "PIX: R$ XX,XX" */
.comparativo {
    width: 100%;       /* ocupa tudo */
  max-width: 90%;    /* mas não passa de 90% da tela */
      margin: auto;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .comparativo h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }

    .tabela {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      border-collapse: collapse;
      text-align: center;
    }

    .tabela .titulo {
     background: linear-gradient(to right, 
  #d9d9d9 0%,   /* cinza claro esquerda */
  #000000 50%,  /* preto no meio */
  #d9d9d9 100%  /* cinza claro direita */
);



      font-weight: bold;
      color: #fff;
      padding: 12px;
      border: 1px solid #ddd;
    }
.tabela .titulo2 {
      background: #ffffff;

    }
    .tabela div {
      padding: 12px;
      border: 1px solid #ddd;
    }
.produto2 img {
     max-width: 100px;
      margin-bottom: 10px;
      align-items: center;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Zoom leve na imagem ao passar o mouse */
.produto2:hover img {
  transform: scale(1.05);
}
.produtos {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza tudo dentro */
  width: 100%;
}

.produtos h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  width: 100%;
}

.produtos-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* centraliza os cards */
  width: 100%;
}

.banner {
  overflow: hidden; /* evita que a imagem estoure para fora */
  border-radius: 10px; /* opcional, deixa com cantos arredondados */
}

.banner img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease; /* tempo e suavidade da animação */
}

.banner img:hover {
  transform: scale(1.1); /* aumenta 10% no hover */
}
@media (max-width: 768px) {

  .comparativo {
    max-width: 100%;
    padding: 10px;
  }

  .tabela {
    font-size: 12px; /* diminui texto */
  }

  .tabela div {
    padding: 8px 4px; /* diminui espaçamento */
  }

  .produto2 img {
    width: 60px;
    height: 60px;
  }

}

@media (max-width: 768px) {
  .conteudo {
    flex-direction: column;
  }
  
  .filtros {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
/* Container de sabores */
.produto-card .sabores {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* Container de sabores */
.produto-card .sabores {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center; /* centraliza horizontalmente */
}

/* Cada badge de sabor */
.sabor-badge {
  background-color: #f0c14b; /* cor de destaque, amarelo suave */
  color: #333;                /* texto escuro para contraste */
  font-size: 0.85rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid #e2b33c;
  white-space: nowrap;
  transition: background-color 0.3s, transform 0.2s;
}

/* Efeito hover */
.sabor-badge:hover {
  background-color: #e2b33c;
  transform: scale(1.05);
  cursor: default;
}
@media (max-width: 600px) {
  .tabela {
    grid-template-columns: 1fr; /* vira uma coluna */
    font-size: 0.9rem;
  }

  .tabela div {
    text-align: left !important;
  }
}

.hipercalorico-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 40px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.hipercalorico-section h2 {
  font-size: 48px;
}

.hipercalorico-section p {
  font-size: 20px;
}

.hipercalorico-section img {
  max-width: 80%;
  border-radius: 10px;
}

@media (max-width: 768px) {

  .hipercalorico-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hipercalorico-section h2 {
    font-size: 28px;
  }

  .hipercalorico-section p {
    font-size: 16px;
  }

  .hipercalorico-section img {
    max-width: 70%;
    margin-bottom: 20px;
  }

}