/* ======================= */
/* RESET E BASE */
/* ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f7f5fb;
  color: #2b2440;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 600;
}

/* ======================= */
/* HERO */
/* ======================= */
.hero {
  width: 100%;
  height: 90vh;
  background: linear-gradient(135deg, #6c4ba1, #8d6acc);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: white;
  animation: fadeIn 1s ease-out;
}

.hero-content {
  max-width: 650px;
  padding: 20px;
  animation: slideUp 1s ease-out;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.cta {
  display: inline-block;
  margin-top: 28px;
  background: #ffffff;
  color: #6c4ba1;
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  transition: 0.25s;
}

.cta:hover {
  transform: translateY(-3px);
  background: #f1e9ff;
}

/* ======================= */
/* FEATURES */
/* ======================= */
.features {
  padding: 80px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  transition: 0.25s;
  animation: fadeUp 0.8s ease-out;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #6c4ba1;
}

/* ======================= */
/* FAQ */
/* ======================= */
.faq {
  padding: 70px 20px;
  background: #f0ecf7;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-item {
  max-width: 750px;
  margin: 0 auto 25px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  animation: fadeUp 0.8s ease-out;
}

.faq-item h3 {
  color: #6c4ba1;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

/* ======================= */
/* FOOTER */
/* ======================= */
.footer {
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  color: #7d7691;
}

/* ======================= */
/* ANIMAÇÕES */
/* ======================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================= */
/* MOBILE AJUSTES */
/* ======================= */
@media (max-width: 700px) {
  .hero h1 {
    font-size: 1.9rem;
  }

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

  .cta {
    padding: 14px 26px;
    font-size: 1rem;
  }

  .feature-card {
    padding: 20px;
  }

  .faq-item {
    padding: 18px;
  }
}
