.header-box-content {
  width: 100%;
  background: linear-gradient(90deg, #ff7e00, #ff9900); /* Gradiente laranja */
  padding: 20px 0; /* Espaço vertical */
  text-align: center; /* Centraliza o conteúdo */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra leve */
  border-radius: 10px; /* Cantos arredondados */
}

.header-box-content .title-secundary {
  color: #000000; /* Texto preto */
  font-weight: bold;
  font-size: 24px;
  text-shadow: 1px 1px 2px #ffffff; /* Sombra branca no texto */
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.header-box-content .title-secundary:hover {
  transform: scale(1.05);
}
