/* ========== Estilos da Introdução ========= */
header.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #e6f2f1);
}

/* Imagem principal da introdução */
.intro-img {
  width: 250px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: intro-fadeInImage 1.2s ease-out forwards;
}

/* Título da introdução */
.intro-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #244b4d;
  margin-bottom: 1rem;
}

/* Parágrafo da introdução */
.intro-text {
  font-size: 1.3rem;
  max-width: 600px;
  color: #555;
}

/* Botão de chamada para ação (CTA) */
.intro-cta {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #244b4d;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.intro-cta:hover {
  background-color: #1a3536;
}

/* Animação de fade-in para imagem */
@keyframes intro-fadeInImage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Elementos que devem aparecer com animação */
.intro-aparecer {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.intro-visivel.intro-aparecer {
  opacity: 1;
  transform: translateY(0);
}
