
/* Reset global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Quicksand', sans-serif;
  scroll-behavior: smooth;
  color: #333;
  background: url('../imagens/fundo.jpg') center/cover no-repeat fixed;
  background-color: #fdfdfd;
}

/* Cabeçalho */
.hero {
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: transparent;
  color: #0047ab;
}

.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.2rem;
  font-weight: 400;
  color: #4608f0;
  margin-bottom: 12px; /* Aumentado para espaçar mais */
  letter-spacing: 2px;
  line-height: 1.3;
}

.hero p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #004d40;
  letter-spacing: 0.5px;
  line-height: 1.6;
  margin: 20px auto 20px;
  max-width: 90%;
}

/* Seções */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 40px auto;
  background: transparent;
  text-align: center;
  color: #003366;
}

.section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 30px;
}

.sobre-texto {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.4px;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: transparent;
  border-radius: 12px;
  color: #003366;
  text-shadow: none;
}

.section ul {
  list-style: none;
  padding: 0;
}

.section li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 15px;
  color: #003366;
}

.section li i {
  color: #0047ab;
  font-size: 1.4rem;
}

.contato-section p {
  font-size: 1.1rem;
  letter-spacing: 0.4px;
  text-align: center;
  color: #003366;
}

.contato-botoes {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 10px;
}

.btn-whatsapp, .btn-linkedin, .btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #003366;
  background: none;
  border: none;
  text-decoration: none;
  padding: 5px 0;
}

.btn-whatsapp:hover,
.btn-linkedin:hover,
.btn-email:hover {
  text-decoration: underline;
  color: #002f6c;
}

.mensagem-final {
  text-align: center;
  font-size: 1.1rem;
  color: #003366;
  margin: 60px auto 20px;
  max-width: 90%;
  background: transparent;
  padding: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section {
    padding: 40px 15px;
  }

  .contato-botoes {
    flex-direction: column;
    gap: 15px;
  }

  .btn-whatsapp, .btn-linkedin, .btn-email {
    width: 80%;
    justify-content: center;
  }
}
