/* ============================================================
   STYLE.CSS — Makerfy LP
   makerfy.com.br
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input { font-family: inherit; }

/* --- Variáveis --- */
:root {
  --bg:           #09090B;
  --surface:      #18181B;
  --surface-2:    #27272A;
  --border:       #3F3F46;
  --text:         #FAFAFA;
  --muted:        #A1A1AA;
  --primary:      #8B5CF6;
  --primary-dark: #7C3AED;
  --primary-glow: rgba(139, 92, 246, 0.3);
  --green:        #22C55E;
  --gold:         #F59E0B;

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --max-width:    740px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }

.destaque {
  background: linear-gradient(135deg, var(--primary), #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.secao {
  padding: 5rem 0;
}

/* --- Barra de status --- */
.barra-status {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 10px 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--gold);
  animation: pulso 2s ease-in-out infinite;
}
@keyframes pulso {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Hero --- */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.35);
  color: #C084FC;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.badge-pulse {
  width: 6px;
  height: 6px;
  background: #C084FC;
  border-radius: 50%;
  animation: pulso 1.5s ease-in-out infinite;
}

.hero h1 {
  max-width: 660px;
  margin: 0 auto 1.5rem;
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-sub strong { color: var(--text); }

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px var(--primary-glow);
}
.btn-hero:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.hero-numeros {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.25rem 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.numero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.numero-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}
.numero-item span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.numero-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* --- Seção genérica --- */
.secao-titulo {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}
.secao-titulo h2 { margin-bottom: 0.75rem; }
.secao-titulo p  { color: var(--muted); font-size: 0.95rem; }
.secao-titulo p strong { color: var(--text); }

/* --- Features --- */
.features-secao {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(139,92,246,0.4);
}
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.feature-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* --- Form section --- */
.form-secao {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-box {
  max-width: 480px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.form-tag {
  display: inline-block;
  background: var(--primary-glow);
  border: 1px solid rgba(139,92,246,0.4);
  color: #C084FC;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.form-header h2 { margin-bottom: 0.5rem; }
.form-header p  { color: var(--muted); font-size: 0.9rem; }

/* Campos */
.form-vip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.campo-grupo input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.campo-grupo input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.2);
}
.campo-grupo input::placeholder { color: #52525B; }

.campo-aceite {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.campo-aceite input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 3px;
  accent-color: var(--primary);
  cursor: pointer;
}
.campo-aceite label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
  cursor: pointer;
}
.campo-aceite label a {
  color: #C084FC;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--primary-glow);
  margin-top: 0.25rem;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-submit:disabled {
  background: var(--surface-2);
  color: var(--muted);
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

/* Alerta de erro */
.form-alerta {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.form-alerta-erro {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #FCA5A5;
}

/* Sucesso inline */
.form-sucesso {
  text-align: center;
  padding: 2.5rem 1rem;
}
.sucesso-icone {
  width: 60px;
  height: 60px;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin: 0 auto 1.25rem;
}
.form-sucesso h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.form-sucesso p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 320px;
  margin: 0 auto;
}

/* --- Rodapé --- */
.rodape {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.rodape a {
  color: var(--muted);
  text-decoration: underline;
  transition: color 0.15s;
}
.rodape a:hover { color: var(--text); }

/* --- Responsivo --- */
@media (max-width: 640px) {
  .hero { padding: 4rem 0 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-numeros { gap: 1.25rem; padding: 1rem 1.5rem; }
  .secao { padding: 3.5rem 0; }
}

@media (max-width: 380px) {
  .hero-numeros { flex-direction: column; gap: 0.75rem; }
  .numero-divider { width: 36px; height: 1px; }
}
