/* Estilos de la página de inicio pública (public/landing.html).
   Independiente de la app: la landing es HTML estático. */

:root {
  --ink: #343333;
  --red: #FF4F4F;
  --yellow: #FFBA49;
  --teal: #20A39E;
  --purple: #7D80DA;
  --paper: #FBFAF6;
}

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

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Kalam', cursive;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.lp {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 18px 40px;
}

/* Cabecera */
.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 2px dashed rgba(243, 240, 230, 0.2);
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Patrick Hand SC', cursive;
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: 1px;
}
.lp-logo {
  width: 32px;
  height: 32px;
  border: 2.5px solid var(--yellow);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.lp-nav-cta {
  font-family: 'Patrick Hand SC', cursive;
  font-size: 14px;
  color: var(--paper);
  text-decoration: none;
  border: 2px solid rgba(243, 240, 230, 0.35);
  border-radius: 8px;
  padding: 6px 14px;
}
.lp-nav-cta:hover { border-color: var(--teal); color: var(--teal); }

/* Hero */
.lp-hero {
  text-align: center;
  padding: 54px 10px 40px;
}
.lp-hero h1 {
  font-family: 'Patrick Hand SC', cursive;
  font-size: 46px;
  font-weight: 400;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1.1;
}
.lp-sub {
  max-width: 540px;
  margin: 14px auto 0;
  font-size: 17px;
  opacity: 0.85;
}
.lp-hero-note {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.6;
}

/* Botón principal (arcade neón) */
.lp-cta {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Patrick Hand SC', cursive;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--red);
  background: var(--ink);
  text-decoration: none;
  border: 3px solid var(--red);
  border-radius: 14px;
  padding: 14px 32px;
  box-shadow: 5px 5px 0 var(--red);
  transition: transform .05s ease, box-shadow .05s ease;
}
.lp-cta:hover { transform: translate(-1px, -1px); box-shadow: 6px 6px 0 var(--red); }
.lp-cta:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--red); }

/* Tarjetas de características */
.lp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.lp-card {
  border: 2px solid rgba(243, 240, 230, 0.22);
  border-radius: 12px;
  padding: 20px 18px;
}
.lp-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 2.5px solid var(--teal);
  border-radius: 10px;
  font-family: 'Patrick Hand SC', cursive;
  font-size: 22px;
  color: var(--teal);
}
.lp-card h2 {
  font-family: 'Patrick Hand SC', cursive;
  font-size: 19px;
  font-weight: 400;
  color: var(--paper);
  margin: 12px 0 4px;
}
.lp-card p { font-size: 14px; opacity: 0.78; }

/* Bloque de la academia */
.lp-academy {
  margin-top: 28px;
  text-align: center;
  border: 3px dashed var(--purple);
  border-radius: 16px;
  padding: 32px 22px;
  background: rgba(125, 128, 218, 0.08);
}
.lp-academy-logo {
  max-width: 160px;
  max-height: 80px;
  margin-bottom: 14px;
}
.lp-academy h2 {
  font-family: 'Patrick Hand SC', cursive;
  font-size: 26px;
  font-weight: 400;
  color: var(--purple);
}
.lp-academy p {
  max-width: 520px;
  margin: 10px auto 0;
  font-size: 15px;
  opacity: 0.88;
}
.lp-academy-cta {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Patrick Hand SC', cursive;
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--purple);
  background: var(--ink);
  text-decoration: none;
  border: 2.5px solid var(--purple);
  border-radius: 12px;
  padding: 11px 24px;
  box-shadow: 4px 4px 0 var(--purple);
}
.lp-academy-cta:hover { transform: translate(-1px, -1px); }
.lp-academy-cta:active { box-shadow: 2px 2px 0 var(--purple); }

/* Cierre */
.lp-final {
  text-align: center;
  padding: 44px 10px 10px;
}
.lp-final h2 {
  font-family: 'Patrick Hand SC', cursive;
  font-size: 28px;
  font-weight: 400;
  color: var(--yellow);
}

/* Pie */
.lp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 2px dashed rgba(243, 240, 230, 0.2);
  font-size: 13px;
  opacity: 0.7;
}
.lp-footer a { color: var(--teal); }

@media (max-width: 560px) {
  .lp-hero { padding: 38px 4px 30px; }
  .lp-hero h1 { font-size: 36px; }
  .lp-sub { font-size: 16px; }
  .lp-features { grid-template-columns: 1fr; }
}
