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

.lp {
  --lp-bg: #1f2937;
  --lp-text: #0b1220;
  --lp-muted: #5b6478;
  --lp-primary: #2563ff;
  --lp-primary-2: #1d4ed8;
  --lp-whatsapp: #25d366;
  --lp-whatsapp-2: #128c7e;
  --lp-border: rgba(11, 18, 32, 0.08);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  min-height: 100vh;
}
.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.lp-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--lp-border);
}
.lp-nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.lp-logo { height: 126px; width: auto; display: block; }
.lp-hero { padding: 80px 0 60px; }
.lp-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(37, 99, 255, 0.15); color: #fff;
  font-size: 0.85rem; font-weight: 600;
  border: 1px solid rgba(37, 99, 255, 0.4); margin-bottom: 20px;
}
.lp h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1; letter-spacing: -0.03em;
  font-weight: 800; margin-bottom: 20px; color: var(--lp-primary);
}
.lp h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-sub { font-size: 1.15rem; color: #cbd5e1; margin-bottom: 32px; max-width: 560px; }
.lp-sub p { margin-bottom: 8px; }
.lp-form-card {
  max-width: 520px; margin: 0 auto; background: #fff;
  padding: 40px; border-radius: 20px; border: 1px solid var(--lp-border);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}
.lp-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; text-align: center; font-weight: 800; }
.lp-lead { color: var(--lp-muted); text-align: center; margin-bottom: 28px; }
.lp-field { margin-bottom: 16px; }
.lp-field label { display: block; font-size: 0.85rem; color: var(--lp-muted); margin-bottom: 6px; font-weight: 500; }
.lp-field input, .lp-field select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: #fff; color: var(--lp-text);
  border: 1px solid var(--lp-border); font-size: 1rem; font-family: inherit;
}
.lp-field input:focus, .lp-field select:focus {
  outline: none; border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.15);
}
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; text-decoration: none; cursor: pointer; border: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1rem; font-family: inherit;
}
.lp-btn-whatsapp {
  background: linear-gradient(135deg, var(--lp-whatsapp), var(--lp-whatsapp-2));
  color: #fff; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.5);
  width: 100%; margin-top: 8px;
}
.lp-btn-whatsapp:hover:not(:disabled) { transform: translateY(-2px); }
.lp-btn-whatsapp:disabled { opacity: 0.7; cursor: not-allowed; }
.lp-privacy { text-align: center; color: var(--lp-muted); font-size: 0.8rem; margin-top: 14px; }
.lp-footer {
  padding: 40px 0; border-top: 1px solid var(--lp-border);
  text-align: center; color: var(--lp-muted); font-size: 0.9rem; background: #fff;
}
@media (max-width: 860px) {
  .lp-hero { padding: 60px 0 40px; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-form-card { padding: 28px; }
  .lp-logo { height: 112px; }
}
