/* =========================================================================
   ROS — capa de re-look-and-feel (2026-07)
   Se carga DESPUÉS de screen.css/fids.css y redefine header, hero de la home,
   tablero de vuelos, páginas de contenido y footer con un lenguaje visual
   propio, limpio y profesional, manteniendo la identidad del aeropuerto.
   Prefijo propio: .r-  /  .rhdr-  /  .rhome-  /  .rpage-  /  .rform-
   ========================================================================= */

:root {
  --r-blue: #00428d;
  --r-blue-700: #043771;
  --r-blue-900: #05285a;
  --r-blue-500: #0071c0;
  --r-sky: #e8f1fb;
  --r-orange: #f59d00;
  --r-green: #88c12b;
  --r-red: #e12225;
  --r-ink: #1c2434;
  --r-muted: #5b6472;
  --r-line: #e4e8ef;
  --r-bg: #f5f7fa;
  --r-white: #fff;
  --r-shadow-sm: 0 1px 2px rgba(16, 33, 60, 0.06), 0 2px 8px rgba(16, 33, 60, 0.05);
  --r-shadow-md: 0 6px 24px rgba(16, 33, 60, 0.1);
  --r-shadow-lg: 0 18px 50px rgba(16, 33, 60, 0.16);
  --r-radius: 14px;
  --r-radius-sm: 10px;
  --r-grad: linear-gradient(90deg, #ffcb02 0%, #ff7402 33%, #e42153 66%, #3c3ae5 100%);
  --r-header-h: 78px;
}

/* ---- base overrides so the whole document feels cohesive ---- */
body {
  background: var(--r-bg);
  color: var(--r-ink);
}
#app {
  overflow-x: hidden;
}
a {
  transition: color 0.15s ease;
}

/* Hide the original theme header/submenu chrome — we render our own. */
#app > header.header,
#app > .submenu {
  display: none !important;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.rhdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--r-line);
  box-shadow: 0 1px 0 rgba(16, 33, 60, 0.02);
}
.rhdr::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--r-grad);
}
.rhdr__bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--r-header-h);
  display: flex;
  align-items: center;
  gap: 26px;
}
.rhdr__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  text-decoration: none;
}
.rhdr__brand img {
  height: 40px;
  width: auto;
  display: block;
}
.rhdr__brand-txt {
  display: none;
  line-height: 1.15;
}
.rhdr__brand-txt b {
  display: block;
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--r-ink);
  letter-spacing: 0.01em;
}
.rhdr__brand-txt span {
  display: block;
  font-size: 11px;
  color: var(--r-muted);
}
@media (min-width: 1120px) {
  .rhdr__brand-txt {
    display: block;
  }
}

/* --- primary nav --- */
.rhdr__nav {
  display: none;
  align-items: stretch;
  gap: 2px;
  height: 100%;
  margin-left: auto;
}
@media (min-width: 980px) {
  .rhdr__nav {
    display: flex;
  }
}
.rhdr__item {
  position: relative;
  display: flex;
  align-items: center;
}
.rhdr__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 15px;
  font-family: "Noway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--r-ink);
  text-decoration: none;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.rhdr__link .r-caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.rhdr__item:hover .rhdr__link,
.rhdr__item:focus-within .rhdr__link {
  color: var(--r-blue);
}
.rhdr__item:hover .r-caret,
.rhdr__item:focus-within .r-caret {
  transform: translateY(0) rotate(45deg);
  opacity: 1;
  color: var(--r-blue);
}
.rhdr__link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--r-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.rhdr__item:hover .rhdr__link::after,
.rhdr__item:focus-within .rhdr__link::after {
  transform: scaleX(1);
}

/* --- dropdown panel --- */
.rhdr__panel {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: var(--r-white);
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-sm);
  box-shadow: var(--r-shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.rhdr__panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--r-white);
  border-left: 1px solid var(--r-line);
  border-top: 1px solid var(--r-line);
}
.rhdr__item:hover .rhdr__panel,
.rhdr__item:focus-within .rhdr__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.rhdr__panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--r-ink);
  text-decoration: none;
}
.rhdr__panel a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--r-line);
  flex: 0 0 auto;
  transition: background 0.15s ease, transform 0.15s ease;
}
.rhdr__panel a:hover {
  background: var(--r-sky);
  color: var(--r-blue);
}
.rhdr__panel a:hover::before {
  background: var(--r-orange);
  transform: scale(1.4);
}

/* --- header right (weather + hamburger) --- */
.rhdr__right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
@media (min-width: 980px) {
  .rhdr__right {
    margin-left: 18px;
  }
}
.rhdr__weather {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--r-sky);
  color: var(--r-blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 720px) {
  .rhdr__weather {
    display: inline-flex;
  }
}
.rhdr__weather:hover {
  background: #dbe9fa;
}
.rhdr__date {
  display: none;
  font-size: 12.5px;
  color: var(--r-muted);
  white-space: nowrap;
}
@media (min-width: 1320px) {
  .rhdr__date {
    display: block;
  }
}

/* --- hamburger --- */
.rhdr__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--r-line);
  border-radius: 11px;
  background: var(--r-white);
  cursor: pointer;
  padding: 0 11px;
}
@media (min-width: 980px) {
  .rhdr__burger {
    display: none;
  }
}
.rhdr__burger span {
  height: 2px;
  border-radius: 2px;
  background: var(--r-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* --- mobile drawer --- */
.rdrawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--r-white);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.rdrawer.is-open {
  transform: translateX(0);
}
.rdrawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--r-line);
  background: var(--r-blue-700);
}
.rdrawer__top img {
  height: 34px;
}
.rdrawer__close {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.rdrawer__body {
  padding: 14px 16px 40px;
}
.rdrawer__group {
  border-bottom: 1px solid var(--r-line);
  padding: 6px 0;
}
.rdrawer__grouptitle {
  display: block;
  padding: 12px 8px 6px;
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r-blue);
}
.rdrawer__body a {
  display: block;
  padding: 11px 8px;
  color: var(--r-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}
.rdrawer__body a:active {
  background: var(--r-sky);
}
.rdrawer__feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.rdrawer__feature a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--r-sky);
  border-radius: 12px;
  font-weight: 600;
  color: var(--r-blue);
}
.rdrawer__feature i {
  font-size: 18px;
}

/* =========================================================================
   HOME — hero + flight board
   ========================================================================= */
.rhome-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: var(--r-blue-900);
  overflow: hidden;
}
.rhome-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.rhome-hero__slide.is-active {
  opacity: 1;
}
.rhome-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 25, 58, 0.9) 0%, rgba(4, 25, 58, 0.55) 45%, rgba(0, 66, 141, 0.25) 100%);
}
.rhome-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.rhome-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rhome-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd166;
  margin-bottom: 14px;
}
.rhome-hero__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--r-orange);
}
.rhome-hero h2 {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  margin: 0;
  max-width: 15ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.rhome-hero p {
  margin: 12px 0 24px;
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255, 255, 255, 0.86);
  max-width: 40ch;
}
.rhome-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--r-orange);
  color: #22160a;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(245, 157, 0, 0.35);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.rhome-hero__cta:hover {
  transform: translateY(-2px);
  color: #22160a;
  box-shadow: 0 12px 30px rgba(245, 157, 0, 0.45);
}
.rhome-hero__dots {
  display: flex;
  gap: 8px;
  margin-top: 26px;
}
.rhome-hero__dots button {
  width: 26px;
  height: 4px;
  border-radius: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.rhome-hero__dots button.is-active {
  background: var(--r-orange);
}

/* board wrapper: normal flow, guaranteed clickable */
.rhome-board {
  max-width: 1240px;
  margin: -30px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}
.rhome-board .ros-fids-board {
  box-shadow: var(--r-shadow-lg);
  border-radius: var(--r-radius);
  overflow: hidden;
}

/* quick-access tiles */
.rhome-access {
  max-width: 1240px;
  margin: 34px auto 0;
  padding: 0 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .rhome-access {
    grid-template-columns: repeat(4, 1fr);
  }
}
.r-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: var(--r-radius);
  background: var(--r-white);
  border: 1px solid var(--r-line);
  box-shadow: var(--r-shadow-sm);
  text-decoration: none;
  color: var(--r-ink);
  min-height: 130px;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.r-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--r-tile-accent, var(--r-blue));
  opacity: 0;
  transition: opacity 0.18s ease;
}
.r-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--r-shadow-md);
  border-color: transparent;
  color: var(--r-ink);
}
.r-tile:hover::before {
  opacity: 1;
}
.r-tile img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  object-position: left;
}
.r-tile h5 {
  margin: 0;
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
}
.r-tile--secondary {
  --r-tile-accent: var(--r-orange);
}
.r-tile--tertiary {
  --r-tile-accent: var(--r-green);
}
.r-tile--lg {
  min-height: 150px;
}
.r-tile--lg h5 {
  font-size: 18px;
}

/* news section */
.rhome-news {
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 0 24px 70px;
}
.rhome-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.rhome-news__head h3 {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  color: var(--r-ink);
  position: relative;
  padding-left: 16px;
}
.rhome-news__head h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 4px;
  background: var(--r-grad);
}
.rhome-news__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--r-blue);
  text-decoration: none;
}
.rhome-news__more:hover {
  gap: 10px;
}
.rnews-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .rnews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rnews-card {
  display: flex;
  flex-direction: column;
  background: var(--r-white);
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius);
  overflow: hidden;
  box-shadow: var(--r-shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.rnews-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--r-shadow-md);
  color: inherit;
}
.rnews-card__img {
  aspect-ratio: 16 / 9;
  background: var(--r-sky) center/cover no-repeat;
}
.rnews-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.rnews-card__body h4 {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  color: var(--r-blue);
}
.rnews-card__body p {
  margin: 0;
  font-size: 14px;
  color: var(--r-muted);
  line-height: 1.55;
  flex: 1;
}
.rnews-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--r-orange);
  margin-top: 4px;
}

/* =========================================================================
   CONTENT PAGES — hero + prose
   ========================================================================= */
.rpage-hero {
  position: relative;
  background: linear-gradient(120deg, var(--r-blue-900) 0%, var(--r-blue) 55%, var(--r-blue-500) 100%);
  color: #fff;
  overflow: hidden;
}
.rpage-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.rpage-hero__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px 24px 40px;
}
.rpage-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}
.rpage-crumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.rpage-crumb a:hover {
  color: #fff;
}
.rpage-crumb .sep {
  opacity: 0.5;
}
.rpage-crumb .cur {
  color: #fff;
  font-weight: 600;
}
.rpage-hero h1 {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}
.rpage-hero__img {
  margin-top: 26px;
  border-radius: var(--r-radius);
  overflow: hidden;
  aspect-ratio: 21 / 8;
  background: rgba(255, 255, 255, 0.06) center/cover no-repeat;
  box-shadow: var(--r-shadow-lg);
}

.rpage-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 70px;
}
.rpage-card {
  background: var(--r-white);
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius);
  box-shadow: var(--r-shadow-sm);
  padding: clamp(24px, 4vw, 46px);
}

/* prose typography for body HTML */
.r-prose {
  color: var(--r-ink);
  font-size: 16px;
  line-height: 1.72;
}
.r-prose > *:first-child {
  margin-top: 0;
}
.r-prose p {
  margin: 0 0 1.1em;
  color: #2c3542;
}
.r-prose h2,
.r-prose h3,
.r-prose h4,
.r-prose .title-2,
.r-prose .title {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  color: var(--r-blue) !important;
  line-height: 1.25;
  margin: 1.6em 0 0.6em;
}
.r-prose h2 { font-size: 26px; }
.r-prose h3 { font-size: 22px; }
.r-prose h4 { font-size: 18px; }
.r-prose .title-2 {
  font-size: 20px;
}
.r-prose a {
  color: var(--r-blue-500);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(0, 113, 192, 0.3);
  text-underline-offset: 2px;
}
.r-prose a:hover {
  text-decoration-color: currentColor;
}
.r-prose strong,
.r-prose b {
  color: var(--r-ink);
  font-weight: 700;
}
.r-prose ul,
.r-prose ol {
  margin: 0 0 1.2em;
  padding-left: 0;
  list-style: none;
}
.r-prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.5em;
}
.r-prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--r-orange);
  transform: rotate(45deg);
}
.r-prose ol {
  counter-reset: r;
}
.r-prose ol li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 0.6em;
  counter-increment: r;
}
.r-prose ol li::before {
  content: counter(r);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--r-sky);
  color: var(--r-blue);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.r-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-radius-sm);
}
.r-prose hr {
  border: 0;
  border-top: 1px solid var(--r-line);
  margin: 2em 0;
}
.r-prose blockquote {
  margin: 1.4em 0;
  padding: 4px 0 4px 20px;
  border-left: 4px solid var(--r-orange);
  color: var(--r-muted);
  font-style: italic;
}

/* tables inside prose */
.r-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 15px;
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-sm);
  overflow: hidden;
}
.r-prose table th {
  background: var(--r-blue);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.r-prose table td {
  padding: 12px 16px;
  border-top: 1px solid var(--r-line);
}
.r-prose table tr:nth-child(even) td {
  background: #fafbfd;
}

/* embedded video */
.r-prose iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: var(--r-radius-sm);
  margin: 1em 0;
  box-shadow: var(--r-shadow-sm);
}
.r-prose .fluid-width-video-wrapper,
.r-prose .entry-content-asset {
  margin: 1.2em 0;
}

/* two-column theme grids used by some pages → responsive */
.r-prose .grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .r-prose .grid--5y7,
  .r-prose .grid--6y5,
  .r-prose .grid--two {
    grid-template-columns: 1fr 1fr;
  }
}
.r-prose .sidebar,
.r-prose .content,
.r-prose .content--alt,
.r-prose .col-8,
.r-prose .box-content {
  min-width: 0;
}
.r-prose .list-box {
  margin-bottom: 20px;
}

/* CTA card grids embedded in bodies (como-llegar, paseo) */
.r-prose .grid--four,
.r-prose .grid--three {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 1.4em;
}
@media (min-width: 860px) {
  .r-prose .grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
  .r-prose .grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.r-prose .box--cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-sm);
  background: var(--r-white);
  text-decoration: none;
  color: var(--r-ink);
  box-shadow: var(--r-shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  min-height: 120px;
  justify-content: center;
}
.r-prose .box--cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--r-shadow-md);
  color: var(--r-blue);
}
.r-prose .box--cta i {
  font-size: 26px;
  color: var(--r-blue);
}
.r-prose .box--cta .box__title {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin: 0;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.rfaq {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 70px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rfaq__item {
  background: var(--r-white);
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-sm);
  box-shadow: var(--r-shadow-sm);
  overflow: hidden;
}
.rfaq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-family: "Noway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--r-ink);
}
.rfaq__item summary::-webkit-details-marker {
  display: none;
}
.rfaq__num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--r-sky);
  color: var(--r-blue);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.rfaq__chev {
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--r-muted);
  border-bottom: 2px solid var(--r-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.rfaq__item[open] .rfaq__chev {
  transform: rotate(-135deg);
}
.rfaq__answer {
  padding: 0 22px 20px 64px;
  color: #2c3542;
  line-height: 1.7;
}
.rfaq__answer a {
  color: var(--r-blue-500);
  font-weight: 600;
}

/* =========================================================================
   DESTINATIONS / cards on white pages
   ========================================================================= */
.rdest {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 24px 70px;
}
.rdest__sub {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--r-blue);
  margin: 0 0 18px;
}
.rdest__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .rdest__grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rdest-card {
  border-radius: var(--r-radius);
  overflow: hidden;
  background: var(--r-white);
  border: 1px solid var(--r-line);
  box-shadow: var(--r-shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.rdest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--r-shadow-md);
}
.rdest-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--r-blue-900) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.rdest-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 25, 58, 0.78) 0%, rgba(4, 25, 58, 0.05) 55%);
}
.rdest-card--lg .rdest-card__img {
  aspect-ratio: 16 / 8;
}
.rdest-card__name {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.rdest-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
}
.rdest-card__freq {
  font-size: 13.5px;
  color: var(--r-muted);
  line-height: 1.4;
  margin: 0;
}
.rdest-card__logo {
  height: 26px;
  width: auto;
  flex: 0 0 auto;
}
.rdest-airlines {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 34px;
  border-top: 1px solid var(--r-line);
  padding-top: 30px;
}
@media (min-width: 760px) {
  .rdest-airlines {
    grid-template-columns: 1fr 1fr;
  }
}
.rdest-airline {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: var(--r-white);
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-sm);
}
.rdest-airline__logo {
  flex: 0 0 120px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  padding: 6px;
}
.rdest-airline__logo img {
  max-width: 100%;
  max-height: 100%;
}
.rdest-airline p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--r-ink);
}

/* paseo comercial shops */
.rshops {
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.rshops__cat h3 {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--r-blue);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--r-line);
}
.rshop {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--r-white);
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius);
  box-shadow: var(--r-shadow-sm);
  margin-bottom: 18px;
}
@media (min-width: 760px) {
  .rshop {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}
.rshop__media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rshop__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-radius-sm);
  background: var(--r-sky) center/cover no-repeat;
}
.rshop__logo {
  align-self: flex-start;
  max-height: 44px;
  max-width: 140px;
}
.rshop__name {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--r-ink);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rshop__name::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--r-orange);
  transform: rotate(45deg);
}
.rshop__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #2c3542;
}
.rshop__desc p {
  margin: 0 0 0.7em;
}
.rshop__desc a {
  color: var(--r-blue-500);
  font-weight: 600;
}
.rpaseo-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .rpaseo-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}
.rpaseo-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--r-white);
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-sm);
  text-decoration: none;
  color: var(--r-ink);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--r-shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.rpaseo-nav a:hover {
  transform: translateY(-3px);
  box-shadow: var(--r-shadow-md);
  color: var(--r-blue);
}
.rpaseo-nav i {
  font-size: 26px;
  color: var(--r-blue);
}

/* =========================================================================
   CONTACT FORM
   ========================================================================= */
.rcontact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 880px) {
  .rcontact {
    grid-template-columns: 340px 1fr;
    align-items: start;
  }
}
.rcontact__info {
  background: linear-gradient(150deg, var(--r-blue-700), var(--r-blue));
  color: #fff;
  border-radius: var(--r-radius);
  padding: 30px;
  box-shadow: var(--r-shadow-md);
}
.rcontact__info h3 {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 4px;
}
.rcontact__info .r-block {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.rcontact__info .r-block:last-child {
  border-bottom: 0;
}
.rcontact__info .r-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffd166;
  margin: 0 0 6px;
}
.rcontact__info p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.rform {
  background: var(--r-white);
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius);
  box-shadow: var(--r-shadow-sm);
  padding: clamp(22px, 3vw, 34px);
}
.rform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rform .rform__field--wide {
  grid-column: 1 / -1;
}
.rform label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.rform label .req {
  color: var(--r-red);
}
.rform input,
.rform select,
.rform textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--r-line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  background: #fbfcfe;
  color: var(--r-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rform textarea {
  min-height: 130px;
  resize: vertical;
}
.rform input:focus,
.rform select:focus,
.rform textarea:focus {
  outline: none;
  border-color: var(--r-blue);
  box-shadow: 0 0 0 3px rgba(0, 66, 141, 0.12);
  background: #fff;
}
.rform__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 13px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--r-blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease;
}
.rform__submit:hover:not(:disabled) {
  background: var(--r-blue-700);
  transform: translateY(-2px);
}
.rform__submit:disabled {
  opacity: 0.6;
  cursor: default;
}
.rform__note {
  font-size: 13px;
  color: var(--r-muted);
  margin: 0 0 18px;
}
.rform__ok {
  background: #e7f6ec;
  border: 1px solid #bde5c8;
  color: #15803d;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
}
.rform__err {
  background: #fdeced;
  border: 1px solid #f3c9ca;
  color: #9b1c1f;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}

/* =========================================================================
   FOOTER polish
   ========================================================================= */
.block.block--bottom {
  display: block !important;
  background: var(--r-white);
  border-top: 1px solid var(--r-line);
  padding: 50px 0 40px;
}
.block.block--bottom .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.block.block--bottom .grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) {
  .block.block--bottom .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.block.block--bottom .block__title {
  font-family: "Noway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--r-blue);
  margin: 0 0 14px;
}
.block.block--bottom .block__nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.block.block--bottom .block__nav a {
  color: var(--r-muted);
  text-decoration: none;
  font-size: 14px;
}
.block.block--bottom .block__nav a:hover {
  color: var(--r-blue);
}
.footer {
  background: var(--r-blue-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 34px 0 30px;
}
.footer .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__logo img {
  height: 34px;
}
.footer__data p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.footer__data span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer .social {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.footer .social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.16s ease;
}
.footer .social a:hover {
  background: var(--r-orange);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__bottom .footer__left {
  gap: 14px;
}
.footer__copy {
  margin: 0;
}
.footer__copy span {
  opacity: 0.4;
  margin: 0 4px;
}
.footer__copy a {
  color: rgba(255, 255, 255, 0.7);
}

/* generic section reset so leftover theme sections don't add blue bands */
.rpage-reset {
  background: transparent !important;
}
