/* ============================================================================
   LANDING.CSS — estilos da página inicial (pública, antes do login)
   ============================================================================
   Esta é a "cara" do site — o que aparece pra quem visita veicfacil.com.
   Paleta mais vibrante que a área logada, pra chamar atenção.
   ============================================================================ */

/* Cores exclusivas da landing */
.lp {
  --lp-ink: #0F172A;
  --lp-teal: #1e293b;
  --lp-teal-deep: #0F172A;
  --lp-coral: #F97316;
  --lp-gold: #F97316;
  --lp-paper: #fbf8f2;
}

.lp {
  color: var(--text);
  line-height: 1.5;
}

.lp a { color: inherit; }

.lp .wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}


/* ------------------------------------------------------------
   NAV (topo)
   ------------------------------------------------------------ */
.lp-nav {
  background: var(--lp-ink);
  color: #fff;
}
.lp-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  flex-wrap: wrap;
  gap: 14px;
}
.lp-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}
.lp-brand small {
  color: var(--lp-gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.lp-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.94rem;
}
.lp-nav-links a:hover {
  color: #fff;
}
.lp-nav-cta {
  padding: 10px 20px;
  background: var(--lp-coral);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
}
.lp-nav-cta:hover {
  background: #dc5f0a;
}


/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.lp-hero {
  padding: 80px 0 100px;
  background:
    linear-gradient(180deg, var(--lp-ink) 0%, #1e293b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(249, 115, 22, 0.20), transparent 70%);
  pointer-events: none;
}
.lp-hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Split hero: texto de vendas + card de login embutido */
.lp-hero-split {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  align-items: start;
}
.lp-hero-split .login-card {
  color: var(--text);
}
.lp-hero-split .login-toggle {
  margin-bottom: 20px;
}

/* Hero em coluna única (sem card de login embutido) */
.lp-hero-single {
  grid-template-columns: 1fr;
  max-width: 760px;
  align-items: start;
}

/* Lista de benefícios, abaixo do botão principal do hero */
.lp-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.lp-benefits li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
}
.lp-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.lp-hero h1 span {
  color: var(--lp-gold);
}
.lp-hero .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
.lp-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--lp-coral);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--anim-fast), box-shadow var(--anim-fast);
}
.lp-btn-primary:hover {
  background: #dc5f0a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
  color: #fff;
}
.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: background var(--anim-fast);
}
.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Card de "prova social" no hero */
.lp-hero-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #fff;
}
.lp-hero-card h3 {
  color: var(--lp-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.lp-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-hero-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}
.lp-hero-card li:last-child { border: 0; }
.lp-hero-card li::before {
  content: "✓ ";
  color: var(--lp-gold);
  font-weight: 800;
  margin-right: 8px;
}


/* ------------------------------------------------------------
   SEÇÕES DE CONTEÚDO
   ------------------------------------------------------------ */
.lp-section {
  padding: 80px 0;
}
.lp-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.lp-section-header .eyebrow {
  color: var(--lp-coral);
  margin-bottom: 12px;
}
.lp-section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--text);
}
.lp-section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Grid de features */
.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.lp-feature {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  transition: transform var(--anim-fast), box-shadow var(--anim-fast);
}
.lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.lp-feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-teal-deep) 100%);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}
.lp-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.lp-feature p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Seção CTA final */
.lp-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--lp-teal-deep) 0%, var(--lp-ink) 100%);
  color: #fff;
  text-align: center;
}
.lp-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.lp-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
}


/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.lp-footer {
  padding: 40px 0 32px;
  background: var(--lp-ink);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.9rem;
}
.lp-footer strong {
  color: #fff;
}
.lp-footer a {
  color: var(--lp-gold);
}


/* ============================================================================
   RESPONSIVO
   ============================================================================ */
@media (max-width: 900px) {
  .lp-hero .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-hero { padding: 60px 0; }
  .lp-section { padding: 60px 0; }
}

@media (max-width: 600px) {
  .lp-nav-links { display: none; }
  .lp-nav-cta { display: inline-flex; }
  .lp-hero-cta { flex-direction: column; }
  .lp-hero-cta a { width: 100%; }
}
