body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
}

.card-img-top {
  border-radius: 0.25rem;
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
}

/* Botão voltar ao topo */
#btnTopo:hover {
  background-color: #ffc107 !important;
  color: #212529 !important;
  text-decoration: none;
}

#btnWhatsApp {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  z-index: 1000;
}

#btnWhatsApp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.8);
}

#btnTopo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffc107;
  color: #212529;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none;
  z-index: 1000;
}

#btnTopo:hover {
  background: #e0a800;
  color: #fff;
}

/* --- Ajuste espaçamento para a seção produtos --- */
#produtos {
  padding-top: 2rem;    /* mantém espaçamento razoável em cima */
  padding-bottom: 1rem; /* reduz espaço inferior */
  margin-bottom: 0 !important; /* elimina margem inferior */
}

#produtos h2 {
  margin-bottom: 1.2rem; /* espaçamento título */
}

/* Remove margens/paddings extras na seção seguinte */
#produtos + * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Remove margens e paddings do rodapé para evitar espaço extra */
footer,
footer > * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Garante que html e body não forçam altura mínima */
html, body {
  min-height: auto !important;
  height: auto !important;
}
/* Reduz padding inferior da seção contato */
#contato {
  padding-bottom: 1rem !important;  /* diminui espaço embaixo */
  margin-bottom: 0 !important;
}

/* Remove margem/padding no elemento logo após contato (rodapé) */
#contato + * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Remove margens/paddings do rodapé */
footer,
footer > * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
