.elementor-213 .elementor-element.elementor-element-a1d4d73{--display:flex;}.elementor-213 .elementor-element.elementor-element-62f1177{--display:flex;}.elementor-213 .elementor-element.elementor-element-e7b1da0{--display:flex;}.elementor-213 .elementor-element.elementor-element-d419883{--display:flex;}.elementor-213 .elementor-element.elementor-element-2900e41{--display:flex;}.elementor-213 .elementor-element.elementor-element-f3aa7eb{--display:flex;}/* Start custom CSS */:root {
  --bg-main: #0a0e27;
  --bg-card: #1a1a2e;
  --border-color: #2d2d4a;
  --color-primary: #00d4ff;
  --color-primary-hover: #00e5ff;
  --color-accent: #00ff88;
  --text-main: #ffffff;
  --text-muted: #b8bcc4;
  --text-soft: #72787f;
}

/* Base */
body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

section {
  padding: 80px 20px;
}

@media (min-width: 768px) {
  section {
    padding: 100px 40px;
  }
}

/* Hero */
.hero-epifania {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top left, #00ff88 0, #0a0e27 45%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(0, 212, 255, 0.15) 0, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 780px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 14, 39, 0.8);
  color: var(--color-accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 14px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 54px;
  }
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-highlight {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.hero-description {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Botão principal */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #0a0e27;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.45);
}

/* Títulos de seção */
.section-title {
  text-align: center;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 15px;
}

/* Grid de epifanias */
.epiphany-section {
  background: radial-gradient(circle at top, rgba(0, 212, 255, 0.09) 0, transparent 55%);
}

.epiphany-grid {
  display: grid;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .epiphany-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .epiphany-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.epiphany-card {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(10, 14, 39, 0.98));
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(45, 45, 74, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.epiphany-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(0, 212, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.epiphany-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.65);
}

.epiphany-card:hover::before {
  opacity: 1;
}

.card-title {
  position: relative;
  font-size: 16px;
  margin-bottom: 8px;
}

.card-text {
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.card-author {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Prova (estatísticas) */
.proof-section {
  background: radial-gradient(circle at bottom, rgba(0, 255, 136, 0.12) 0, transparent 55%);
}

.proof-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.proof-card {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.96), rgba(10, 14, 39, 0.98));
  border-radius: 18px;
  padding: 22px 18px;
  border: 1px solid rgba(45, 45, 74, 0.95);
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.7);
}

.proof-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.proof-text {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.proof-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA */
.cta-section {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 26px;
  margin-bottom: 12px;
}

.cta-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.cta-guarantee {
  margin-top: 16px;
  color: var(--color-accent);
  font-size: 14px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(45, 45, 74, 0.9);
  padding: 28px 20px 40px;
  text-align: center;
  background: #050716;
}

.footer-text {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.footer-subtext {
  font-size: 12px;
  color: var(--text-muted);
}/* End custom CSS */