.elementor-1652 .elementor-element.elementor-element-f07e3c1{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-8339bd8 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0f172a;
  color: #f1f5f9;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* BOTÃO PRINCIPAL */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(34,197,94,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(34,197,94,0.5);
}

/* SEÇÕES */
section {
  padding: 90px 0;
}

section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

/* SOBRE */
.sobre p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: center;
  color: #cbd5e1;
}

/* BENEFÍCIOS */
.beneficios .grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  flex: 1 1 280px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #22c55e;
}

.card p {
  color: #cbd5e1;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* COMO FUNCIONA */
.steps {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1 1 250px;
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.step h3 {
  color: #22c55e;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #16a34a, #15803d);
  text-align: center;
  color: #ffffff;
}

.cta h2 {
  color: #ffffff;
}

.cta p {
  margin-bottom: 30px;
}

/* CONTATO */
.contato form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.contato input,
.contato textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1e293b;
  color: #ffffff;
  font-size: 14px;
}

.contato textarea {
  resize: none;
  min-height: 120px;
}

.contato input:focus,
.contato textarea:focus {
  outline: none;
  border-color: #22c55e;
}

.info-contato {
  text-align: center;
  color: #cbd5e1;
}

.info-contato p {
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: #0b1120;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  section h2 {
    font-size: 26px;
  }

  .beneficios .grid,
  .steps {
    flex-direction: column;
  }
}/* End custom CSS */