/* Logistic Solutions Enterprise — scroll-flight landing page */

:root {
  --bg: #1a2332;
  --bg-soft: #222d42;
  --bg-card: #1e2a3d;
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, .72);
  --ink-muted: rgba(255, 255, 255, .45);
  --accent: #f59e0b;
  --accent-blue: #2563eb;
  --amber: #f59e0b;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- shared copy typography (used by both static + pinned modes) ---------- */
.lse-copy__num {
  font-family: ui-monospace, Menlo, monospace; font-size: .74rem;
  letter-spacing: .12em; color: var(--ink-soft);
}
.lse-copy__eyebrow {
  display: block; margin-top: 18px; font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lse-accent, var(--accent));
}
.lse-copy__title {
  font-family: var(--font-display); font-weight: 800; color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.04; margin: 12px 0 0; letter-spacing: -.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.lse-copy__body {
  margin-top: 18px; font-size: clamp(1rem, 1.25vw, 1.15rem); line-height: 1.6;
  color: var(--ink-soft); max-width: 42ch; text-shadow: 0 1px 14px rgba(0,0,0,.4);
}
.lse-copy__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; }
.lse-copy__tags li {
  font-size: .82rem; font-weight: 600; color: #fff; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px);
}
.lse-copy__contact { margin-top: 16px; font-size: 1rem; color: var(--ink); font-weight: 600; }
.lse-copy__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.lse-btn {
  text-decoration: none; font-weight: 700; font-size: .95rem; padding: 14px 26px; border-radius: 999px;
  transition: transform .2s, box-shadow .2s; display: inline-block; text-align: center;
}
.lse-btn--primary { color: #10151f; background: var(--accent); box-shadow: 0 8px 24px rgba(245,158,11,.28); }
.lse-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,158,11,.35); }
.lse-btn--ghost { color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.lse-btn--ghost:hover { transform: translateY(-2px); border-color: #fff; }

/* ================= STATIC / NO-JS / REDUCED-MOTION FALLBACK ================= */
.lse-static-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: clamp(24px, 6vw, 64px); background-size: cover; background-position: center 42%;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lse-static-section::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,35,50,.92) 0%, rgba(26,35,50,.6) 45%, rgba(26,35,50,.25) 100%);
}
.lse-static-copy { position: relative; width: min(46vw, 560px); z-index: 1; }
@media (max-width: 860px) {
  .lse-static-section::before { background: linear-gradient(0deg, rgba(26,35,50,.95) 15%, rgba(26,35,50,.55) 60%, rgba(26,35,50,.2) 100%); }
  .lse-static-copy { width: 100%; }
}
.lse-static-header {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(18px, 5vw, 64px); gap: 16px; background: var(--bg);
}
.lse-static-header img { height: 32px; width: auto; }
.lse-static-footer {
  position: relative; padding: 40px clamp(18px, 5vw, 64px) 56px; background: var(--bg-soft);
  color: var(--ink-soft); font-size: .85rem; display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
}
.lse-static-footer a { color: var(--ink); text-decoration: none; font-weight: 600; }

/* ================= ENHANCED CANVAS-DRIVEN MODE ================= */
.lse-root[hidden], [hidden] { display: none !important; }

.lse-canvas { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; display: none; }
.lse-active .lse-canvas { display: block; }
.lse-scrim {
  position: fixed; inset: 0; z-index: 5; pointer-events: none; display: none;
  background: linear-gradient(90deg, rgba(26,35,50,.9) 0%, rgba(26,35,50,.55) 32%, rgba(26,35,50,.15) 60%, transparent 100%);
}
.lse-active .lse-scrim { display: block; }

.lse-scrollbar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; background: rgba(255,255,255,.12); display: none; }
.lse-active .lse-scrollbar { display: block; }
.lse-scrollbar span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: var(--accent); }

.lse-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: none; align-items: center;
  justify-content: space-between; gap: 16px; padding: clamp(14px,2.4vw,24px) clamp(18px,5vw,64px);
}
.lse-active .lse-topbar { display: flex; }
.lse-brand { display: flex; align-items: center; text-decoration: none; }
.lse-brand__logo { height: 30px; width: auto; }
.lse-nav { display: flex; gap: 4px; padding: 5px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; }
.lse-nav__item { font: inherit; font-size: .8rem; color: var(--ink-soft); border: 0; background: transparent; cursor: pointer; padding: 7px 14px; border-radius: 999px; transition: color .25s, background .25s; white-space: nowrap; }
.lse-nav__item:hover { color: #fff; }
.lse-nav__item.is-active { color: #10151f; background: var(--accent); }
@media (max-width: 1000px) { .lse-nav { display: none; } }
.lse-topcta { text-decoration: none; font-weight: 700; font-size: .88rem; color: #10151f; background: var(--accent); padding: 10px 20px; border-radius: 999px; white-space: nowrap; }

.lse-copylayer { position: fixed; inset: 0; z-index: 20; pointer-events: none; }
.lse-copy {
  position: absolute; left: clamp(18px,5vw,64px); top: 50%; transform: translateY(-50%);
  width: min(42vw, 480px); opacity: 0; will-change: opacity, transform;
}
@media (max-width: 860px) {
  .lse-copy { left: clamp(18px,5vw,64px); right: clamp(18px,5vw,64px); top: auto;
    bottom: calc(clamp(64px,14vh,120px) + env(safe-area-inset-bottom)); transform: none; width: auto; max-width: 560px; }
  .lse-copy__title { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  .lse-copy__body { max-width: none; }
}

.lse-route { position: fixed; right: clamp(14px,2.4vw,30px); top: 50%; z-index: 40; transform: translateY(-50%); display: none; flex-direction: column; gap: 20px; padding: 18px 10px; }
.lse-active .lse-route { display: flex; }
.lse-route::before { content: ""; position: absolute; left: 60%; top: 20px; bottom: 20px; width: 2px; transform: translateX(-50%); background: var(--accent); opacity: .3; }
.lse-route__dot { position: relative; border: 0; background: transparent; cursor: pointer; width: 14px; height: 14px; display: grid; place-items: center; }
.lse-route__dot i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); transition: transform .3s, background .3s, box-shadow .3s; }
.lse-route__dot:hover i { transform: scale(1.25); background: var(--accent); }
.lse-route__dot.is-active i { background: var(--accent); transform: scale(1.4); box-shadow: 0 0 0 5px rgba(245,158,11,.22); }
.lse-route__label {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%) translateX(6px); white-space: nowrap;
  font-size: .78rem; font-weight: 600; color: #fff; background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
  padding: 5px 11px; border-radius: 999px; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.lse-route__dot:hover .lse-route__label, .lse-route__dot.is-active .lse-route__label { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 860px) { .lse-route { gap: 14px; right: 6px; } .lse-route__label { display: none; } }

.lse-hint {
  position: fixed; left: 50%; bottom: calc(26px + env(safe-area-inset-bottom)); z-index: 30; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 10px; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft); transition: opacity .3s;
}
.lse-active .lse-hint { display: flex; }
.lse-hint i { width: 22px; height: 34px; border-radius: 12px; border: 2px solid rgba(255,255,255,.35); position: relative; }
.lse-hint i::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 2px; background: var(--accent); transform: translateX(-50%); animation: lse-wheel 1.7s ease-in-out infinite; }
@keyframes lse-wheel { 0% { opacity: 0; top: 6px; } 40% { opacity: 1; } 100% { opacity: 0; top: 17px; } }

.lse-track { position: relative; z-index: 1; width: 100%; pointer-events: none; display: none; }
.lse-active .lse-track { display: block; }

@media (prefers-reduced-motion: reduce) {
  .lse-hint i::after { animation: none; }
}


/* ================= QUIÉNES SOMOS SECTION ================= */
.lse-about {
  position: relative; z-index: 10;
  background: var(--bg);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 64px);
}
.lse-about__inner {
  max-width: 1100px; margin: 0 auto;
}
.lse-about__header {
  margin-bottom: 64px;
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.lse-about__header.is-visible { opacity: 1; transform: none; }

.lse-about__eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.lse-about__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.08; letter-spacing: -.01em;
  margin: 0;
}
.lse-about__line {
  width: 60px; height: 3px; background: var(--accent); margin-top: 24px; border-radius: 2px;
}

.lse-about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 860px) {
  .lse-about__grid { grid-template-columns: 1fr; gap: 48px; }
}

.lse-about__text {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease .1s, transform .7s ease .1s;
}
.lse-about__text.is-visible { opacity: 1; transform: none; }
.lse-about__text p {
  font-size: clamp(.95rem, 1.1vw, 1.08rem); line-height: 1.7; color: var(--ink-soft);
  margin: 0 0 20px;
}
.lse-about__text p:last-child { margin-bottom: 0; }

.lse-about__values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 560px) {
  .lse-about__values { grid-template-columns: 1fr; }
}

.lse-value-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 28px 24px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, border-color .3s, box-shadow .3s;
}
.lse-value-card.is-visible { opacity: 1; transform: none; }
.lse-value-card:nth-child(2).is-visible { transition-delay: .06s; }
.lse-value-card:nth-child(3).is-visible { transition-delay: .12s; }
.lse-value-card:nth-child(4).is-visible { transition-delay: .18s; }
.lse-value-card:nth-child(5).is-visible { transition-delay: .24s; }
.lse-value-card:nth-child(6).is-visible { transition-delay: .30s; }
.lse-value-card:hover {
  border-color: rgba(245,158,11,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.lse-value-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(245,158,11,.12); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 16px;
}
.lse-value-card__icon--blue {
  background: rgba(37,99,235,.12); color: var(--accent-blue);
}
.lse-value-card h3 {
  font-size: .95rem; font-weight: 700; margin: 0 0 8px; color: var(--ink);
}
.lse-value-card p {
  font-size: .85rem; line-height: 1.5; color: var(--ink-soft); margin: 0;
}

.lse-about__cta-row {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 64px; justify-content: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease .2s, transform .6s ease .2s;
}
.lse-about__cta-row.is-visible { opacity: 1; transform: none; }


/* ================= FOOTER ================= */
.lse-footer {
  position: relative; z-index: 10;
  background: var(--bg-soft); border-top: 1px solid rgba(255,255,255,.06);
}
.lse-footer__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 64px clamp(24px, 5vw, 64px) 48px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 760px) {
  .lse-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .lse-footer__inner { grid-template-columns: 1fr; }
}
.lse-footer__logo { height: 32px; width: auto; margin-bottom: 12px; }
.lse-footer__tagline { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.lse-footer__col h4 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-muted); margin: 0 0 16px;
}
.lse-footer__col a {
  display: block; font-size: .9rem; color: var(--ink-soft); text-decoration: none;
  margin-bottom: 10px; transition: color .2s;
}
.lse-footer__col a:hover { color: var(--accent); }
.lse-footer__bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 64px); border-top: 1px solid rgba(255,255,255,.06);
  font-size: .8rem; color: var(--ink-muted);
}


/* ================= INTERNAL PAGES (shared) ================= */
.lse-page-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 64px); gap: 16px;
  background: rgba(26,35,50,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lse-page-header img { height: 30px; width: auto; }
.lse-page-header__back {
  font-size: .88rem; font-weight: 600; color: var(--ink-soft); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.lse-page-header__back:hover { color: var(--accent); }

.lse-page-hero {
  position: relative; padding: clamp(80px,14vw,160px) clamp(24px,5vw,64px) clamp(60px,10vw,100px);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.lse-page-hero::after {
  content: ""; position: absolute; top: -40%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
  pointer-events: none;
}
.lse-page-hero__inner { max-width: 700px; position: relative; z-index: 1; }
.lse-page-hero__eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.lse-page-hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; letter-spacing: -.01em;
  margin: 0 0 20px;
}
.lse-page-hero__body {
  font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.65; color: var(--ink-soft);
  max-width: 52ch; margin: 0;
}

/* ---- Form section ---- */
.lse-form-section {
  padding: clamp(60px,8vw,100px) clamp(24px,5vw,64px);
  background: var(--bg);
}
.lse-form-section__inner {
  max-width: 620px; margin: 0 auto;
}
.lse-form-section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.3rem; margin: 0 0 32px; text-align: center;
}

.lse-form { display: flex; flex-direction: column; gap: 20px; }
.lse-form__group { display: flex; flex-direction: column; gap: 6px; }
.lse-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .lse-form__row { grid-template-columns: 1fr; } }

.lse-form label {
  font-size: .82rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .02em;
}
.lse-form input, .lse-form textarea, .lse-form select {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: var(--bg-card); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 14px 16px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.lse-form input:focus, .lse-form textarea:focus, .lse-form select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.lse-form textarea { min-height: 120px; resize: vertical; }
.lse-form select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}

.lse-form__check {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 4px;
}
.lse-form__check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent);
  flex-shrink: 0;
}
.lse-form__check span { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }
.lse-form__check a { color: var(--accent); text-decoration: underline; }

.lse-form__submit {
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: #10151f; background: var(--accent); border: none; border-radius: 999px;
  padding: 16px 32px; cursor: pointer; align-self: center;
  box-shadow: 0 8px 24px rgba(245,158,11,.28);
  transition: transform .2s, box-shadow .2s;
}
.lse-form__submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,158,11,.35); }

/* ---- Legal pages ---- */
.lse-legal {
  padding: clamp(60px,8vw,100px) clamp(24px,5vw,64px);
  background: var(--bg);
}
.lse-legal__inner {
  max-width: 760px; margin: 0 auto;
}
.lse-legal__inner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 48px 0 16px; color: var(--ink);
}
.lse-legal__inner h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; margin: 36px 0 12px; color: var(--ink);
}
.lse-legal__inner h4 {
  font-weight: 700; font-size: 1rem; margin: 28px 0 10px; color: var(--accent);
}
.lse-legal__inner p {
  font-size: .95rem; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px;
}
.lse-legal__inner ul {
  padding-left: 20px; margin: 0 0 16px;
}
.lse-legal__inner li {
  font-size: .93rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 8px;
}
.lse-legal__inner em { color: var(--ink); font-style: italic; }
