body {
  background: #f0f8ff;
  font-family: 'Arial', sans-serif;
}
.navbar {
  background: #3300CC; /* Sobrescreve o #ffffff para manter a cor da barra */
  border-bottom: none; /* Remove a linha de divisão */
}
.navbar.fixed-top {
  box-shadow: none; /* Garante que não haja sombra */
  border-bottom: none; /* Garante que não haja borda inferior */
}
.category-btn {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.3s ease;
}
.category-btn:hover {
  transform: translateY(-5px);
}
.category-btn img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 5px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.category-btn a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.category-btn::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background: #007bff;
  margin: 5px auto 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.category-btn:hover::after {
  width: 80%;
}
.fixed-footer-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.fixed-footer-banner img {
  width: 100%;
  max-height: 80px;
  object-fit: cover;
}
.top-fixed-banner img {
  width: 100%;
  max-height: 100px;
  object-fit: cover;
}
.anuncie-btn {
  display: block;
  text-align: center;
  margin: 15px auto;
}
.anuncie-btn a {
  background: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.anuncie-btn a:hover {
  background: #0056b3;
}
.empresa-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-bottom: 15px;
}
.selo {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  margin-right: 5px;
}