/* P&P / PasNPark — Landing styles
   Paleta:
     #0A84FF azul brand
     #0048A6 azul oscuro
     #FFD60A amarillo acento
     #1C1C1E negro
     #8E8E93 gris medio
     #F2F2F7 fondo claro
*/

:root {
  --blue: #0A84FF;
  --blue-dark: #0048A6;
  --yellow: #FFD60A;
  --black: #1C1C1E;
  --gray: #8E8E93;
  --gray-light: #C7C7CC;
  --bg-light: #F2F2F7;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────── NAV ─────────── */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--bg-light);
  z-index: 100;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--blue);
}
.nav__logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav__logo span.ampersand { color: var(--yellow); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* ─────────── HERO ─────────── */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: #EAF1FF;
  color: var(--blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--blue); }
.hero p {
  font-size: 20px;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 36px;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(10, 132, 255, 0.25);
}
.btn--secondary {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--secondary:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}
@media (max-width: 640px) {
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 42px; letter-spacing: -1px; }
  .hero p { font-size: 17px; }
}

/* ─────────── SECCIONES ─────────── */
.section {
  padding: 80px 0;
}
.section--alt {
  background: var(--bg-light);
}
.section__eyebrow {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.section h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  max-width: 720px;
}
.section__intro {
  font-size: 18px;
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 56px;
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section h2 { font-size: 28px; }
}

/* ─────────── GRID PASOS ─────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--bg-light);
}
.section--alt .step { background: var(--white); }
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  color: var(--gray);
  font-size: 15px;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}

/* ─────────── HOST SECTION ─────────── */
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.host-features { list-style: none; }
.host-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 16px;
}
.host-features li:last-child { border-bottom: none; }
.host-features li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}
.host-visual {
  background: var(--blue);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}
.host-visual__amount {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 8px;
}
.host-visual__caption {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.host-visual__small {
  font-size: 13px;
  opacity: 0.7;
}
@media (max-width: 880px) {
  .host-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────── DOWNLOAD CTA ─────────── */
.download {
  background: var(--blue);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.download h2 {
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}
.download p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 32px;
}
.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn {
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  opacity: 0.5;
  cursor: not-allowed;
}
.store-btn .tag {
  background: var(--yellow);
  color: var(--black);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  margin-left: 4px;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}
.footer__brand .ampersand { color: var(--yellow); }
.footer__brand img { width: 36px; height: 36px; border-radius: 8px; }
.footer__about {
  color: var(--gray-light);
  font-size: 14px;
  max-width: 320px;
}
.footer h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul a { color: var(--gray-light); }
.footer ul a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid #2C2C2E;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
}
.footer__socials {
  display: flex;
  gap: 14px;
}
.footer__socials a { color: var(--gray-light); font-weight: 600; font-size: 14px; }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ─────────── LEGAL PAGES ─────────── */
.legal {
  padding: 60px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}
.legal__updated {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 32px;
}
.legal h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal p, .legal li {
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal a { color: var(--blue); text-decoration: underline; }
.legal strong { color: var(--black); }
.legal .toc {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.legal .toc h3 { margin-top: 0; }
.legal .toc ol { margin-bottom: 0; }
