:root {
  --color-primary: #00AEEF;
  --color-secondary: #0B1320;
  --color-accent: #FF7A00;
  --color-light: #FFFFFF;
  --color-muted: #F4F6F8;
  --color-text: #1E1E1E;
  --color-gray: #6B7280;
  --line: #DDE4ED;
  --shadow: 0 22px 60px rgba(11, 19, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    linear-gradient(180deg, var(--color-light), #EEF3F8 42%, var(--color-light));
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 19, 32, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 19, 32, 0.98);
  box-shadow: 0 16px 36px rgba(11, 19, 32, 0.18);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--color-light);
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 178px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-menu a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.is-active {
  color: var(--color-light);
  transform: translateY(-1px);
}

.nav-menu a.is-active {
  position: relative;
}

.nav-menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
}

.nav-cta {
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 8px;
  color: var(--color-light) !important;
  background: var(--color-accent);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 100px 0;
}

.section-dark {
  color: var(--color-light);
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 174, 239, 0.22), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(255, 122, 0, 0.14), transparent 28%),
    linear-gradient(135deg, #0B1320 0%, #101d31 100%);
}

.section-muted {
  background: var(--color-muted);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  color: var(--color-light);
  font-size: clamp(2.75rem, 6vw, 5.4rem);
  font-weight: 900;
}

h2 {
  color: var(--color-secondary);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
}

.section-dark h2,
.section-dark .lead,
.section-dark .hero-description {
  color: var(--color-light);
}

h3 {
  color: var(--color-secondary);
  font-size: 1.12rem;
  font-weight: 900;
}

p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.75;
}

.section-dark p,
.section-dark small {
  color: rgba(255, 255, 255, 0.76);
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-description {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.78;
}

.btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-light);
  background:
    linear-gradient(135deg, var(--color-primary), #008DD0);
  box-shadow: 0 14px 28px rgba(0, 174, 239, 0.24);
}

.btn-secondary {
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 154px 0 98px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 19, 32, 0.98) 0%, rgba(11, 19, 32, 0.88) 46%, rgba(11, 19, 32, 0.62) 100%),
    url("../img/hero-bus-web.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(11, 19, 32, 0.94));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.screen-frame {
  position: absolute;
  right: max(40px, calc((100vw - 1180px) / 2));
  bottom: 70px;
  width: min(460px, 42vw);
  min-height: 420px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.route-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--color-light);
  background: rgba(0, 174, 239, 0.18);
  font-size: 0.8rem;
  font-weight: 900;
}

.ad-screen {
  display: grid;
  place-items: center;
  min-height: 230px;
  border-radius: 8px;
  color: var(--color-light);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.95), rgba(255, 122, 0, 0.9)),
    url("../img/pantalla-transporte.jpg") center / cover;
}

.ad-screen span {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ad-screen strong {
  font-size: 4rem;
  line-height: 1;
}

.media-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.media-row span {
  padding: 12px 8px;
  border-radius: 8px;
  color: var(--color-light);
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-link:hover,
.hero-link:focus {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.premium-video-card {
  transform: translateY(0);
}

.hero-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #07101d;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.hero-video-shell video,
.video-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 25, 0.08), rgba(7, 14, 25, 0.72)),
    radial-gradient(circle at 20% 16%, rgba(0, 174, 239, 0.28), transparent 24%);
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: var(--color-light);
}

.hero-video-overlay span,
.video-feature-copy span {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--color-light);
  background: rgba(0, 174, 239, 0.22);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-video-overlay strong {
  max-width: 280px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}

.video-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--color-secondary);
  background: var(--color-light);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.28), transparent 38%, rgba(255, 122, 0, 0.18));
}

.device-mockup {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #070E19;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.device-topbar,
.playback-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
}

.device-topbar strong {
  color: var(--color-primary);
}

.mock-screen {
  position: relative;
  display: grid;
  min-height: 260px;
  padding: 28px;
  align-content: end;
  overflow: hidden;
  color: var(--color-light);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.88), rgba(255, 122, 0, 0.88)),
    url("../img/pantalla-transporte-web.jpg") center / cover;
}

.mock-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(7, 14, 25, 0.74)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 28%);
}

.mock-screen > * {
  position: relative;
  z-index: 1;
}

.mock-label {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 19, 32, 0.7);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-screen strong {
  max-width: 280px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.mock-screen p {
  max-width: 260px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.mock-qr {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 10px);
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: var(--color-light);
}

.mock-qr span:nth-child(odd) {
  background: var(--color-secondary);
}

.mock-qr span:nth-child(even) {
  background: var(--color-primary);
}

.mock-qr span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.playback-row {
  background: rgba(255, 255, 255, 0.05);
}

.playback-row span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 8px rgba(255, 122, 0, 0.14);
}

.playback-row em {
  color: var(--color-light);
  font-style: normal;
}

.hero-logo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.hero-stats {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hero-stats article {
  padding: 16px;
  border-radius: 8px;
  background: var(--color-light);
}

.hero-stats strong {
  display: block;
  color: var(--color-secondary);
  font-size: 1.35rem;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.split-layout,
.coverage-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 54px;
  align-items: center;
}

.section-copy {
  max-width: 760px;
}

.section-copy p {
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.visual-card,
.contact-form {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--color-light);
}

.pulse-dot {
  width: 16px;
  height: 16px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 12px rgba(0, 174, 239, 0.14);
}

.pulse-dot.orange {
  background: var(--color-accent);
  box-shadow: 0 0 0 12px rgba(255, 122, 0, 0.14);
}

.highlight-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.highlight-list span {
  position: relative;
  display: block;
  padding: 15px 16px 15px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--color-secondary);
  background: var(--color-muted);
  font-weight: 900;
}

.highlight-list span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: translateY(-50%);
}

.mission-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 174, 239, 0.09), transparent 28%),
    linear-gradient(180deg, var(--color-light), #F5F8FC);
}

.mission-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.mission-intro {
  max-width: 560px;
}

.mission-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.mission-intro p {
  margin: 16px 0 0;
  color: var(--color-gray);
  line-height: 1.7;
}

.mission-menu {
  display: grid;
  gap: 12px;
}

.mission-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--color-light), #F8FAFC);
  box-shadow: 0 16px 38px rgba(11, 19, 32, 0.09);
  overflow: hidden;
}

.mission-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 18px 20px;
  color: var(--color-secondary);
  cursor: pointer;
  list-style: none;
}

.mission-item summary::-webkit-details-marker {
  display: none;
}

.mission-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--color-light);
  background: var(--color-primary);
  font-weight: 900;
}

.mission-item[open] summary::after {
  content: "-";
  background: var(--color-accent);
}

.mission-item summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--color-light);
  background: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 900;
}

.mission-item:nth-child(2) summary span {
  background: var(--color-accent);
}

.mission-item summary strong {
  color: var(--color-secondary);
  font-size: 1.08rem;
  font-weight: 900;
}

.mission-item p {
  margin: 0;
  padding: 0 20px 22px 76px;
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.68;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 820px;
  margin: 18px 0 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.benefit-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--color-light), #F8FAFC);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.info-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 174, 239, 0.36);
  box-shadow: 0 18px 42px rgba(11, 19, 32, 0.12);
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.12), rgba(255, 122, 0, 0.1)),
    var(--color-light);
  box-shadow: 0 18px 44px rgba(11, 19, 32, 0.1);
}

.inline-cta span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-cta strong {
  display: block;
  max-width: 720px;
  color: var(--color-secondary);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.inline-cta .btn {
  flex: 0 0 auto;
}

.campaign-options-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 122, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #F8FBFD, var(--color-light));
}

.campaign-options-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.campaign-option {
  position: relative;
  display: grid;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--color-light), #F8FAFC);
  box-shadow: 0 18px 42px rgba(11, 19, 32, 0.09);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.campaign-option::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.1);
}

.campaign-option:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 174, 239, 0.35);
  box-shadow: 0 24px 52px rgba(11, 19, 32, 0.13);
}

.campaign-option span {
  width: fit-content;
  margin-bottom: 26px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--color-light);
  background: var(--color-secondary);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-option h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.campaign-option p {
  margin: 14px 0 22px;
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

.campaign-option a {
  position: relative;
  z-index: 1;
  align-self: end;
  width: fit-content;
  color: var(--color-primary);
  font-weight: 900;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--color-light);
  background:
    linear-gradient(135deg, var(--color-secondary), #17345C);
  font-weight: 900;
}

.card-icon svg,
.benefit-icon svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--color-light);
  background:
    linear-gradient(135deg, var(--color-primary), var(--color-accent));
  font-size: 0.86rem;
  font-weight: 900;
}

.showcase-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.showcase-section .container {
  position: relative;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.video-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #07101d;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
}

.video-player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.video-feature-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.video-feature-copy h3 {
  color: var(--color-light);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.video-feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.video-feature-copy .btn {
  width: fit-content;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 174, 239, 0.11), transparent 28%),
    linear-gradient(180deg, var(--color-light), #F4F8FB);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07101d;
  box-shadow: 0 18px 46px rgba(11, 19, 32, 0.13);
  isolation: isolate;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(7, 14, 25, 0.86)),
    radial-gradient(circle at 18% 18%, rgba(0, 174, 239, 0.22), transparent 30%);
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--color-light);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.campaign-mockup {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

.mockup-screen {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: 26px;
  align-content: end;
  overflow: hidden;
  color: var(--color-light);
}

.mockup-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(180deg, transparent 12%, rgba(7, 14, 25, 0.72));
}

.mockup-screen > * {
  position: relative;
  z-index: 1;
}

.mockup-screen.promo {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.88), rgba(0, 174, 239, 0.78)),
    url("../img/placeholder-web.jpg") center / cover;
}

.mockup-screen.qr {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.9), rgba(11, 19, 32, 0.86)),
    url("../img/pantalla-transporte-web.jpg") center / cover;
}

.mockup-screen.report {
  background:
    linear-gradient(135deg, rgba(11, 19, 32, 0.96), rgba(255, 122, 0, 0.74)),
    url("../img/hero-bus-web.jpg") center / cover;
}

.mockup-screen span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 19, 32, 0.62);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mockup-screen strong {
  max-width: 310px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.mockup-screen p {
  max-width: 250px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.mockup-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 900;
}

.mini-qr {
  width: 96px;
  height: 96px;
  margin-top: 22px;
  border: 10px solid var(--color-light);
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--color-secondary) 10px, transparent 10px) 0 0 / 20px 20px,
    linear-gradient(var(--color-secondary) 10px, transparent 10px) 0 0 / 20px 20px,
    var(--color-light);
}

.report-lines {
  display: grid;
  gap: 10px;
  width: min(250px, 100%);
  margin-top: 22px;
}

.report-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.report-lines i:nth-child(2) {
  width: 72%;
  background: var(--color-primary);
}

.report-lines i:nth-child(3) {
  width: 48%;
  background: var(--color-accent);
}

.ideal-section {
  background:
    linear-gradient(180deg, var(--color-light), #EDF4FA);
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ideal-card {
  min-height: 246px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--color-light);
  box-shadow: 0 14px 34px rgba(11, 19, 32, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ideal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.36);
  box-shadow: 0 20px 42px rgba(11, 19, 32, 0.12);
}

.ideal-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.ideal-card h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.ideal-card p {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.62;
}

.info-card p,
.benefit-card p,
.step p {
  margin: 12px 0 0;
  font-size: 0.94rem;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 52px;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  opacity: 0.35;
}

.step {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--color-light), #F8FBFD);
  box-shadow: 0 16px 38px rgba(11, 19, 32, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 174, 239, 0.36);
  box-shadow: 0 24px 50px rgba(11, 19, 32, 0.12);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--color-light);
  background:
    linear-gradient(135deg, var(--color-primary), var(--color-accent));
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 0 0 10px rgba(0, 174, 239, 0.1);
}

.trust-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 122, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #F4F8FB, var(--color-light));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--color-light), #F8FBFD);
  box-shadow: 0 16px 38px rgba(11, 19, 32, 0.08);
  overflow: hidden;
}

.trust-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.12);
}

.trust-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--color-light);
  background: var(--color-secondary);
  font-size: 0.86rem;
  font-weight: 900;
}

.trust-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.trust-card p {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

.coverage {
  padding: 96px 0;
}

.coverage small {
  display: block;
  margin-top: 24px;
  line-height: 1.65;
}

.coverage-visual {
  display: grid;
  gap: 20px;
}

.route-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 174, 239, 0.2), transparent 26%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.route-band::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  opacity: 0.82;
}

.route-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.route-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--color-light);
  background: rgba(11, 19, 32, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  text-align: center;
}

.route-node::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 8px rgba(255, 122, 0, 0.12);
}

.route-node.main {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.92), rgba(0, 120, 188, 0.92));
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tech-list span {
  position: relative;
  min-height: 64px;
  padding: 20px 20px 20px 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--color-light);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.tech-list span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 8px rgba(255, 122, 0, 0.14);
  transform: translateY(-50%);
}

.tech-list span {
  color: var(--color-secondary);
  border-color: var(--line);
  background:
    linear-gradient(180deg, var(--color-light), #F8FAFC);
  box-shadow: 0 14px 34px rgba(11, 19, 32, 0.07);
}

.tech-list span::before {
  background: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(0, 174, 239, 0.12);
}

.social-section {
  background:
    linear-gradient(90deg, rgba(0, 174, 239, 0.08), transparent 40%),
    var(--color-light);
}

.impact-card {
  border-color: rgba(255, 122, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(0, 174, 239, 0.08)),
    var(--color-light);
}

.impact-card h3 {
  font-size: clamp(1.42rem, 3vw, 2.3rem);
  line-height: 1.12;
}

.faq-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 174, 239, 0.12), transparent 28%),
    linear-gradient(180deg, var(--color-light), #F4F8FB);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--color-light);
  box-shadow: 0 16px 40px rgba(11, 19, 32, 0.08);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 20px 58px 20px 22px;
  color: var(--color-secondary);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--color-light);
  background: var(--color-primary);
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary::after {
  background: var(--color-accent);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-gray);
  line-height: 1.7;
}

.closing-cta {
  padding: 86px 0;
  text-align: center;
}

.closing-cta .container {
  max-width: 860px;
}

.closing-cta p {
  max-width: 640px;
  margin: 20px auto 0;
}

.closing-cta .btn {
  margin-top: 30px;
}

.contact-section {
  padding: 102px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 174, 239, 0.14), transparent 28%),
    linear-gradient(135deg, #07101d, #0B1320 58%, #10223A);
}

.whatsapp-btn {
  margin-top: 28px;
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.contact-assurance {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-assurance article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-assurance span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--color-light);
  background: rgba(255, 122, 0, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-assurance strong {
  color: var(--color-light);
}

.contact-assurance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social {
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--color-light);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 239, 0.45);
  background: rgba(0, 174, 239, 0.14);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, var(--color-light), #F8FBFD);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-extra {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(255, 122, 0, 0.06)),
    #FFFFFF;
}

.form-extra p {
  margin: 0 0 14px;
  color: var(--color-secondary);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-extra summary {
  color: var(--color-secondary);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  list-style: none;
}

.form-extra summary::-webkit-details-marker {
  display: none;
}

.form-extra summary::after {
  content: "+";
  float: right;
  color: var(--color-primary);
  font-size: 1.05rem;
  line-height: 1;
}

.form-extra[open] summary {
  margin-bottom: 14px;
}

.form-extra[open] summary::after {
  content: "-";
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-secondary);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--color-text);
  background: var(--color-muted);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-light);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.16);
}

.contact-form > label {
  margin-top: 16px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 12px 0 0;
  color: var(--color-gray);
  font-size: 0.8rem;
  text-align: center;
}

.privacy-note {
  margin: 10px 0 0;
  color: var(--color-gray);
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: center;
}

.privacy-note a,
.footer-links a {
  color: var(--color-primary);
  font-weight: 900;
}

.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-alert[hidden] {
  display: none;
}

.form-alert.success {
  color: #0b5c3c;
  background: #DDF7EB;
}

.form-alert.error {
  color: #7a1b1b;
  background: #FFE2E2;
}

.field-error {
  border-color: #E03131 !important;
  box-shadow: 0 0 0 4px rgba(224, 49, 49, 0.12) !important;
}

.contact-form.is-sending {
  opacity: 0.72;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--color-light);
  background:
    linear-gradient(135deg, #18B85A, #0D8E43);
  box-shadow: 0 18px 42px rgba(13, 142, 67, 0.32);
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(13, 142, 67, 0.38);
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #07101d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.35fr));
  align-items: start;
  gap: 24px;
}

.footer-about {
  display: grid;
  gap: 16px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  color: var(--color-light);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--color-primary);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.legal-page {
  padding: 140px 0 90px;
  background:
    linear-gradient(180deg, #0B1320 0, #101D31 360px, var(--color-muted) 360px);
}

.legal-card {
  max-width: 920px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--color-light);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  color: var(--color-secondary);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-card p,
.legal-card li {
  color: var(--color-gray);
  line-height: 1.75;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-actions {
  margin-top: 34px;
}

.thanks-page {
  min-height: 72vh;
}

.thanks-card {
  position: relative;
  max-width: 900px;
  overflow: hidden;
}

.thanks-card::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 0 14px rgba(0, 174, 239, 0.1);
}

.thanks-card h1 {
  max-width: 660px;
}

.thanks-card p {
  max-width: 680px;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.thanks-next {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--color-muted);
}

.thanks-next strong {
  color: var(--color-secondary);
}

.thanks-next a {
  width: fit-content;
  color: var(--color-primary);
  font-weight: 900;
}

.landing-compact .gallery-section,
.landing-compact .trust-section,
.landing-compact .campaign-options-section,
.landing-compact .ideal-section,
.landing-compact .social-section,
.landing-compact #video-demo .mockup-grid {
  display: none;
}

.landing-compact .services-grid article:nth-child(n+4),
.landing-compact .benefits-grid article:nth-child(n+4),
.landing-compact #tecnologia .tech-list span:nth-child(n+5) {
  display: none;
}

.landing-compact #servicios .section-heading,
.landing-compact #beneficios .section-heading,
.landing-compact #tecnologia .section-copy {
  max-width: 760px;
}

.landing-compact #servicios .section-heading::after {
  content: "Pantallas digitales, audio, video, QR y reportes en una vista breve. El detalle completo vive en Servicios.";
  display: block;
  max-width: 760px;
  margin-top: 16px;
  color: var(--color-gray);
  font-size: 1.04rem;
  line-height: 1.7;
}

.cta-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.inline-cta .cta-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.section-actions .btn,
.cta-actions .btn {
  min-width: 190px;
}

.detail-page {
  background: var(--color-muted);
}

.detail-hero {
  padding: 148px 0 78px;
  background:
    linear-gradient(90deg, rgba(11, 19, 32, 0.98), rgba(11, 19, 32, 0.78)),
    url("../img/hero-bus-web.jpg") center/cover no-repeat;
}

.detail-hero .container {
  max-width: 980px;
}

.detail-hero h1 {
  max-width: 880px;
}

.detail-hero p {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.detail-section {
  padding: 78px 0;
}

.detail-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--color-light);
  box-shadow: 0 18px 44px rgba(11, 19, 32, 0.1);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.detail-list span {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #F8FAFC;
  color: var(--color-secondary);
  font-weight: 900;
}

.detail-list span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-primary);
  transform: translateY(-50%);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(11, 19, 32, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-menu a.is-active::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 34px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-grid,
  .split-layout,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .screen-frame {
    opacity: 0.18;
    right: 24px;
    width: 440px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .video-feature {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-shell {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ideal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-band::before {
    top: 28px;
    bottom: 28px;
    left: 50%;
    right: auto;
    width: 4px;
    height: auto;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    width: 132px;
    max-height: 42px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-menu {
    top: 70px;
    left: 12px;
    right: 12px;
    padding: 8px;
  }

  .nav-menu a {
    min-height: 42px;
    padding: 11px 12px;
  }

  .section,
  .contact-section {
    padding: 40px 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading p,
  .section-copy p {
    margin-top: 10px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 2.95rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.58rem, 8vw, 2.18rem);
    line-height: 1.05;
  }

  h3 {
    font-size: 1rem;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 0.68rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero {
    min-height: auto;
    padding: 78px 0 34px;
  }

  .hero-grid {
    gap: 20px;
  }

  .lead {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-description {
    margin-top: 9px;
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .hero-panel {
    padding: 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }

  .hero-stats article {
    padding: 9px 7px;
  }

  .hero-stats strong {
    font-size: 0.86rem;
  }

  .hero-stats span {
    display: none;
  }

  .hero-video-overlay {
    left: 12px;
    bottom: 12px;
  }

  .hero-video-overlay strong {
    font-size: 1.35rem;
  }

  .hero-video-overlay span {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .video-chip {
    top: 10px;
    right: 10px;
    min-height: 34px;
    padding: 8px 10px;
  }

  .screen-frame {
    display: none;
  }

  .hero-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-hero {
    padding: 98px 0 48px;
  }

  .detail-section {
    padding: 46px 0;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-panel {
    padding: 16px;
  }

  .detail-list {
    gap: 9px;
    margin-top: 16px;
  }

  .detail-list span {
    padding: 12px 12px 12px 36px;
    font-size: 0.9rem;
  }

  .detail-list span::before {
    left: 14px;
    width: 8px;
    height: 8px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 18px;
  }

  .hero-actions .btn-primary {
    grid-column: 1 / -1;
  }

  .hero-actions .btn,
  .hero-actions .hero-link {
    width: 100%;
  }

  .hero-link {
    justify-content: center;
    min-height: 44px;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    font-size: 0.86rem;
  }

  .btn,
  .whatsapp-btn {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .cta-actions,
  .section-actions {
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }

  .inline-cta .cta-actions {
    width: 100%;
    margin-top: 0;
  }

  .section-actions .btn,
  .cta-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .split-layout,
  .coverage-grid,
  .contact-grid,
  .faq-layout {
    gap: 24px;
  }

  .showcase-section,
  .coverage {
    padding: 46px 0;
  }

  .showcase-section .section-heading p {
    margin-top: 10px;
  }

  .video-feature-copy {
    gap: 12px;
  }

  .video-feature-copy h3 {
    font-size: 1.2rem;
  }

  .video-feature-copy p {
    line-height: 1.5;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .highlight-list {
    gap: 9px;
    margin-top: 18px;
  }

  .highlight-list span {
    min-height: 42px;
    padding: 11px 12px 11px 36px;
    font-size: 0.9rem;
  }

  .highlight-list span::before {
    left: 14px;
    width: 8px;
    height: 8px;
  }

  .mission-section {
    padding: 40px 0;
  }

  .mission-shell {
    gap: 18px;
  }

  .mission-intro h2 {
    font-size: 1.45rem;
  }

  .mission-intro p {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .mission-menu {
    gap: 10px;
  }

  .mission-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 26px;
    gap: 10px;
    min-height: 60px;
    padding: 12px;
  }

  .mission-item summary span {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .mission-item summary strong {
    font-size: 0.95rem;
  }

  .mission-item summary::after {
    width: 26px;
    height: 26px;
  }

  .mission-item p {
    padding: 0 12px 14px 56px;
    font-size: 0.86rem;
    line-height: 1.56;
  }

  .tech-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tech-list span {
    min-height: 48px;
    padding: 12px 12px 12px 34px;
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .tech-list span::before {
    left: 13px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 5px rgba(0, 174, 239, 0.12);
  }

  .card-grid,
  .steps,
  .trust-grid,
  .campaign-options-grid,
  .gallery-grid,
  .ideal-grid,
  .mockup-grid,
  .contact-assurance {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(236px, 78%);
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -12px;
    padding: 2px 12px 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .card-grid::-webkit-scrollbar,
  .steps::-webkit-scrollbar,
  .trust-grid::-webkit-scrollbar,
  .campaign-options-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .ideal-grid::-webkit-scrollbar,
  .mockup-grid::-webkit-scrollbar,
  .contact-assurance::-webkit-scrollbar {
    display: none;
  }

  .card-grid > *,
  .steps > *,
  .trust-grid > *,
  .campaign-options-grid > *,
  .gallery-grid > *,
  .ideal-grid > *,
  .mockup-grid > *,
  .contact-assurance > * {
    scroll-snap-align: start;
  }

  .campaign-options-grid {
    grid-auto-columns: minmax(248px, 80%);
  }

  .campaign-option {
    min-height: auto;
    padding: 18px;
  }

  .campaign-option span {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .campaign-option strong {
    font-size: 1.12rem;
  }

  .campaign-option p {
    margin-top: 10px;
  }

  .gallery-grid {
    grid-auto-columns: minmax(250px, 82%);
  }

  .gallery-card {
    min-height: 190px;
  }

  .thanks-card::before {
    display: none;
  }

  .thanks-actions .btn {
    width: 100%;
  }

  .steps::before {
    display: none;
  }

  .video-feature-copy {
    padding: 18px;
  }

  .video-feature {
    gap: 14px;
    margin-bottom: 18px;
  }

  .video-feature-copy .btn {
    width: 100%;
  }

  .inline-cta .btn {
    width: 100%;
  }

  .inline-cta {
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
  }

  .inline-cta strong {
    font-size: 1.05rem;
  }

  .route-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
  }

  .route-band::before {
    left: 18px;
    right: 18px;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 3px;
  }

  .route-node {
    justify-content: center;
    min-height: 42px;
    padding: 10px;
    font-size: 0.82rem;
  }

  .route-node::before {
    width: 9px;
    height: 9px;
    margin-right: 8px;
  }

  .mock-screen {
    min-height: 210px;
    padding: 18px;
  }

  .mock-qr {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .mockup-screen {
    min-height: 200px;
  }

  .ideal-card {
    min-height: auto;
    padding: 20px;
  }

  .faq-list summary {
    min-height: 50px;
    padding: 13px 48px 13px 14px;
    font-size: 0.88rem;
  }

  .faq-list summary::after {
    right: 14px;
    width: 26px;
    height: 26px;
  }

  .faq-list p {
    padding: 0 14px 14px;
    line-height: 1.5;
  }

  .info-card,
  .benefit-card,
  .step {
    min-height: auto;
    padding: 18px;
  }

  .card-icon,
  .benefit-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .step span,
  .trust-card span {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .trust-card {
    min-height: auto;
    padding: 18px;
  }

  .visual-card,
  .contact-form {
    padding: 16px;
  }

  .contact-section {
    padding-bottom: 78px;
  }

  .closing-cta {
    padding: 48px 0;
  }

  .closing-cta p {
    margin-top: 12px;
  }

  .closing-cta .btn {
    margin-top: 20px;
  }

  .contact-assurance {
    margin-top: 18px;
  }

  .contact-assurance article {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px;
  }

  .contact-assurance p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  input,
  select,
  textarea {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 0.9rem;
  }

  .form-extra {
    padding: 12px;
    margin-top: 12px;
  }

  .form-extra summary {
    font-size: 0.82rem;
  }

  .form-extra[open] summary {
    margin-bottom: 10px;
  }

  label {
    gap: 6px;
    font-size: 0.8rem;
  }

  .form-grid {
    gap: 10px;
  }

  .contact-form > label {
    margin-top: 12px;
  }

  .contact-form .btn {
    margin-top: 12px;
  }

  textarea {
    min-height: 104px;
  }

  .social-links a {
    flex: 1 1 140px;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-links {
    gap: 8px;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    min-height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
