.nav-link {
  text-decoration: none;
  transition: border-bottom 0.2s ease-in-out;
}

.nav-link:hover {
  text-decoration: none;
  border-bottom: 2px solid #0d6efd;
  color: #0d6efd;
}

.hero-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: #000;
  overflow: hidden;
}

.hero-section .hero-bg {
  background-image: url('../img/hero.png'); /* Troque pela imagem real */
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  opacity: 0.6;
  z-index: 0;
}

.hero-section .container {
  z-index: 1;
}

.hero-section h1,
.hero-section p {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-section form {
  border-radius: 8px;
}


.titulo-secao {
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.titulo-secao::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #FFA500; /* Laranja */
}

.destaque-scroll {
  overflow-x: auto;
  -ms-overflow-style: none;  /* IE e Edge */
  scrollbar-width: none;     /* Firefox */
}

.destaque-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
