.banner-topo {
  width: 100%;
  height: 35vh; /* altura mais baixa, ajustável */
  overflow: hidden;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sobre-texto {
  color: #333;
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 900px;
}
  
.sobre-texto h1.titulo-principal {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a1a1a;
   margin-bottom: 2rem;
  text-align: center;
}
  
.sobre-texto h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  color: #FF6A00;
}
  
.sobre-texto h3 {
  font-size: 1.2rem;
  color: #555;
}
  
.sobre-texto p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

hr {
  border: none;
  height: 4px;                /* Espessura da linha */
  background:#FF6A00; /* Gradiente laranja */
  border-radius: 2px;
  margin: 2rem auto;
  width: 100%;                 /* Largura da linha */
}

.text-laranja {
  color: #FF6A00 !important;
}