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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Hero */
.hero {
  background: linear-gradient(120deg, #6C217D, #9b3cb7);
  color: #fff;
  padding: 80px 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.hero-text {
  flex: 1 1 480px;
}

.hero-text h1 {
  font-size: 2.3rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-text span {
  color: #FFD54F;
}

.hero-text p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.cta-btn {
  background-color: #FFD54F;
  color: #6C217D;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #ffdf73;
  transform: scale(1.05);
}

.hero-image img {
  width: 340px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Benefícios */
.benefits {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #6C217D;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  width: 300px;
  text-align: left;
}

.benefit-item h3 {
  color: #9b3cb7;
  margin-bottom: 10px;
}

/* Formulário */
.form-section {
  background: linear-gradient(120deg, #9b3cb7, #6C217D);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.form-box {
  max-width: 500px;
  margin: auto;
  background-color: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 12px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.lead-form input {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.lead-form button {
  background-color: #FFD54F;
  color: #6C217D;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.lead-form button:hover {
  background-color: #ffdf73;
  transform: scale(1.05);
}

.privacy-note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Rodapé */
footer {
  background-color: #6C217D;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #FFD54F;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


