/* STEELFISH — mapeando os estilos que você tem */
@font-face {
  font-family: 'Steelfish';
  src: url('fonts/Steelfish Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Steelfish';
  src: url('fonts/Steelfish Rg It.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Steelfish';
  src: url('fonts/Steelfish Bd.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Steelfish';
  src: url('fonts/Steelfish_Bd_It.otf') format('opentype'); /* ou 'fonts/Steelfish Bd It.otf' se o arquivo tiver espaços */
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Steelfish';
  src: url('fonts/Steelfish Eb.otf') format('opentype');
  font-weight: 800; /* 800 ou 900, como preferir */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Steelfish';
  src: url('fonts/Steelfish Eb It.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}


:root {
    --cor-destaque: #ff6600;
    --cor-gradiente-preto: linear-gradient(113deg, #000 0%, #1E2021 44.96%, #1E2022 100%);
}

h1 {
  font-family: 'Steelfish';
  font-weight: 700; /* pega o Steelfish-Bd.otf */
  text-transform: uppercase;
  color: var(--cor-destaque);
  text-shadow: 2px 2px 4px rgba(0,0,0,.5);

}

h2 {
  font-family: 'Steelfish';
  font-weight: 700;
  font-style: italic; /* pega o Steelfish-Bd-It.otf */
  color: #784400;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 21px 18px 21px;
    background: var(--cor-gradiente-preto);
    height: 100vh;
    flex-direction: column;
}


.container {
    display: flex;
    width: 65rem;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
}

h1 {
    color: var(--cor-destaque);
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

#entrada-de-texto {
    display: flex;
    height: 12rem;
    padding: 1.4rem 2.5rem 2.5rem 2.5rem;
    align-items: flex-start;
    gap: 0.625rem;
    align-self: stretch;
    border-radius: 0.625rem;
    background: #FFF;
    font-size: 2rem;
}

#entrada-de-texto::placeholder {
    color: #828282;
    font-size: 2rem;
    font-weight: 400;
    line-height: normal;
}

#botao-palavrachave {
    display: flex;
    padding: 1.25rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.5rem;
    border: none;
    background: var(--cor-destaque);
    color: #000;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: normal;
}

#resultado-palavrachave {
    display: flex;
    border-radius: 0.625rem;
    align-self: stretch;
    color: var(--cor-destaque);
    font-size: 2.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 100%;
    max-height: 50vh;
    overflow: auto;
}