
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Segoe UI', sans-serif; background-color: #fff; }

  #sugestoes {
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    list-style: none;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
  }
  #sugestoes li {
    padding: 10px 14px;
    cursor: pointer;
  }
  #sugestoes li:hover {
    background-color: #f4f4f4;
  }

  .banner-hover {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .banner-hover img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    display: block;
  }
  .banner-hover .camada {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: all 0.6s ease-in-out;
    pointer-events: none;
  }
  .banner-hover .esquerda {
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
  }
  .banner-hover:hover .esquerda {
    width: 200%;
    height: 200%;
    transform: translate(-25%, -25%);
  }
  .banner-hover .direita {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 1px;
  }
  .banner-hover:hover .direita {
    width: 200%;
    height: 200%;
    transform: translate(25%, 25%);
  }

  .categorias {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 10px;
    flex-wrap: wrap;
  }
  .categorias a {
    text-decoration: none;
    color: #247b93;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
  }
  .categorias i {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px 10px;
  }

  .info {
    font-size: 16px;
    margin-bottom: 20px;
    color: #222;
  }
  .info strong {
    display: block;
    font-size: 18px;
    color: #247b93;
    margin-bottom: 5px;
  }
  .link-zap {
    text-decoration: none;
    color: #247b93;
    font-weight: bold;
    transition: 0.3s;
  }
  .link-zap:hover {
    color: #128c7e;
  }

  .produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1280px;
    padding: 20px 10px 60px;
  }

  .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .card:hover {
    transform: scale(1.03);
  }

  .card a.img-link img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px;
    display: block;
    margin: 10px auto 0;
  }

  .card .conteudo {
    padding: 10px 15px;
    text-align: left;
  }
  .card h3 {
    font-size: 15px;
    color: #247b93;
    margin-bottom: 6px;
    height: 38px;
    overflow: hidden;
  }
  .card p {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    height: 36px;
    overflow: hidden;
  }
  .preco {
    font-weight: bold;
    color: #967f39;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .botao-pedido {
    display: inline-block;
    text-align: center;
    background: #247b93;
    color: #fff;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
  }
  .botao-pedido:hover {
    background: #1b6173;
  }

  footer {
    text-align: center;
    padding: 20px;
    color: #666;
    background: #f1f1f1;
    font-size: 13px;
  }
  .footer-links a {
    color: #247b93;
    text-decoration: none;
    margin: 0 10px;
  }

  @media (max-width: 768px) {
    .busca { font-size: 14px; }
    .banner-topo img { max-height: 200px; }
    .card a.img-link img { width: 100%; height: auto; }
    #sugestoes { top: 92px; }
  }

  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
  }

.avaliacoes-clientes {
  background: #f9f9f9;
  padding: 30px 20px;
  text-align: center;
}
.avaliacoes-clientes h2 {
  color: #247b93;
  margin-bottom: 20px;
  font-size: 20px;
}
.avaliacoes-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.avaliacao {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  max-width: 320px;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.avaliacao .estrelas {
  font-size: 18px;
  color: #f0c420;
  margin-bottom: 8px;
}
.avaliacao span {
  display: block;
  margin-top: 10px;
  color: #777;
  font-size: 13px;
}

.carrossel {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    position: relative;
  }
  .carrossel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
  }
  .carrossel-inner img {
    width: 100%;
    object-fit: contain;
    height: 300px;
  }

  .sessao-produtos {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
  }
  .sessao-produtos h2 {
    font-size: 20px;
    color: #247b93;
    margin: 40px 0 15px;
    border-left: 4px solid #caab5b;
    padding-left: 10px;
  }
  @media (max-width: 768px) {
    .carrossel-inner img { height: 200px; }
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Segoe UI', sans-serif; background-color: #fff; }

  #sugestoes {
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    list-style: none;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
  }
  #sugestoes li {
    padding: 10px 14px;
    cursor: pointer;
  }
  #sugestoes li:hover {
    background-color: #f4f4f4;
  }

  .banner-hover {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .banner-hover img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    display: block;
  }
  .banner-hover .camada {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: all 0.6s ease-in-out;
    pointer-events: none;
  }
  .banner-hover .esquerda {
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
  }
  .banner-hover:hover .esquerda {
    width: 200%;
    height: 200%;
    transform: translate(-25%, -25%);
  }
  .banner-hover .direita {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 1px;
  }
  .banner-hover:hover .direita {
    width: 200%;
    height: 200%;
    transform: translate(25%, 25%);
  }

  .categorias {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 10px;
    flex-wrap: wrap;
  }
  .categorias a {
    text-decoration: none;
    color: #247b93;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
  }
  .categorias i {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px 10px;
  }

  .info {
    font-size: 16px;
    margin-bottom: 20px;
    color: #222;
  }
  .info strong {
    display: block;
    font-size: 18px;
    color: #247b93;
    margin-bottom: 5px;
  }
  .link-zap {
    text-decoration: none;
    color: #247b93;
    font-weight: bold;
    transition: 0.3s;
  }
  .link-zap:hover {
    color: #128c7e;
  }

  .produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1280px;
    padding: 20px 10px 60px;
  }

  .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .card:hover {
    transform: scale(1.03);
  }

  .card a.img-link img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px;
    display: block;
    margin: 10px auto 0;
  }

  .card .conteudo {
    padding: 10px 15px;
    text-align: left;
  }
  .card h3 {
    font-size: 15px;
    color: #247b93;
    margin-bottom: 6px;
    height: 38px;
    overflow: hidden;
  }
  .card p {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    height: 36px;
    overflow: hidden;
  }
  .preco {
    font-weight: bold;
    color: #967f39;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .botao-pedido {
    display: inline-block;
    text-align: center;
    background: #247b93;
    color: #fff;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
  }
  .botao-pedido:hover {
    background: #1b6173;
  }

  footer {
    text-align: center;
    padding: 20px;
    color: #666;
    background: #f1f1f1;
    font-size: 13px;
  }
  .footer-links a {
    color: #247b93;
    text-decoration: none;
    margin: 0 10px;
  }

  @media (max-width: 768px) {
    .busca { font-size: 14px; }
    .banner-topo img { max-height: 200px; }
    .card a.img-link img { width: 100%; height: auto; }
    #sugestoes { top: 92px; }
  }

  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
  }

  .carrossel {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    position: relative;
  }
  .carrossel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
  }
  .carrossel-inner img {
    width: 100%;
    object-fit: contain;
    height: 300px;
  }

  .sessao-produtos {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
  }
  .sessao-produtos h2 {
    font-size: 20px;
    color: #247b93;
    margin: 40px 0 15px;
    border-left: 4px solid #caab5b;
    padding-left: 10px;
  }
  @media (max-width: 768px) {
    .carrossel-inner img { height: 200px; }
  }