/* Arquivo de correções para problemas de título */

/* Correção para sobreposição de título */
.hero-title {
  width: 100%;
  max-width: 100%;
  letter-spacing: -0.01em;
}

/* Impedir quebras de palavras no nome */
.no-break {
  white-space: nowrap;
  display: inline-block;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

/* Espaçamento adequado entre os elementos do título */
.title-highlight,
.title-main {
  display: inline-block;
  margin: 0 0.15rem;
  padding: 0.1rem 0;
  white-space: normal;
  overflow: visible;
  text-align: center;
}

.hero-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Ajustes para dispositivos móveis */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .title-highlight {
    font-size: 1.5rem;
  }
  
  .title-main {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 375px) {
  .hero-title {
    font-size: 1.4rem;
    line-height: 1.25;
  }
  
  .title-highlight {
    font-size: 1.4rem;
  }
  
  .title-main {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 320px) {
  .hero-title {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
  }
  
  .title-highlight {
    font-size: 1.25rem;
  }
  
  .title-main {
    font-size: 1.2rem;
  }
}

/* Ajustes para tablet e landscape */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .title-highlight, .title-main {
    margin: 0 0.1rem;
  }
}

/* Ajuste para orientação paisagem em dispositivos móveis */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero-title {
    font-size: 1.3rem;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .title-highlight,
  .title-main {
    display: inline;
    margin: 0 0.25rem;
  }
}