/* ============= ESTILOS GERAIS ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff; /* Fundo branco */
  color: #141c93; /* Texto azul */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============= SESSÃO PRINCIPAL ============= */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ============= FOTO ============= */
.photo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #141c93; /* Borda azul */
  box-shadow: 0 0 20px rgba(20, 28, 147, 0.15);
  transition: transform 0.3s ease;
}

.photo img:hover {
  transform: scale(1.05);
}

/* ============= TEXTO ============= */
.text {
  flex: 1;
  text-align: left;
}

.text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #141c93;
}

.text p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #141c93;
  text-align: justify;
}

/* ============= BOTÃO ============= */
.btn {
  background-color: #141c93; /* Fundo azul */
  color: #ffffff; /* Texto branco */
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: transparent;
  color: #141c93;
  border: 2px solid #141c93;
}

/* ============= RESPONSIVIDADE ============= */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .text {
    text-align: j;
  }

  .photo img {
    width: 260px;
    height: 260px;
  }

  .text h1 {
    font-size: 2rem;
  }

  .text p {
    font-size: 1rem;
  }

  /* 🔽 Botão menor no mobile */
  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 30px;
  }
}
