/* ============================================================
   LANDING PAGES (campañas de anuncios) — complementa styles.css
   Reutiliza los tokens y componentes del sitio (.btn, .card, etc.)
   ============================================================ */

/* Header simplificado (sin menú, para no distraer del objetivo) */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.lp-header__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.lp-header .btn { padding: 10px 18px; }

/* Hero enfocado */
.lp-hero { position: relative; padding: 90px 0 70px; background: var(--dark); color: #fff; overflow: hidden; }
.lp-hero .container { position: relative; z-index: 1; }
/* Sobrescribe los colores oscuros globales de h1/botón fantasma dentro del hero oscuro */
.lp-hero h1, .lp-hero h2, .lp-hero h3 { color: #fff; }
.lp-hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.lp-hero .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.lp-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.lp-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.08; margin-bottom: 16px; }
.lp-hero__sub { font-size: clamp(16px, 1.7vw, 19px); color: #CBD5E1; max-width: 560px; margin-bottom: 28px; }
.lp-hero .hero__trust { margin-top: 34px; }

/* Imagen destacada del hero (infografía / producto) */
.lp-hero__img {
  width: 100%; max-width: 430px; display: block; margin: 0 auto;
  border-radius: 20px; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.6);
}

/* Tarjeta lateral (beneficios rápidos / garantía) */
.lp-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 28px; backdrop-filter: blur(8px); box-shadow: 0 30px 60px -24px rgba(0,0,0,.6); }
.lp-card h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 16px; color: #fff; }
.lp-card ul { list-style: none; display: grid; gap: 13px; }
.lp-card li { display: flex; gap: 11px; align-items: flex-start; color: #E2E8F0; font-size: 15px; }
.lp-card li::before { content: "✔"; color: #22D3EE; font-weight: 700; }

/* Fila de logos de marcas */
.lp-logos { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.lp-logos__item { background: #fff; border: 1px solid rgba(15,23,42,.08); border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow); display: grid; place-items: center; }
.lp-logos__item img { height: 34px; width: auto; object-fit: contain; }

/* Listas de productos (dos columnas) */
.lp-products { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lp-prod { background: var(--white); border: 1px solid rgba(15,23,42,.08); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.lp-prod h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 14px; }
.lp-prod ul { list-style: none; display: grid; gap: 10px; }
.lp-prod li { display: flex; gap: 10px; align-items: flex-start; color: var(--dark-2); }
.lp-prod li::before { content: "→"; color: var(--blue); font-weight: 700; }

/* FAQ */
.lp-faq { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.lp-faq details { background: var(--white); border: 1px solid rgba(15,23,42,.08); border-radius: var(--radius-sm); padding: 18px 22px; box-shadow: var(--shadow); }
.lp-faq summary { font-family: var(--font-head); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lp-faq summary::after { content: "+"; font-size: 22px; color: var(--blue); }
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq p { margin-top: 12px; color: var(--gray); }

/* Banda CTA final */
.lp-cta-band { background: var(--grad); color: #fff; text-align: center; border-radius: 22px; padding: 46px 28px; box-shadow: var(--shadow-lg); }
.lp-cta-band h2 { color: #fff; font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 12px; }
.lp-cta-band p { color: rgba(255,255,255,.9); margin-bottom: 24px; max-width: 620px; margin-inline: auto; }
.lp-cta-band .btn--light { background: #fff; color: var(--blue); }

/* Footer minimalista */
.lp-footer { background: var(--dark); color: var(--gray-2); text-align: center; padding: 30px 0; font-size: 14px; }
.lp-footer a { color: #7DD3FC; }

@media (max-width: 820px) {
  .lp-hero__grid { grid-template-columns: 1fr; }
  .lp-hero .hero__trust { justify-content: flex-start; }
  .lp-products { grid-template-columns: 1fr; }
}
