/* ============================================================
   HOME PAGE
   ============================================================ */

/* ---- Hero ---- */
.hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: linear-gradient(160deg, var(--bg) 55%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content { max-width: 580px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero h1 {
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item span:first-child { color: var(--primary); font-size: 1rem; }

/* Hero image/visual */
.hero__visual {
  position: relative;
}
.hero__mockup {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__mockup-placeholder {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-muted);
}
.hero__mockup-placeholder .icon { font-size: 4rem; margin-bottom: var(--space-md); }
.hero__mockup-placeholder p { font-size: 0.9rem; }

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.hero__badge-icon { font-size: 2rem; }
.hero__badge-text { font-size: 0.85rem; }
.hero__badge-text strong { display: block; font-size: 1rem; color: var(--dark); }

/* ---- Modelos ---- */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ---- Benefícios ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.benefit-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.benefit-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--dark);
}
.benefit-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- Como funciona ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 16px rgba(61, 107, 79, 0.3);
}
.step-card h4 { margin-bottom: var(--space-sm); }
.step-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- Depoimentos ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ---- Pergunta final / CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section::before { width: 400px; height: 400px; top: -100px; right: -100px; }
.cta-section::after  { width: 300px; height: 300px; bottom: -80px; left: -80px;  }

.cta-section h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
}
.cta-section__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---- Lead section da home ---- */
.lead-section {
  background: var(--bg-alt);
  padding: var(--space-3xl) 0;
}
.lead-section__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.lead-section__gift {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}
.lead-section__inner h2 { margin-bottom: var(--space-sm); }
.lead-section__inner p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* ---- Responsivo home ---- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: var(--space-3xl) 0 var(--space-2xl); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .models-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}
