:root {
  --primary: #0E7A55;
  --primary-dark: #0A3D2C;
  --ink: #16211B;
  --muted: #5F6E66;
  --surface: #EFF5F1;
  --border: #DDE7E1;
  --accent: #F2A03D;
  --white: #FFFFFF;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --content-width: 680px;
  --page-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
}

p {
  color: var(--muted);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Marca */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.wordmark em,
.app-brand-name em {
  font-style: normal;
  color: var(--primary);
}

.routemark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.routemark-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

.routemark-dash {
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: var(--border);
}

.routemark-ring {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--white);
}

/* Barra superior */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topnav {
  display: flex;
  gap: 28px;
}

.topnav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.topnav a:hover {
  color: var(--primary);
}

@media (max-width: 760px) {
  .topnav {
    display: none;
  }
}

/* Botones */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  background: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-small {
  font-size: 14px;
  padding: 10px 22px;
}

/* Badges de tiendas */

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px 10px 16px;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  background: #000;
}

.store-badge svg {
  width: 26px;
  height: 26px;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.store-badge-text small {
  font-size: 11px;
  opacity: 0.8;
}

.store-badge-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}

.badge-light {
  background: var(--white);
  color: var(--primary-dark);
}

.badge-light:hover {
  background: var(--surface);
}

.store-badge-soon {
  position: relative;
  cursor: default;
  opacity: 0.72;
}

.store-badge-soon:hover {
  transform: none;
  background: var(--ink);
}

.badge-light.store-badge-soon:hover {
  background: var(--white);
}

.soon-tag {
  position: absolute;
  top: -9px;
  right: -8px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(22, 33, 27, 0.18);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 72px 24px 88px;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.hero-sub {
  margin-top: 22px;
  font-size: 19px;
  max-width: 46ch;
}

.hero .store-badges {
  margin-top: 32px;
}

.hero-note {
  margin-top: 18px;
  font-size: 14px;
  max-width: 44ch;
}

/* Visual del hero: teléfono */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(closest-side, var(--surface), transparent);
  z-index: -1;
}

.phone {
  width: 300px;
  border-radius: 44px;
  background: var(--primary-dark);
  padding: 10px;
  box-shadow: 0 30px 60px rgba(10, 61, 44, 0.25);
  animation: float 7s ease-in-out infinite;
}

.phone-screen {
  position: relative;
  background: var(--white);
  border-radius: 36px;
  padding: 52px 16px 20px;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--primary-dark);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-brand .routemark-dot,
.app-brand .routemark-ring {
  width: 7px;
  height: 7px;
}

.app-brand .routemark-dash {
  width: 10px;
}

.app-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}

.app-greeting {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  margin-top: 18px;
}

.app-search {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.app-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 9px 12px;
}

.app-field + .app-field {
  margin-top: 6px;
}

.field-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.field-dot.solid { background: var(--primary); }

.field-dot.ring {
  border: 2px solid var(--accent);
  background: var(--white);
}

.field-dot.cal {
  border-radius: 2px;
  background: var(--border);
}

.field-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.field-text small {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}

.app-cta {
  margin-top: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-md);
}

.trip-card {
  margin-top: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 10px 24px rgba(22, 33, 27, 0.08);
}

.trip-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
}

.trip-driver {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.trip-rating {
  font-size: 10px;
  font-weight: 400;
  color: var(--accent);
}

.trip-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
}

.trip-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.trip-route .routemark-dot,
.trip-route .routemark-ring {
  width: 7px;
  height: 7px;
}

.trip-route .routemark-dash {
  width: 10px;
}

.trip-meta {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

.float-chip {
  position: absolute;
  right: 4%;
  bottom: 18%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(22, 33, 27, 0.12);
  animation: float 6s ease-in-out 1s infinite;
}

.float-chip svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.chip-msg {
  right: auto;
  left: 0;
  top: 26%;
  bottom: auto;
  max-width: 210px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink);
  animation: float 8s ease-in-out 0.5s infinite;
}

.chip-msg svg {
  color: var(--accent);
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Cinta de ciudades */

.cities {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}

.cities-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: cities-scroll 36s linear infinite;
}

.cities-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  white-space: nowrap;
}

.cities-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

@keyframes cities-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Secciones */

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 40px;
}

/* La idea */

.idea {
  padding: 96px 24px;
}

.idea-title {
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.01em;
}

.idea-body {
  margin-top: 16px;
  font-size: 18px;
  max-width: 58ch;
}

.idea-math {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.idea-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-dark);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-full);
}

/* Filosofía */

.philosophy {
  background: var(--surface);
  padding: 96px 24px;
}

.belief + .belief {
  margin-top: 64px;
}

.belief h2 {
  font-size: clamp(26px, 4.5vw, 36px);
  letter-spacing: -0.01em;
  max-width: 24ch;
}

.belief p {
  margin-top: 16px;
  max-width: 58ch;
  font-size: 18px;
}

/* Cómo funciona */

.how {
  padding: 96px 24px;
}

.how-title {
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}

.route-steps {
  list-style: none;
  position: relative;
}

.route-steps::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  border-left: 2px dashed var(--border);
}

.route-step {
  position: relative;
  display: flex;
  gap: 28px;
}

.route-step + .route-step {
  margin-top: 48px;
}

.step-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  margin-top: 2px;
}

.origin-marker {
  background: var(--primary);
}

.origin-marker::after,
.destination-marker::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: ping 2.4s ease-out infinite;
}

.destination-marker::after {
  border-color: var(--accent);
  animation-delay: 1.2s;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70%, 100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.destination-marker {
  border-color: var(--accent);
  border-width: 3px;
}

.step-body h3 {
  font-size: 20px;
  font-weight: 600;
}

.step-body p {
  margin-top: 8px;
  max-width: 52ch;
}

/* Dos maneras de usarla */

.dual {
  padding: 0 24px 96px;
}

.dual .eyebrow {
  margin-bottom: 32px;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.dual-col {
  border-left: 3px solid var(--border);
  padding-left: 24px;
}

.dual-col:first-child {
  border-left-color: var(--primary);
}

.dual-col:last-child {
  border-left-color: var(--accent);
}

.dual-col h3 {
  font-size: 22px;
  font-weight: 600;
}

.dual-col p {
  margin-top: 10px;
  font-size: 17px;
  max-width: 44ch;
}

@media (max-width: 640px) {
  .dual-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Confianza */

.trust {
  background: var(--surface);
  padding: 96px 24px;
}

.trust-title {
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.01em;
  max-width: 20ch;
}

.trust-sub {
  margin-top: 16px;
  font-size: 18px;
  max-width: 48ch;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(22, 33, 27, 0.08);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--primary);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-top: 18px;
}

.trust-card p {
  margin-top: 8px;
  font-size: 16px;
}

/* Preguntas */

.faq {
  padding: 96px 24px;
}

.faq-title {
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  padding: 22px 0;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-item > p {
  padding: 0 0 22px;
  max-width: 58ch;
}

/* Descarga */

.download {
  background: var(--primary-dark);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(closest-side, rgba(14, 122, 85, 0.55), transparent);
  pointer-events: none;
}

.download .section-inner {
  position: relative;
}

.download h2 {
  color: var(--white);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin: 0 auto;
}

.download p {
  color: var(--border);
  margin-top: 16px;
  font-size: 18px;
}

.download .store-badges {
  justify-content: center;
  margin-top: 36px;
}

/* Páginas legales */

.legal {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal h1 {
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.01em;
}

.legal-updated {
  margin-top: 12px;
  font-size: 14px;
}

.legal-intro {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  max-width: 62ch;
}

.legal section {
  margin-top: 48px;
}

.legal h2 {
  font-size: 22px;
  font-weight: 600;
}

.legal section p {
  margin-top: 12px;
  max-width: 66ch;
}

.legal ul {
  margin-top: 12px;
  padding-left: 22px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  max-width: 62ch;
}

.legal li::marker {
  color: var(--primary);
}

.legal a {
  color: var(--primary);
}

/* Pie */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
}

.footer p {
  font-size: 14px;
}

.footer-legal {
  font-size: 12px;
  max-width: 62ch;
  text-align: center;
  color: var(--muted);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Animaciones de entrada */

.load-1, .load-2, .load-3, .load-4 {
  animation: rise 0.7s ease both;
}

.load-2 { animation-delay: 0.1s; }
.load-3 { animation-delay: 0.2s; }
.load-4 { animation-delay: 0.3s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 48px;
    gap: 64px;
  }

  .hero h1,
  .hero-sub,
  .hero-note {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .store-badges {
    justify-content: center;
  }

  .float-chip {
    right: 8%;
    bottom: 8%;
  }
}

@media (max-width: 560px) {
  .phone {
    width: 270px;
  }

  .chip-msg {
    display: none;
  }

  .route-step {
    gap: 18px;
  }

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

/* Acceso anticipado: badge como botón */

button.store-badge {
  border: none;
  font: inherit;
  cursor: pointer;
}

.store-badge-early .store-badge-text small {
  color: var(--accent);
  opacity: 1;
  font-weight: 600;
}

.badge-light.store-badge-early .store-badge-text small {
  color: var(--primary);
}

/* Acceso anticipado: formulario */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.early-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.early-input {
  flex: 1 1 240px;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 14px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.early-input::placeholder {
  color: var(--muted);
}

.early-input:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 122, 85, 0.18);
}

.early-submit {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.early-submit[disabled] {
  opacity: 0.65;
  cursor: default;
  transform: none;
}

.early-status {
  min-height: 20px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}

.early-status.is-ok {
  color: var(--primary);
}

.early-status.is-error {
  color: #c0392b;
}

/* Formulario dentro de la sección oscura de descarga */

.download .eyebrow-light {
  color: var(--accent);
}

.download .early-form {
  justify-content: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.download .early-input {
  background: rgba(255, 255, 255, 0.95);
  border-color: transparent;
}

.download .early-submit {
  background: var(--white);
  color: var(--primary-dark);
}

.download .early-submit:hover:not([disabled]) {
  background: var(--surface);
}

.download .early-status {
  color: var(--white);
}

.download .early-status.is-ok {
  color: var(--accent);
}

.download .early-status.is-error {
  color: #ffb4a8;
}

/* Modal de acceso anticipado */

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 61, 44, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modal-fade 0.2s ease both;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  box-shadow: 0 30px 70px rgba(10, 61, 44, 0.35);
  animation: modal-rise 0.25s ease both;
}

.modal-card h2 {
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-top: 16px;
}

.modal-card > p {
  margin-top: 12px;
  font-size: 16px;
}

.modal-card .early-form {
  flex-direction: column;
}

.modal-card .early-input,
.modal-card .early-submit {
  flex: 1 1 auto;
  width: 100%;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: var(--border);
  color: var(--ink);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Menos movimiento */

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

  .load-1, .load-2, .load-3, .load-4 {
    animation: none;
  }

  .phone,
  .float-chip {
    animation: none;
  }

  .origin-marker::after,
  .destination-marker::after {
    animation: none;
  }

  .cities-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .store-badge {
    transition: none;
  }

  .modal-backdrop,
  .modal-card {
    animation: none;
  }
}
