:root {
  --colon-orange-50: #fff7ed;
  --colon-orange-100: #ffedd5;
  --colon-orange-200: #fed7aa;
  --colon-orange-500: #f97316;
  --colon-orange-600: #ea580c;
  --colon-orange-700: #c2410c;
  --colon-ink: #17202d;
  --colon-muted: #667085;
  --colon-line: #e8edf3;
  --colon-soft: #f8fafc;
  --colon-shadow: 0 24px 80px rgba(23, 32, 45, .12);
}

.colon-hero,
.colon-routes-section,
.colon-bot-section,
.colon-map-shell,
.colon-auth-page {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.colon-hero {
  position: relative;
  min-height: min(760px, 92svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 7vw, 96px) 84px;
  color: #fff;
  background: var(--colon-ink);
}

.colon-hero-bg,
.colon-hero-slide,
.colon-hero-shade {
  position: absolute;
  inset: 0;
}

.colon-hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 7s ease;
}

.colon-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.colon-hero-shade {
  background:
    radial-gradient(circle at 76% 18%, rgba(249, 115, 22, .36), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, .9), rgba(15, 23, 42, .28) 58%, rgba(15, 23, 42, .64)),
    linear-gradient(0deg, rgba(15, 23, 42, .84), transparent 44%);
}

.colon-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.colon-hero-content > .colon-eyebrow:not(.colon-dynamic-copy),
.colon-hero-content > .colon-hero-title:not(.colon-dynamic-copy),
.colon-hero-content > .colon-hero-copy:not(.colon-dynamic-copy),
.colon-map-intro > .colon-eyebrow:not(.colon-dynamic-copy),
.colon-map-intro > h2:not(.colon-dynamic-copy),
.colon-section-head .colon-eyebrow:not(.colon-dynamic-copy),
.colon-section-head .colon-display:not(.colon-dynamic-copy),
.colon-section-head > .colon-section-copy:not(.colon-dynamic-copy) {
  display: none;
}

.colon-eyebrow {
  margin: 0;
  color: var(--colon-orange-600);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.colon-hero .colon-eyebrow {
  color: var(--colon-orange-100);
}

.colon-hero-title {
  max-width: 980px;
  margin: 18px 0 20px;
  font-size: clamp(3rem, 7.2vw, 7rem);
  line-height: .88;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.colon-hero-copy {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.75;
  font-weight: 500;
}

.colon-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.colon-btn,
.colon-public-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.colon-btn svg,
.colon-public-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.colon-btn:hover,
.colon-public-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(23, 32, 45, .18);
}

.colon-btn-primary,
.colon-btn-whatsapp,
.colon-public-btn {
  background: var(--colon-orange-600);
  color: #fff;
}

.colon-btn-primary:hover,
.colon-btn-whatsapp:hover,
.colon-public-btn:hover {
  background: var(--colon-orange-700);
}

.colon-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .56);
  backdrop-filter: blur(10px);
}

.colon-btn-ghost:hover {
  border-color: var(--colon-orange-100);
  background: rgba(255, 247, 237, .12);
}

.colon-slide-dots {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 7vw, 96px);
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.colon-dot {
  width: 46px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .36);
  cursor: pointer;
}

.colon-dot.is-active {
  background: var(--colon-orange-500);
}

.colon-map-shell {
  position: relative;
  z-index: 3;
  width: min(1560px, calc(100% - 28px));
  margin: -52px auto 0;
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--colon-shadow);
  backdrop-filter: blur(18px);
}

.colon-map-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: 10px 6px 24px;
}

.colon-map-intro h2 {
  max-width: 1100px;
  margin: 0;
  color: #445066;
  font-size: clamp(1.35rem, 2.8vw, 2.8rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.colon-filter-bar {
  padding: 18px clamp(14px, 2.2vw, 26px);
  border: 1px solid var(--colon-line);
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
  box-shadow: 0 12px 32px rgba(23, 32, 45, .06);
}

.colon-filter-row,
.colon-trip-row {
  width: min(1320px, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.colon-search-box {
  position: relative;
  flex: 1 1 420px;
  min-width: min(100%, 260px);
}

.colon-filter-input {
  width: 100%;
  height: 48px;
  padding: 0 48px 0 18px;
  border: 1px solid #d9e0ea;
  border-radius: 999px;
  background: #fff;
  color: var(--colon-ink);
  font-size: .96rem;
  font-weight: 600;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.colon-filter-input::placeholder {
  color: #98a2b3;
  font-weight: 500;
}

.colon-search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  color: #98a2b3;
  background: transparent;
  transform: translateY(-50%);
}

.colon-favorites-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--colon-orange-200);
  border-radius: 999px;
  background: var(--colon-orange-50);
  color: var(--colon-orange-700);
  font-size: .9rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.colon-favorites-btn:hover {
  background: #fff;
  box-shadow: 0 14px 30px rgba(194, 65, 12, .14);
  transform: translateY(-1px);
}

.colon-chip-row {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.colon-trip-row {
  margin-top: 12px;
  gap: 9px;
}

.colon-trip-label {
  color: #667085;
  font-size: .82rem;
  font-weight: 900;
}

.cat-btn,
.trip-type-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(23, 32, 45, .04);
}

.colon-filter-input:focus,
.colon-public-input:focus {
  border-color: var(--colon-orange-500) !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .16) !important;
}

.colon-chip {
  border: 1px solid var(--colon-line);
  background: rgba(255, 255, 255, .88);
  color: #475467;
}

.colon-chip:hover,
.colon-chip.is-active-public {
  border-color: var(--colon-orange-200);
  background: var(--colon-orange-50);
  color: var(--colon-orange-700);
}

.colon-chip-active,
.trip-type-btn.bg-orange-600,
.cat-btn.bg-orange-600 {
  background: var(--colon-orange-600) !important;
  color: #fff !important;
  border-color: var(--colon-orange-600) !important;
}

.colon-map-frame {
  border-radius: 0 0 18px 18px;
  min-height: 520px;
}

.colon-facebook-section {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 127, 65, .14), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(124, 58, 237, .08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fffaf5 52%, #f8fafc 100%);
}

.colon-facebook-section::before {
  content: "";
  position: absolute;
  inset: 22px clamp(16px, 4vw, 52px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 127, 65, .28), transparent);
  z-index: -1;
}

.colon-facebook-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 524px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.colon-facebook-copy {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 780px;
}

.colon-facebook-copy::after {
  content: "";
  display: block;
  width: min(160px, 42vw);
  height: 6px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--colon-orange-600), rgba(124, 58, 237, .78));
  box-shadow: 0 12px 28px rgba(255, 127, 65, .24);
}

.colon-facebook-copy h2 {
  max-width: 760px;
  margin: 10px 0 16px;
  color: var(--colon-ink);
  font-size: clamp(2.25rem, 4.25vw, 4.8rem);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.colon-facebook-copy p:not(.colon-eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #536078;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 650;
  line-height: 1.75;
}

.colon-facebook-link {
  width: fit-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid rgba(255, 127, 65, .28);
  border-radius: 999px;
  background: rgba(255, 247, 237, .9);
  color: var(--colon-orange-700);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(194, 65, 12, .10);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.colon-facebook-link:hover {
  background: #fff;
  color: var(--colon-orange-700);
  box-shadow: 0 18px 38px rgba(194, 65, 12, .17);
  transform: translateY(-2px);
}

.colon-facebook-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.colon-facebook-widget {
  width: 100%;
  min-width: 0;
  max-width: 524px;
  justify-self: end;
}

.colon-facebook-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 26px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(255, 127, 65, .5), rgba(124, 58, 237, .3), rgba(226, 232, 240, .8)) border-box;
  box-shadow:
    0 28px 70px rgba(23, 32, 45, .14),
    0 10px 28px rgba(255, 127, 65, .10);
}


.colon-facebook-feed {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 520px;
  min-height: 520px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.colon-facebook-feed::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.colon-facebook-feed iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 520px;
  min-height: 0;
  border: 0;
  background: #fff;
}

.colon-facebook-card-link {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 247, 237, .95), rgba(245, 243, 255, .95));
  color: var(--colon-orange-700);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.colon-facebook-card-link:hover {
  background: #fff;
  box-shadow: 0 14px 28px rgba(194, 65, 12, .12);
  transform: translateY(-1px);
}

.colon-facebook-card-link svg {
  width: .96rem;
  height: .96rem;
}

.colon-facebook-fallback {
  min-height: 420px;
  display: grid;
  place-items: center;
  gap: 10px;
  margin: 0;
  padding: 26px;
  color: #606a7d;
  text-align: center;
  font-weight: 700;
}

.colon-facebook-fallback span,
.colon-facebook-fallback a {
  display: block;
}

.colon-facebook-fallback a {
  color: var(--colon-orange-700);
  font-weight: 900;
  text-decoration: none;
}
.colon-routes-section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 7vw, 96px);
}

.colon-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: end;
  max-width: 1320px;
  margin: 0 auto 42px;
}

.colon-display {
  margin: 12px 0 0;
  color: var(--colon-ink);
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
}

.colon-section-copy {
  max-width: 590px;
  margin: 0;
  color: #6f7785;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.8;
  font-weight: 500;
}

.colon-route-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.colon-routes-section > .colon-route-grid:not(.colon-dynamic-routes) {
  display: none;
}

.colon-route-card {
  position: relative;
  min-height: 300px;
  grid-column: span 3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2.5vw, 32px);
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  background: var(--colon-ink);
  box-shadow: 0 14px 36px rgba(23, 32, 45, .08);
}

.colon-route-card:hover {
  color: #fff;
}

.colon-route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(15, 23, 42, .84), rgba(15, 23, 42, .08) 64%), var(--route-img);
  background-size: cover;
  background-position: center;
  transition: transform .7s ease, filter .7s ease;
}

.colon-route-card:hover::before {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.colon-route-wide {
  grid-column: span 6;
}

.colon-route-card span,
.colon-route-card h3,
.colon-route-card p {
  position: relative;
  z-index: 1;
}

.colon-route-card span {
  color: var(--colon-orange-100);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.colon-route-card h3 {
  max-width: 780px;
  margin: 10px 0 8px;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
}

.colon-route-card p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.6;
  font-weight: 600;
}

.colon-bot-section {
  display: grid;
  grid-template-columns: minmax(220px, .46fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto clamp(68px, 8vw, 112px);
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--colon-orange-100);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, var(--colon-orange-50));
  box-shadow: var(--colon-shadow);
}

.colon-bot-visual {
  min-height: 300px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(rgba(255,255,255,.74), rgba(255,255,255,.74)), url("../img/landing/noche-restaurante.jpeg") center / cover;
}

.colon-bot-badge {
  display: grid;
  place-items: center;
  width: min(210px, 68%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(194, 65, 12, .22);
}

.colon-bot-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.colon-bot-content h2 {
  max-width: 940px;
  margin: 8px 0 16px;
  color: var(--colon-ink);
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: .96;
  font-weight: 900;
  text-transform: uppercase;
}

.colon-bot-content p {
  max-width: 850px;
  color: #606a7d;
  line-height: 1.7;
  font-weight: 500;
}

.colon-bot-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.colon-bot-actions span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--colon-orange-100);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  color: #3f4658;
  font-size: .88rem;
  font-weight: 800;
}

.colon-gallery {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.colon-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--colon-ink);
  box-shadow: var(--colon-shadow);
}

.colon-gallery-wide {
  grid-column: span 2;
}

.colon-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.colon-gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--colon-orange-700);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.colon-gallery figure:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.colon-emergency-section {
  padding: clamp(34px, 5vw, 68px) clamp(18px, 7vw, 96px);
  background:
    radial-gradient(circle at 12% 0%, rgba(239, 68, 68, .09), transparent 32%),
    linear-gradient(135deg, #fff, #fff7ed);
  border-block: 1px solid var(--colon-orange-100);
}

.colon-emergency-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.colon-emergency-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.colon-emergency-head h2 {
  margin: 8px 0 0;
  color: var(--colon-ink);
  font-size: clamp(1.55rem, 3.2vw, 3rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

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

.colon-emergency-card {
  min-height: 132px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(254, 202, 202, .9);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  color: var(--colon-ink);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(23, 32, 45, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.colon-emergency-card:hover {
  border-color: #fca5a5;
  box-shadow: 0 18px 46px rgba(153, 27, 27, .14);
  transform: translateY(-2px);
}

.colon-emergency-primary {
  background: linear-gradient(135deg, #fff, #fff1f2);
}

.colon-emergency-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: .78rem;
  font-weight: 900;
}

.colon-emergency-card strong,
.colon-emergency-card b,
.colon-emergency-card small {
  display: block;
}

.colon-emergency-card strong {
  color: #111827;
  font-size: .9rem;
  line-height: 1.2;
  font-weight: 900;
}

.colon-emergency-card b {
  margin-top: 7px;
  color: #dc2626;
  font-size: 1.25rem;
  line-height: 1;
}

.colon-emergency-card small {
  margin-top: 7px;
  color: #667085;
  font-size: .76rem;
  line-height: 1.35;
  font-weight: 600;
}

.colon-public-band {
  padding: clamp(34px, 5vw, 68px) clamp(18px, 7vw, 96px);
  background: #fff;
}

.colon-public-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.colon-public-banner {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  background: var(--colon-ink);
  box-shadow: var(--colon-shadow);
}

.colon-public-banner > img,
.colon-public-overlay {
  position: absolute;
  inset: 0;
}

.colon-public-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.colon-public-overlay {
  background:
    linear-gradient(0deg, rgba(15, 23, 42, .86), rgba(15, 23, 42, .18) 68%),
    linear-gradient(90deg, rgba(15, 23, 42, .62), transparent);
}

.colon-public-banner:hover {
  color: #fff;
}

.colon-public-banner:hover > img {
  transform: scale(1.07);
  filter: saturate(1.12);
}

.colon-public-banner-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.colon-public-banner-content span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--colon-orange-100);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.colon-public-banner-content h3 {
  max-width: 760px;
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.6vw, 2.55rem);
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
}

.colon-public-banner-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-weight: 700;
  line-height: 1.45;
}

.colon-public-accent,
.colon-public-link {
  color: var(--colon-orange-700) !important;
}

.colon-public-bg {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, .13), transparent 32%),
    linear-gradient(135deg, #fff, #f8fafc 48%, var(--colon-orange-50));
}

.colon-auth-page {
  min-height: 100svh;
  padding: clamp(28px, 5vw, 64px) 18px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.92)),
    url("../img/landing/queso-vino.jpeg") center / cover;
}

.colon-auth-shell {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

.colon-auth-copy {
  animation: colonFadeUp .72s cubic-bezier(.22, 1, .36, 1) both;
}

.colon-auth-copy .colon-eyebrow {
  margin-bottom: 14px;
}

.colon-auth-copy h1 {
  margin: 0 0 16px;
  color: var(--colon-ink);
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
}

.colon-auth-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--colon-muted);
  font-weight: 600;
  line-height: 1.75;
}

.colon-auth-card {
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--colon-shadow);
  backdrop-filter: blur(18px);
  animation: colonFadeUp .72s cubic-bezier(.22, 1, .36, 1) .08s both;
}

.colon-auth-panel {
  border: 1px solid var(--colon-line);
  border-radius: 20px;
  background: #fff;
  padding: clamp(18px, 2.4vw, 26px);
}

.colon-auth-panel + .colon-auth-panel {
  margin-top: 18px;
}

.colon-auth-panel h2 {
  margin: 0 0 8px;
  color: var(--colon-ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0;
}

.colon-auth-panel p {
  color: var(--colon-muted);
}

.colon-auth-logo {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  border: 6px solid #fff;
  box-shadow: 0 16px 36px rgba(194, 65, 12, .2);
}

.colon-form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: #98a2b3;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.colon-form-divider::before,
.colon-form-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--colon-line);
}

.colon-user-login-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.colon-login-banner {
  position: relative;
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 18px;
  padding: 17px;
  color: #fff;
  background: var(--colon-ink);
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .18);
  isolation: isolate;
}

.colon-login-banner > img,
.colon-login-banner-overlay {
  position: absolute;
  inset: 0;
}

.colon-login-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .65s ease;
  z-index: -2;
}

.colon-login-banner--visitor > img {
  object-position: 72% 18%;
}

.colon-login-banner--provider > img {
  object-position: center;
}

.colon-login-banner-overlay {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(15, 23, 42, .9), rgba(15, 23, 42, .3) 72%),
    linear-gradient(90deg, rgba(15, 23, 42, .72), rgba(15, 23, 42, .08));
}

.colon-login-banner:hover,
.colon-login-banner:focus-visible {
  color: #fff;
}

.colon-login-banner:hover > img,
.colon-login-banner:focus-visible > img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.colon-login-banner:focus-visible {
  outline: 3px solid var(--colon-orange-500);
  outline-offset: 3px;
}

.colon-login-banner-content {
  display: grid;
  gap: 6px;
  max-width: 95%;
}

.colon-login-banner-content small {
  color: var(--colon-orange-100);
  font-size: .68rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.colon-login-banner-content strong {
  color: #fff;
  font-size: clamp(1rem, 1.9vw, 1.32rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.colon-login-banner-content span {
  color: rgba(255, 255, 255, .86);
  font-size: .76rem;
  line-height: 1.25;
  font-weight: 700;
}

.reveal-up,
.reveal-scale {
  opacity: 0;
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal-up {
  transform: translateY(28px);
}

.reveal-scale {
  transform: scale(.96);
}

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

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

@media (max-width: 1180px) {
  .colon-map-intro,
  .colon-section-head,
  .colon-facebook-inner,
  .colon-bot-section,
  .colon-auth-shell {
    grid-template-columns: 1fr;
  }

  .colon-facebook-widget {
  width: 100%;
  min-width: 0;
  max-width: 524px;
  justify-self: end;
}

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

  .colon-route-card,
  .colon-route-wide {
    grid-column: auto;
  }

  .colon-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .colon-hero {
    min-height: calc(100svh - 58px);
    padding: 76px 18px 48px;
    align-items: end;
  }

  .colon-hero-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.5vw, 4.1rem);
    line-height: .94;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .colon-hero-copy {
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.55;
  }

  .colon-hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .colon-hero-actions .colon-btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 14px;
    font-size: .7rem;
    letter-spacing: .08em;
  }

  .colon-slide-dots {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    justify-content: center;
    margin-top: 28px;
    gap: 8px;
  }

  .colon-dot {
    width: min(44px, 18vw);
  }

  .colon-map-shell {
    width: calc(100% - 16px);
    margin-top: -34px;
    border-radius: 22px;
    padding: 12px;
  }

  .colon-filter-bar {
    padding: 14px 10px;
  }

  .colon-filter-row,
  .colon-trip-row {
    gap: 8px;
  }

  .colon-search-box,
  .colon-favorites-btn {
    flex-basis: 100%;
  }

  .colon-favorites-btn {
    width: 100%;
  }

  .colon-route-grid,
  .colon-bot-actions,
  .colon-gallery,
  .colon-emergency-grid,
  .colon-public-grid {
    grid-template-columns: 1fr;
  }

  .colon-emergency-head {
    display: block;
  }

  .colon-emergency-card {
    min-height: auto;
  }

  .colon-public-banner {
    min-height: 280px;
    border-radius: 20px;
  }

  .colon-gallery-wide {
    grid-column: auto;
  }

  .colon-gallery {
    grid-auto-rows: 300px;
  }

  .colon-routes-section,
  .colon-facebook-section,
  .colon-emergency-section,
  .colon-public-band {
    padding-inline: 18px;
  }

  .colon-facebook-section {
    padding-top: 38px;
  }

  .colon-facebook-copy h2 {
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .colon-facebook-link,
  .colon-facebook-card-link {
    width: 100%;
  }

  .colon-facebook-card {
    padding: 8px;
    border-radius: 24px;
  }

  .colon-facebook-feed {
    height: 500px;
    min-height: 500px;
  }

  .colon-facebook-feed iframe,
  .colon-facebook-fallback {
    height: 500px;
    min-height: 0;
  }

  .colon-auth-page {
    padding: 22px 12px;
  }

  .colon-auth-card {
    border-radius: 22px;
  }

  .colon-user-login-banners {
    grid-template-columns: 1fr;
  }

  .colon-login-banner {
    min-height: 150px;
  }
}
