/* URPEVERSE — website de marketing v1 (2026-07-18)
   Medidas: contenedor 1280, secciones 80px, botón r12 p12/24, H1 64/−3px (desktop).
   Marca: Aurora (tokens brand/colors/tokens.css). */

@font-face {
  font-family: 'Inter Variable';
  src: url('/fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0B2240;
  --ink-700: #1B3A5C;
  --ink-soft: #4A6485;
  --ink-400: #6B83A0;
  --blue: #2E96F5;
  --blue-deep: #1E86E5;
  --sky: #4FB0FF;
  --cyan: #35D9F0;
  --mint: #2BD27A;
  --ice-050: #F5FAFF;
  --ice-100: #ECF4FF;
  --ice-200: #E0F0FF;
  --border: #E0F0FF;
  --card-border: #E0F0FF;
  --cta-a: #1E86E5;
  --cta-b: #35D9F0;
  --grid-lines: rgba(46, 150, 245, .08);
  --grad-aurora: linear-gradient(135deg, #1E86E5 0%, #2E96F5 55%, #35D9F0 100%);
  --grad-night: linear-gradient(160deg, #0B2240 0%, #123B6E 60%, #1E86E5 130%);
  --font-display: 'Inter Variable', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter Variable', 'Inter', system-ui, sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', SFMono-Regular, Menlo, monospace;
  --shadow-card: 0 12px 32px -10px rgba(46, 100, 175, .18);
  --shadow-float: 0 24px 60px -16px rgba(11, 34, 64, .25);
  --shadow-cta: 0 8px 24px -8px rgba(46, 150, 245, .6);
  --r-card: 24px;
  --r-btn: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ice-050);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── Tipos ── */
h1 { font-size: 64px; font-weight: 800; letter-spacing: -3px; line-height: 1.06; }
h2 { font-size: 48px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.sub { font-size: 19px; color: var(--ink-soft); font-weight: 450; }
.kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 18px;
}
.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sec-head .sub { margin-top: 16px; }

/* ── Botones ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 16px; font-weight: 650;
  padding: 13px 26px; border-radius: var(--r-btn); border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary { background: var(--grad-aurora); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(46, 150, 245, .7); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--sky); color: var(--blue-deep); }
.btn-lg { font-size: 18px; padding: 16px 34px; }

/* ── Nav ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(245, 250, 255, .78);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid rgba(46, 150, 245, .10);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a { font-size: 15px; font-weight: 550; color: var(--ink-700); transition: color .15s; }
.nav-links a:hover { color: var(--blue); }
.nav-spacer { flex: 1; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 15px; font-weight: 600; color: var(--ink-700); }
.nav-cta .login:hover { color: var(--blue); }
.nav-cta .btn { padding: 10px 20px; font-size: 15px; }
.lang {
  display: flex; gap: 2px; background: var(--ice-200); border-radius: 999px; padding: 3px;
}
.lang a {
  font-size: 12.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; color: var(--ink-400);
}
.lang a.on { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(11, 34, 64, .10); }
.nav-burger { display: none; }
.nav-menu { display: none; }

/* ── Hero ── */
.hero { padding: 158px 0 72px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 44% at 78% 6%, rgba(53, 217, 240, .16), transparent 70%),
    radial-gradient(48% 42% at 12% 22%, rgba(46, 150, 245, .12), transparent 70%);
}
.hero-grid { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.hero .sub { max-width: 640px; margin: 22px auto 0; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 34px; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--ink-400); font-weight: 550; }
.hero-note .dot-mint { color: var(--mint); }

/* marco del producto */
.product-frame {
  position: relative; margin: 56px auto 0; max-width: 1180px;
  border-radius: var(--r-card); background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-float);
  overflow: hidden;
}
.product-frame .chrome {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-bottom: 1px solid var(--ice-100); background: var(--ice-050);
}
.chrome i { width: 11px; height: 11px; border-radius: 50%; background: var(--ice-200); }
.chrome i:nth-child(1) { background: #FFB3B3; }
.chrome i:nth-child(2) { background: #FFE1A8; }
.chrome i:nth-child(3) { background: #B9F0CD; }
.chrome .url {
  flex: 1; max-width: 340px; margin: 0 auto; background: #fff; border: 1px solid var(--ice-200);
  border-radius: 8px; font-size: 12px; color: var(--ink-400); text-align: center; padding: 4px 12px;
  font-weight: 550;
}

/* ── Franja de confianza ── */
.trust { padding: 34px 0; border-top: 1px solid var(--ice-100); border-bottom: 1px solid var(--ice-100); background: #fff; }
.trust-row { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 650; color: var(--ink-700); }
.trust-item .tick { color: var(--mint); font-weight: 800; }

/* ── Features alternadas ── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 44px 0;
}
.feature-row.rev .f-media { order: 2; }
.f-copy .kicker { margin-bottom: 12px; }
.f-copy h2 { font-size: 40px; }
.f-copy .sub { font-size: 17px; margin-top: 14px; }
.f-list { margin-top: 22px; display: grid; gap: 12px; }
.f-list li {
  list-style: none; display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink-700); font-weight: 500; line-height: 1.5;
}
.f-list .tick {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: rgba(43, 210, 122, .14); color: #1FA85E; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.f-media {
  border-radius: var(--r-card); overflow: hidden; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.f-media video { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* mock genérico dentro de f-media */
.mock { padding: 22px; background: linear-gradient(180deg, #fff, var(--ice-050)); min-height: 320px; }

/* ── Cards IA ── */
.ai { background: var(--grad-night); color: #fff; position: relative; overflow: hidden; }
.ai::before {
  content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 217, 240, .18), transparent 65%);
  top: -220px; right: -160px; pointer-events: none;
}
.ai .kicker { color: var(--cyan); }
.ai h2, .ai h3 { color: #fff; }
.ai .sec-head .sub { color: #BFD8F5; }
.ai-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.ai-card {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(139, 201, 255, .18);
  border-radius: 20px; padding: 26px 22px; transition: transform .2s ease, background .2s ease;
}
.ai-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .10); }
.ai-card .ico {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad-aurora);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 20px;
}
.ai-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.ai-card p { font-size: 13.5px; color: #BFD8F5; line-height: 1.55; }
.ai-note { text-align: center; margin-top: 34px; font-size: 13px; color: #8BC9FF; }

/* ── Grid de extras ── */
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.more-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px;
  box-shadow: var(--shadow-card);
}
.more-card .ico {
  width: 42px; height: 42px; border-radius: 12px; background: var(--ice-100);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px;
}
.more-card h3 { font-size: 17px; margin-bottom: 7px; }
.more-card p { font-size: 14px; color: var(--ink-soft); }

/* ── Comparativa ── */
.compare table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); }
.compare th, .compare td { padding: 15px 20px; font-size: 15px; text-align: left; border-bottom: 1px solid var(--ice-100); }
.compare thead th { background: var(--ink); color: #fff; font-size: 14px; font-weight: 700; }
.compare thead th:first-child { width: 42%; }
.compare td { color: var(--ink-700); font-weight: 500; }
.compare td.si { color: #1FA85E; font-weight: 700; }
.compare td.no { color: #C43B3F; font-weight: 700; }
.compare td.medio { color: var(--ink-400); font-weight: 600; }
.compare tbody tr:hover { background: var(--ice-050); }
.compare .note { margin-top: 14px; font-size: 12.5px; color: var(--ink-400); text-align: center; }
.compare-scroll { overflow-x: auto; border-radius: 20px; }

/* ── Precio ── */
.price-card {
  max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--border);
  border-radius: 28px; box-shadow: var(--shadow-float); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr;
}
.price-left { padding: 44px; }
.price-left .amount { display: flex; align-items: baseline; gap: 10px; margin: 18px 0 4px; }
.price-left .amount b { font-size: 72px; font-weight: 800; letter-spacing: -3px; line-height: 1; }
.price-left .amount span { font-size: 15px; color: var(--ink-soft); font-weight: 550; }
.price-left .per { font-size: 14px; color: var(--ink-400); }
.price-left .btn { margin-top: 28px; }
.price-vs { margin-top: 18px; font-size: 13px; color: var(--ink-400); }
.price-right { background: var(--ice-050); border-left: 1px solid var(--ice-100); padding: 36px 34px; }
.price-right h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-400); margin-bottom: 16px; }
.price-right ul { list-style: none; display: grid; gap: 10px; }
.price-right li { display: flex; gap: 10px; font-size: 14.5px; font-weight: 550; color: var(--ink-700); }
.price-right .tick { color: var(--mint); font-weight: 800; }

/* ── Pasos ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow-card); position: relative;
}
.step .n {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--blue);
  background: var(--ice-100); border-radius: 999px; padding: 4px 12px; display: inline-block; margin-bottom: 14px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
details {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px;
  box-shadow: var(--shadow-card);
}
summary { font-size: 16.5px; font-weight: 650; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: "+"; font-size: 22px; color: var(--blue); font-weight: 400; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 12px; font-size: 15px; color: var(--ink-soft); }

/* ── CTA final ── */
.final { background: var(--grad-night); text-align: center; color: #fff; position: relative; overflow: hidden; padding: 110px 0; }
.final::before {
  content: ""; position: absolute; width: 900px; height: 900px; left: 50%; top: 50%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 217, 240, .14), transparent 60%); pointer-events: none;
}
.final img { height: 72px; margin: 0 auto 30px; position: relative; }
.final h2 { color: #fff; position: relative; }
.final .sub { color: #BFD8F5; margin: 16px auto 34px; max-width: 560px; position: relative; }
.final .btn { position: relative; }

/* ── Footer ── */
footer { background: #fff; border-top: 1px solid var(--ice-100); padding: 56px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand img { height: 28px; margin-bottom: 14px; }
.foot-brand p { font-size: 13.5px; color: var(--ink-soft); max-width: 260px; }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-400); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14.5px; font-weight: 550; color: var(--ink-700); margin-bottom: 10px; }
.foot-col a:hover { color: var(--blue); }
.foot-base {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid var(--ice-100); margin-top: 44px; padding-top: 24px;
  font-size: 13px; color: var(--ink-400);
}

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  h1 { font-size: 48px; letter-spacing: -1.8px; }
  h2 { font-size: 38px; }
  .f-copy h2 { font-size: 32px; }
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 840px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-burger i { width: 22px; height: 2.5px; border-radius: 2px; background: var(--ink); }
  .nav-menu {
    display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 59;
    background: #fff; border-bottom: 1px solid var(--ice-100); padding: 18px 24px 24px;
  }
  .nav-menu.open { display: block; }
  .nav-menu a { display: block; padding: 13px 4px; font-size: 17px; font-weight: 600; color: var(--ink-700); min-height: 44px; }
  .hero { padding: 128px 0 56px; }
  h1 { font-size: 40px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 340px; min-height: 52px; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; }
  .feature-row.rev .f-media { order: 0; }
  .more-grid, .steps-grid, .ai-grid { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; }
  .price-right { border-left: 0; border-top: 1px solid var(--ice-100); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { gap: 18px 28px; }
  .nav-cta .login { display: none; }
  .nav .lang { display: none; }
  .nav-cta .btn { font-size: 13.5px; padding: 9px 14px; white-space: nowrap; }
  .nav-inner { gap: 12px; }
  .nav-menu .lang { display: inline-flex; margin-top: 14px; }
}

/* ── Compat: variables que consume landing-mundo.css (mini-mundo del hero) ── */
:root {
  --paper: #ECF4FF;
  --surface: #FFFFFF;
  --surface-2: #DCEBFF;
  --live: #2E96F5;
  --live-deep: #1E86E5;
  --presence: #2BD27A;
  --line: color-mix(in srgb, #0B2240 7%, transparent);
  --good: #1FA85E;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px color-mix(in srgb, #0B2240 13%, transparent);
  --grid-lines:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  --dark: #0B2240;
  --dark-2: #081729;
  --on-dark: #DCEBFF;
  --on-dark-soft: #8FB0DE;
}
/* El mundo vive dentro del product-frame del hero: a ancho completo */
.product-frame .world-band { max-width: none; margin: 0; border: 0; border-radius: 0; height: 240px; }
@media (max-width: 840px) { .product-frame .world-band { height: 200px; } }

/* ── Planes 3 tiers (modelo por volumen, 2026-07-23) ── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1020px; margin: 0 auto; align-items: stretch; }
.plan-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 34px 30px 28px; display: flex; flex-direction: column; }
.plan-card h3 { font-size: 20px; font-weight: 750; }
.plan-seats { font-size: 13.5px; color: var(--ink-400); margin-top: 2px; }
.plan-card .amount { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 2px; }
.plan-card .amount b { font-size: 42px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.plan-card .amount span { font-size: 13px; color: var(--ink-soft); font-weight: 550; }
.plan-card .per { font-size: 13.5px; color: var(--ink-400); }
.plan-card .btn { margin-top: auto; width: 100%; justify-content: center; }
.plan-card .per + .btn { margin-top: 22px; }
.plan-card > .per { margin-bottom: 22px; }
.plan-annual { margin-top: 12px; font-size: 12.5px; text-align: center; }
.plan-annual a { color: var(--blue-deep); font-weight: 600; text-decoration: none; }
.plan-annual a:hover { text-decoration: underline; }
.plan-featured { border: 2px solid var(--blue); box-shadow: var(--shadow-float); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-aurora); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.plans-note { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--ink-soft); }
.plans-note a { color: var(--blue-deep); font-weight: 600; }
.price-included { max-width: 1020px; margin: 26px auto 0; background: var(--ice-050); border: 1px solid var(--ice-100); border-radius: 20px; padding: 26px 30px; }
.price-included h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-400); margin-bottom: 14px; }
.price-included ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.price-included li { display: flex; gap: 10px; font-size: 14px; font-weight: 550; color: var(--ink-700); }
.price-included .tick { color: var(--mint); font-weight: 800; }
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; }
  .plan-featured { order: -1; }
}
