/* Landing page — layout sem o “caixote” padrão do template MVC */

html {
  scroll-behavior: smooth;
}

#recursos,
#planos {
  scroll-margin-top: 5.5rem;
}

.lp-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1a1a2e;
  background: #fafafa;
}

.lp-main {
  flex: 1 0 auto;
}

/* Header / nav */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.lp-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.lp-nav-inner {
  max-width: 1120px;
}

.lp-brand {
  font-family: "Outfit", "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: #0f172a !important;
}

.lp-nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: #475569 !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 0.375rem;
}

.lp-nav-link:hover {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.05);
}

.lp-nav-toggler {
  border: none;
  padding: 0.35rem 0.5rem;
}

.lp-nav-toggler:focus {
  box-shadow: none;
}

/* Mobile: espaço entre Entrar e Começar grátis no menu expandido */
@media (max-width: 991.98px) {
  .lp-navbar #lpNav .navbar-nav .nav-item .btn.rounded-pill {
    width: 100%;
    text-align: center;
  }
}

/* Hero */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 42%, #0c4a6e 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(56, 189, 248, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(167, 139, 250, 0.12), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(34, 211, 238, 0.08), transparent 35%);
  pointer-events: none;
}

.lp-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.lp-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 1rem;
}

.lp-hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 18ch;
}

.lp-hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
}

.lp-btn-primary {
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #0f172a !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: #fff !important;
  border-color: transparent !important;
  color: #0f172a !important;
}

.lp-btn-primary:focus,
.lp-btn-primary:focus-visible,
.lp-btn-primary:active {
  background: #fff !important;
  border-color: transparent !important;
  color: #0f172a !important;
}

.lp-btn-ghost {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

/* Pricing card on hero */
.lp-glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.lp-glass-card h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e0f2fe;
}

.lp-glass-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-glass-card li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.lp-glass-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.lp-glass-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 1.25rem 0;
}

.lp-price-tag {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.lp-price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

/* Sections */
.lp-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.lp-section-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.lp-section-sub {
  color: #64748b;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.lp-feature-card {
  height: 100%;
  padding: 1.75rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-feature-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.lp-feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(88, 86, 214, 0.14) 0%, rgba(88, 86, 214, 0.06) 100%);
  color: #5856d6;
}

.lp-feature-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.lp-feature-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.lp-feature-card code {
  font-size: 0.8rem;
  background: #f1f5f9;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  color: #0f172a;
}

/* Planos (duas colunas) */
#planos .lp-plan-card {
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  background: #fff;
}

#planos .lp-plan-card--pro {
  border-color: #0f172a;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

#planos .lp-plan-card--pro .text-muted {
  color: rgba(255, 255, 255, 0.65) !important;
}

#planos .lp-plan-card--pro ul {
  color: rgba(255, 255, 255, 0.9);
}

#planos .lp-plan-price {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* CTA strip */
.lp-cta {
  background: linear-gradient(90deg, #0ea5e9 0%, #6366f1 50%, #8b5cf6 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.lp-cta h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

.lp-cta .btn-light {
  font-weight: 600;
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
}

/* Footer */
.lp-footer {
  flex-shrink: 0;
  background: #0f172a;
  color: #94a3b8;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Flash alerts inside landing */
.lp-main > .alert {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  border-radius: 0.75rem;
}
