@font-face {
  font-family: "Nasalization";
  src: url("../fonts/nasalization_rg.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --ink: #102F3A;
  --ink-2: #1D4856;
  --pink: #E9783A;
  --pink-2: #C85F2D;
  --cyan: #8FC7B8;
  --paper: #ffffff;
  --soft: #E8EFF3;
  --muted: #62737B;
  --line: rgba(16, 47, 58, 0.12);
  --shadow: 0 24px 70px rgba(16, 47, 58, 0.14);
  --radius: 28px;
  --container: 1120px;
  --app-background: #E8EFF3;
  --app-toolbar: #DCEAF0;
  --app-bottom-nav: #102F3A;
  --app-card: #FFFFFF;
  --app-webview: #DDE7EC;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nasalization", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(16, 47, 58, .90);
  backdrop-filter: blur(18px);
}
.nav { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 12px; }
.brand strong { display: block; font-size: 15px; line-height: 1.1; }
.brand small { display: block; color: rgba(255,255,255,.68); font-size: 11px; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 13px; font-weight: 650; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(233,120,58,.30), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(143,199,184,.22), transparent 28%),
    linear-gradient(135deg, #102F3A 0%, #1D4856 58%, #102F3A 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.hero-inner { position: relative; z-index: 1; min-height: 710px; padding: 96px 0 82px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 68px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); font-size: 12px; font-weight: 750; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 0 5px rgba(143,199,184,.14); }
h1 { margin: 23px 0 18px; max-width: 760px; font-size: clamp(42px, 6vw, 72px); letter-spacing: -.065em; line-height: .96; }
.hero-copy > p { margin: 0; max-width: 690px; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.8vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 0; border-radius: 14px; text-decoration: none; font-weight: 800; font-size: 14px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--pink); box-shadow: 0 12px 30px rgba(16,47,58,.22); }
.btn-secondary { color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.09); }
.btn-disabled { cursor: default; opacity: .78; }
.btn-disabled:hover { transform: none; }
.hero-note { margin-top: 22px !important; color: rgba(255,255,255,.56) !important; font-size: 12px !important; }

.phone-stage { position: relative; display: grid; place-items: center; min-height: 510px; }
.phone-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(233,120,58,.34), transparent 65%); filter: blur(10px); }
.phone {
  position: relative;
  width: min(330px, 82vw);
  aspect-ratio: 9 / 18.8;
  padding: 12px;
  border-radius: 44px;
  background: linear-gradient(145deg, #315561, #081A20 65%);
  box-shadow: 0 45px 80px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.2);
  transform: rotate(4deg);
}
.phone::before { content: ""; position: absolute; z-index: 3; top: 19px; left: 50%; transform: translateX(-50%); width: 34%; height: 23px; border-radius: 14px; background: #081A20; }
.phone-screen { height: 100%; overflow: hidden; border-radius: 34px; background: linear-gradient(180deg, #fff 0%, #E8EFF3 100%); color: var(--ink); }
.mock-top { height: 160px; padding: 44px 22px 22px; color: #fff; background: linear-gradient(145deg, var(--pink), #C85F2D); }
.mock-top small { opacity: .82; }
.mock-top strong { display: block; margin-top: 8px; font-size: 23px; line-height: 1.05; }
.mock-body { padding: 18px; }
.mock-card { padding: 16px; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 24px rgba(16,47,58,.08); }
.mock-card .label { color: var(--muted); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.mock-card .value { margin-top: 4px; font-size: 21px; font-weight: 850; }
.mock-chart { display: flex; align-items: end; gap: 5px; height: 82px; margin-top: 13px; }
.mock-chart i { flex: 1; min-height: 12px; border-radius: 6px 6px 2px 2px; background: linear-gradient(var(--pink), #C85F2D); }
.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.section { padding: 94px 0; }
.section-soft { background: var(--app-background); }
.section-dark { color: #fff; background: var(--app-bottom-nav); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.kicker { color: var(--pink-2); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.section h2, .legal-hero h1 { margin: 10px 0 14px; font-size: clamp(30px, 4.3vw, 48px); letter-spacing: -.05em; line-height: 1.04; }
.section-head p { margin: 0; color: var(--muted); font-size: 16px; }
.section-dark .section-head p { color: rgba(255,255,255,.68); }

.notice { margin-top: -38px; position: relative; z-index: 4; }
.notice-card { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 24px 28px; border: 1px solid rgba(233,120,58,.22); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.notice-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; color: var(--pink-2); background: rgba(233,120,58,.12); font-size: 22px; font-weight: 900; }
.notice-card strong { display: block; margin-bottom: 4px; }
.notice-card p { margin: 0; color: var(--muted); font-size: 13px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 16px 34px rgba(16,47,58,.07); }
.feature-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px; border-radius: 14px; color: var(--pink-2); background: rgba(233,120,58,.12); font-size: 21px; font-weight: 900; }
.feature h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.feature p { margin: 0; color: var(--muted); font-size: 13px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.shot { appearance: none; border: 0; padding: 0; text-align: inherit; position: relative; overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 18px 44px rgba(16,47,58,.16); cursor: zoom-in; }
.shot img { width: 100%; aspect-ratio: 9/18.8; object-fit: cover; transition: transform .25s ease; }
.shot:hover img { transform: scale(1.025); }
.shot span { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 8px 10px; border-radius: 11px; background: rgba(16,47,58,.80); backdrop-filter: blur(10px); color: #fff; font-size: 11px; font-weight: 700; text-align: center; }

.details-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.detail { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.detail small { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.detail strong { display: block; margin-top: 8px; font-size: 16px; }
.sources { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.source-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; text-decoration: none; background: rgba(255,255,255,.06); }
.source-link:hover { background: rgba(255,255,255,.10); }
.source-link span { color: rgba(255,255,255,.64); font-size: 12px; }

.footer { padding: 38px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 10px; }
.footer-brand strong { display: block; font-size: 13px; }
.footer-brand small { display: block; color: var(--muted); font-size: 11px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 700; }
.footer-links a:hover { color: var(--pink-2); }
.copyright { color: var(--muted); font-size: 12px; }

/* Legal pages */
.legal-page { background: #fff; }
.legal-header { background: rgba(16,47,58,.96); }
.legal-hero { padding: 82px 0 62px; color: #fff; background: linear-gradient(140deg, #102F3A, #1D4856); }
.legal-hero-inner { display: grid; grid-template-columns: 78px 1fr; gap: 24px; align-items: start; }
.legal-hero img { width: 78px; height: 78px; border-radius: 22px; }
.legal-hero .pill { display: inline-flex; padding: 6px 11px; border-radius: 999px; color: #fff; background: rgba(233,120,58,.20); font-size: 11px; font-weight: 800; }
.legal-hero h1 { font-size: clamp(34px, 5vw, 54px); }
.legal-hero p { max-width: 700px; margin: 0; color: rgba(255,255,255,.7); font-size: 15px; }
.updated { margin-top: 15px !important; color: rgba(255,255,255,.9) !important; font-size: 13px !important; font-weight: 750; }
.legal-wrap { width: min(840px, calc(100% - 40px)); margin: 0 auto; padding: 58px 0 82px; }
.legal-highlight { margin-bottom: 42px; padding: 24px 26px; border: 1px solid rgba(233,120,58,.24); border-left: 4px solid var(--pink); border-radius: 0 18px 18px 0; background: rgba(233,120,58,.08); }
.legal-highlight p { margin: 0; font-weight: 650; }
.legal-block { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-block:last-child { border-bottom: 0; }
.legal-block h2 { margin: 0 0 13px; font-size: clamp(20px, 2.6vw, 25px); letter-spacing: -.035em; line-height: 1.2; }
.legal-block h3 { margin: 22px 0 8px; font-size: 15px; }
.legal-block p, .legal-block li { color: #465A63; font-size: 14px; }
.legal-block p { margin: 0 0 12px; }
.legal-block ul, .legal-block ol { padding-left: 22px; }
.legal-block li { margin: 8px 0; }
.legal-block a { color: #B95428; font-weight: 750; }
.contact-box { padding: 20px 22px; border-radius: 16px; background: var(--app-background); }
.contact-box p { margin: 0; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(5,20,25,.92); }
.lightbox.open { display: grid; }
.lightbox img { max-height: 90vh; width: auto; border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox button { position: fixed; top: 18px; right: 20px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; color: #fff; background: rgba(255,255,255,.1); font-size: 25px; cursor: pointer; }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; padding-top: 78px; }
  .phone-stage { min-height: 440px; }
  .phone { width: 280px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container, .legal-wrap { width: min(100% - 28px, var(--container)); }
  .nav { min-height: 62px; }
  .nav-links a:not(:last-child) { display: none; }
  .hero-inner { min-height: auto; padding: 68px 0 74px; }
  h1 { font-size: clamp(38px, 13vw, 56px); }
  .phone-stage { min-height: 400px; }
  .notice { margin-top: -26px; }
  .notice-card { grid-template-columns: 1fr; padding: 22px; }
  .section { padding: 72px 0; }
  .features, .details-grid, .sources { grid-template-columns: 1fr; }
  .gallery { gap: 12px; }
  .shot { border-radius: 18px; }
  .legal-hero { padding: 58px 0 44px; }
  .legal-hero-inner { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* MI TRANVÍA TF SMALL TEXT BOOST START
   Nasalization tiene trazos finos en cuerpos pequeños. Se aumenta de forma
   homogénea toda la tipografía auxiliar y los textos descriptivos pequeños.
*/

/* Navegación, etiquetas y textos auxiliares */
.brand small {
  font-size: 11px;
}

.nav-links a {
  font-size: 12px;
}

.eyebrow {
  font-size: 11.5px;
}

.hero-note {
  font-size: 12.5px !important;
  line-height: 1.65;
}

.kicker {
  font-size: 11.5px;
}

.shot span {
  font-size: 11.5px;
}

.detail small {
  font-size: 10.5px;
}

.source-link {
  font-size: 13px;
}

.source-link span {
  font-size: 11.5px;
}

.footer-brand strong {
  font-size: 13px;
}

.footer-brand small,
.footer-links a,
.copyright {
  font-size: 11.5px;
}

.legal-hero .pill {
  font-size: 10.5px;
}

.updated {
  font-size: 11.5px !important;
}

/* Botones */
.btn {
  font-size: 12.5px;
}

/* Párrafos descriptivos que habían quedado demasiado pequeños */
.notice-card p {
  font-size: 13.5px;
  line-height: 1.7;
}

.section-head p {
  font-size: 13.5px;
  line-height: 1.72;
}

.feature p {
  font-size: 12.5px;
  line-height: 1.7;
}

.legal-hero p {
  font-size: 13px;
  line-height: 1.7;
}

.legal-highlight p {
  font-size: 13.5px;
  line-height: 1.75;
}

.legal-block p,
.legal-block li {
  font-size: 13.5px;
  line-height: 1.75;
}

/* En móvil no se reducen por debajo de un tamaño cómodo de lectura */
@media (max-width: 680px) {
  .nav-links a {
    font-size: 11.5px;
  }

  .eyebrow,
  .kicker,
  .shot span,
  .footer-brand small,
  .footer-links a,
  .copyright {
    font-size: 11px;
  }

  .hero-note,
  .feature p {
    font-size: 12px !important;
  }

  .notice-card p,
  .section-head p,
  .legal-hero p,
  .legal-highlight p,
  .legal-block p,
  .legal-block li {
    font-size: 12.5px;
  }

  .btn {
    font-size: 12px;
  }
}
/* MI TRANVÍA TF SMALL TEXT BOOST END */

