/* Fontes locais */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v22-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v22-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v22-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.oculto {
  display: none;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #0e1f2f, #1c3553);
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.sessao-inicial {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background-image: url('../img/home-desk.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.texto-inicial img {
  width: 220px;
  height: auto;
}

.conteudo-inicial {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.texto-inicial {
  flex: 1 1 400px;
  max-width: 600px;
}

.texto-inicial h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #ffffff;
}

.subtitulo {
  font-size: 1rem;
  font-weight: 400;
  color: #d0d3d6;
  margin-bottom: 1rem;
}

.destaque {
  font-size: 0.95rem;
  color: #b0b3b8;
  margin-bottom: 2rem;
}

button {
  background-color: #247CFF;
  color: white;
  border: none;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

button:hover {
  background-color: #1a6de0;
}

.imagem-inicial {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.imagem-inicial img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .conteudo-inicial {
    flex-direction: column-reverse;
    text-align: center;
  }

  .texto-inicial h1 {
    font-size: 1.75rem;
  }

  .texto-inicial img {
    padding-top: 60vh;
  }

  .sessao-inicial {
    background-image: url('../img/home-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
}