:root {
  --brand-navy: #075985;
  --brand-deep: #083344;
  --brand-ocean: #0e7490;
  --brand-sky: #38bdf8;
  --brand-sun: #f59e0b;
  --brand-sand: #fffbeb;
  --accent-red: #f59e0b;
  --teal: #0e7490;
  --blue: #075985;
  --ink: #102a43;
  --muted: #646b78;
  --line: #d9dde7;
  --page: #f8fafc;
  --surface: #ffffff;
  --shadow: 0 22px 52px rgba(8, 51, 68, 0.15);
  --soft-shadow: 0 12px 30px rgba(8, 51, 68, 0.08);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 14% -10%, rgba(14, 116, 144, 0.16), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, var(--page) 52%, #e0f2fe 100%);
  color: var(--ink);
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.scroll-meter {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-sun), var(--brand-ocean), var(--brand-deep));
}

.top-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 8px 22px rgba(8, 51, 68, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-shell.is-scrolled {
  box-shadow: 0 14px 36px rgba(8, 51, 68, 0.28);
}

.topbar,
.service-nav,
.page-container {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 104px;
  gap: 22px;
}

.brand,
.utility-links,
.top-actions,
.service-nav,
.search-grid,
.title-row,
.status-chip,
.offer-tabs,
.rating,
.price-line {
  display: flex;
  align-items: center;
}

.brand {
  justify-content: center;
  min-width: max-content;
  width: 286px;
  min-height: 96px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 100%;
  max-width: 286px;
  height: 96px;
  object-fit: contain;
  filter: none;
  transform: scale(1.18);
  transform-origin: center;
}

.utility-links {
  justify-self: end;
  justify-content: end;
  gap: 4px;
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 820;
}

.utility-links a,
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.utility-link {
  position: relative;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.utility-link::after {
  position: absolute;
  right: 10px;
  bottom: 2px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-sun);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.utility-call {
  gap: 8px;
  padding-right: 14px;
  color: #fff;
}

.utility-call strong {
  color: var(--brand-sun);
  font-weight: 920;
}

.utility-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.utility-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.utility-links svg,
.cart-link svg,
.round-button svg,
.nav-pill svg {
  width: 17px;
  height: 17px;
}

.top-actions {
  justify-self: end;
  gap: 10px;
}

.round-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.round-button:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.cart-link {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-sun);
  color: #fff;
  font-weight: 920;
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
  transition:
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.cart-link:hover {
  filter: brightness(1.04);
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.34);
  transform: translateY(-1px);
}

.service-nav-shell {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.service-nav {
  justify-content: center;
  min-height: 58px;
  padding: 0;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-nav::-webkit-scrollbar {
  display: none;
}

.nav-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(8, 51, 68, 0.22);
  color: #fff;
  backdrop-filter: none;
  white-space: nowrap;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.nav-pill::before {
  position: absolute;
  inset: 4px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(248, 173, 45, 0.18));
  content: "";
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.nav-pill > * {
  position: relative;
  z-index: 1;
}

.nav-pill:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.nav-pill:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-pill svg {
  transition: transform 180ms ease;
}

.nav-pill:hover svg {
  transform: translateY(-1px) rotate(-4deg);
}

.nav-pill.is-active {
  border-color: rgba(248, 173, 45, 0.9);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  animation: nav-pill-select 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-pill.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-pill.is-active svg {
  color: var(--brand-sun);
  transform: scale(1.08);
}

@keyframes nav-pill-select {
  0% {
    transform: translateY(0) scale(0.96);
  }

  58% {
    transform: translateY(-3px) scale(1.04);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.search-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding: 26px 0 76px;
  overflow: hidden;
  color: #fff;
}

.search-hero::after {
  display: none;
}

.search-hero > .page-container {
  position: relative;
  z-index: 2;
  padding-top: 38px;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--brand-navy);
}

.hero-carousel,
.hero-carousel .swiper-wrapper,
.hero-carousel .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-carousel .swiper-slide {
  overflow: hidden;
}

.hero-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform: none;
}

.hero-carousel > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #ef2422;
  filter: none;
  opacity: 1;
  transform: none;
}

.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.05);
}

.hero-carousel .swiper-button-next::after,
.hero-carousel .swiper-button-prev::after {
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-carousel .swiper-pagination {
  z-index: 3;
  bottom: 18px;
}

.hero-carousel .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0.7;
}

.hero-carousel .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background: var(--brand-sun);
  opacity: 1;
}

.title-row {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.overline {
  margin: 0 0 7px;
  color: var(--brand-ocean);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 3.2rem);
  line-height: 1.05;
}

.status-chip {
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: none;
  font-size: 0.9rem;
  font-weight: 780;
}

.status-chip .status-chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-sun);
  box-shadow: 0 0 0 5px rgba(248, 173, 45, 0.18);
}

.search-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 96% 0%, rgba(248, 173, 45, 0.2), transparent 32%),
    rgba(8, 51, 68, 0.82);
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: none;
  overflow: hidden;
}

.search-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-45%);
  transition:
    opacity 220ms ease,
    transform 620ms ease;
  pointer-events: none;
}

.search-card:hover::before {
  opacity: 1;
  transform: translateX(45%);
}

.search-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.search-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.search-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.search-hero .overline {
  color: var(--brand-sun);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.search-grid {
  gap: 12px;
}

.search-field {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon label"
    "icon control";
  align-items: center;
  min-height: 60px;
  min-width: 190px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.search-field:hover {
  border-color: rgba(14, 116, 144, 0.45);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.11);
  transform: translateY(-1px);
}

.search-field svg {
  grid-area: icon;
  width: 21px;
  height: 21px;
  margin-right: 12px;
  color: var(--brand-ocean);
}

.search-field span {
  grid-area: label;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1;
}

.search-field input,
.search-field select {
  grid-area: control;
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  font-weight: 700;
}

.search-field.wide {
  flex: 1.2 1 260px;
}

.search-field.split {
  flex: 0.74 1 160px;
}

.search-field.split + .search-field.split::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -7px;
  width: 1px;
  background: rgba(38, 42, 49, 0.34);
  content: "";
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-sun);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(248, 173, 45, 0.34);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.search-button:hover {
  filter: brightness(1.04);
  box-shadow: 0 16px 28px rgba(248, 173, 45, 0.36);
  transform: translateY(-1px);
}

.search-button svg {
  width: 19px;
  height: 19px;
}

.offers-section {
  position: relative;
  padding: 58px 0 64px;
  background:
    linear-gradient(180deg, #f7fbfd 0%, var(--page) 100%);
}

.offers-section::before {
  position: absolute;
  inset: -58px 0 auto;
  z-index: 4;
  height: 78px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 46 C120 12 240 12 360 46 C480 80 600 80 720 46 C840 12 960 12 1080 46 C1200 80 1320 80 1440 46 L1440 120 L0 120 Z' fill='%23f7fbfd'/%3E%3Cpath d='M0 46 C120 12 240 12 360 46 C480 80 600 80 720 46 C840 12 960 12 1080 46 C1200 80 1320 80 1440 46' fill='none' stroke='%230e7490' stroke-width='3' stroke-linecap='round' opacity='0.72'/%3E%3Cpath d='M0 60 C120 26 240 26 360 60 C480 94 600 94 720 60 C840 26 960 26 1080 60 C1200 94 1320 94 1440 60' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' opacity='0.58'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  pointer-events: none;
}

.product-section,
.contact-section {
  position: relative;
  padding: 58px 0 64px;
}

.product-section::before,
.contact-section::before,
.site-footer::before {
  position: absolute;
  inset: -34px 0 auto;
  z-index: 1;
  height: 58px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0 38 C120 12 240 12 360 38 C480 64 600 64 720 38 C840 12 960 12 1080 38 C1200 64 1320 64 1440 38 L1440 100 L0 100 Z' fill='%23f8fafc'/%3E%3Cpath d='M0 38 C120 12 240 12 360 38 C480 64 600 64 720 38 C840 12 960 12 1080 38 C1200 64 1320 64 1440 38' fill='none' stroke='%230e7490' stroke-width='3' stroke-linecap='round' opacity='0.65'/%3E%3Cpath d='M0 52 C120 26 240 26 360 52 C480 78 600 78 720 52 C840 26 960 26 1080 52 C1200 78 1320 78 1440 52' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  pointer-events: none;
}

.site-footer::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0 38 C120 12 240 12 360 38 C480 64 600 64 720 38 C840 12 960 12 1080 38 C1200 64 1320 64 1440 38 L1440 100 L0 100 Z' fill='%23075985'/%3E%3Cpath d='M0 38 C120 12 240 12 360 38 C480 64 600 64 720 38 C840 12 960 12 1080 38 C1200 64 1320 64 1440 38' fill='none' stroke='%23e0f2fe' stroke-width='3' stroke-linecap='round' opacity='0.55'/%3E%3Cpath d='M0 52 C120 26 240 26 360 52 C480 78 600 78 720 52 C840 26 960 26 1080 52 C1200 78 1320 78 1440 52' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E");
}

.section-title {
  margin-bottom: 14px;
}

.section-title h2,
.contact-copy h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.16;
}

.offers-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.offer-tabs {
  min-height: 54px;
  border-bottom: 1px solid var(--line);
}

.offer-tab {
  position: relative;
  flex: 1;
  align-self: stretch;
  border: 0;
  background: #fff;
  color: #565b65;
  font-weight: 900;
  cursor: pointer;
}

.offer-tab::after {
  position: absolute;
  right: 46px;
  bottom: 0;
  left: 46px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--brand-sun), var(--brand-ocean));
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.offer-tab.is-active {
  color: var(--brand-navy);
}

.offer-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 44px 20px 28px;
}

.hotel-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 20px rgba(8, 51, 68, 0.05);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.hotel-card:hover {
  border-color: rgba(14, 116, 144, 0.38);
  box-shadow: 0 22px 44px rgba(8, 51, 68, 0.13);
  transform: translateY(-5px);
}

.hotel-card.is-hidden {
  display: none;
}

.coming-soon-card {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 260px;
  padding: 42px 24px;
  border: 1px dashed rgba(14, 116, 144, 0.45);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 173, 45, 0.16), transparent 42%),
    #fff;
  text-align: center;
}

.coming-soon-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--brand-ocean);
}

.coming-soon-icon svg {
  width: 34px;
  height: 34px;
}

.coming-soon-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.coming-soon-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.coming-soon-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand-sun);
  color: #fff;
  font-weight: 900;
}

.hotel-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(14, 116, 144, 0.22)),
    #f0f9ff;
}

.hotel-image img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  transition: transform 420ms ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

.hotel-image span {
  position: absolute;
  bottom: -1px;
  left: 16px;
  max-width: calc(100% - 32px);
  padding: 5px 8px;
  border-radius: 10px 10px 0 0;
  background: #e0f2fe;
  color: var(--brand-navy);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: capitalize;
}

.hotel-body {
  padding: 16px;
}

.hotel-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.rating {
  gap: 4px;
  margin-bottom: 16px;
}

.rating b {
  padding: 4px 6px;
  border-radius: 9px;
  background: var(--brand-ocean);
  color: #fff;
  font-size: 0.78rem;
}

.rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: #2b2f37;
}

.hotel-body p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-line {
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.price-line strong {
  font-size: 1rem;
}

.price-line del {
  color: var(--muted);
  font-size: 0.86rem;
}

.price-line span {
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-sun);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.hotel-body small {
  color: #5d6470;
  font-weight: 720;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: 0 22px 42px rgba(8, 51, 68, 0.12);
  transform: translateY(-4px);
}

.service-card svg {
  width: 30px;
  height: 30px;
  color: var(--brand-ocean);
}

.service-card h3 {
  margin: 14px 0 8px;
}

.service-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.whatsapp-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.whatsapp-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  color: #0b6b3a;
  font-weight: 850;
}

.whatsapp-benefits svg {
  width: 17px;
  height: 17px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.lead-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 20px 46px rgba(8, 51, 68, 0.1);
}

.whatsapp-card {
  position: relative;
  border-color: rgba(37, 211, 102, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f2fff7 100%);
  box-shadow: 0 24px 52px rgba(12, 113, 65, 0.13);
}

.whatsapp-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    radial-gradient(circle, rgba(37, 211, 102, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.whatsapp-card > * {
  position: relative;
}

.whatsapp-card-head {
  display: flex;
  grid-column: span 2;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: #075e54;
  color: #fff;
}

.whatsapp-card-head > svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: #25d366;
}

.whatsapp-card-head div {
  display: grid;
  gap: 3px;
}

.whatsapp-card-head strong {
  font-size: 0.98rem;
}

.whatsapp-card-head span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 760;
}

.lead-card label {
  display: grid;
  gap: 7px;
}

.lead-card label:first-child,
.lead-card button,
.message-field {
  grid-column: span 2;
}

.lead-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.92);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.lead-card input:focus,
.lead-card select:focus,
.lead-card textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

.lead-card textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
  font: inherit;
}

.whatsapp-submit {
  background: #25d366;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
}

.whatsapp-submit:hover {
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.34);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 17px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(8, 51, 68, 0.2), 0 0 0 8px rgba(37, 211, 102, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: inherit;
  content: "";
  animation: whatsapp-pulse 1800ms ease-out infinite;
}

.whatsapp-float:hover {
  filter: brightness(1.04);
  box-shadow: 0 22px 40px rgba(8, 51, 68, 0.24), 0 0 0 10px rgba(37, 211, 102, 0.16);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.96);
  }

  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

.auth-main {
  padding: 42px 0 68px;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 0.72fr);
  gap: 32px;
  align-items: center;
}

.auth-copy h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.auth-copy p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.auth-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.auth-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-navy);
  font-weight: 850;
}

.auth-benefits svg {
  width: 18px;
  height: 18px;
  color: var(--brand-ocean);
}

.auth-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 26px 62px rgba(8, 51, 68, 0.13);
}

.auth-card h2 {
  margin: 0 0 6px;
}

.auth-card > p,
.google-note {
  color: var(--muted);
  line-height: 1.5;
}

.auth-switch {
  margin: 16px 0 0;
  text-align: center;
}

.auth-switch a {
  color: var(--brand-ocean);
  font-weight: 900;
}

.service-unavailable-inline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(248, 173, 45, 0.58);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 26px rgba(8, 51, 68, 0.1);
}

.service-unavailable-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff4d8;
  color: #9d6a00;
}

.service-unavailable-icon svg { width: 22px; height: 22px; }
.service-unavailable-inline strong { display: block; color: var(--ink); }
.service-unavailable-inline p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.service-unavailable-inline a { display: inline-flex; align-items: center; min-height: 38px; padding: 0 14px; border-radius: 999px; background: var(--brand-ocean); color: #fff; font-size: .82rem; font-weight: 850; }

.nav-pill.is-unavailable { opacity: .78; }
.nav-pill.is-unavailable:not(.is-active)::after { position: absolute; top: 8px; right: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-sun); content: ""; }

@media (max-width: 560px) {
  .service-unavailable-inline { grid-template-columns: auto minmax(0, 1fr); align-items: start; }
  .service-unavailable-inline a { grid-column: 1 / -1; justify-self: start; }
}

.google-box {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  min-width: 0;
}

.google-box > div,
.google-note {
  max-width: 100%;
}

.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.divider::before,
.divider::after {
  height: 1px;
  background: var(--line);
  content: "";
}

.register-form {
  display: grid;
  gap: 13px;
}

.register-form label {
  display: grid;
  gap: 7px;
}

.register-form label > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.register-form input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0 14px;
  outline: 0;
}

.register-form input:focus {
  border-color: var(--brand-ocean);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.14);
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent-row input {
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--brand-ocean);
}

.consent-row a {
  color: var(--brand-ocean);
  font-weight: 900;
}

.auth-message {
  min-height: 22px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 820;
}

.auth-message[data-type="success"] {
  color: #0b7a62;
}

.auth-message[data-type="error"] {
  color: #b92318;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  max-width: min(380px, calc(100% - 44px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  position: relative;
  margin-top: 24px;
  padding: 42px 0 24px;
  background: var(--brand-navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--brand-sun);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer section {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-brand .brand {
  width: 260px;
  min-height: 92px;
  margin-bottom: 6px;
  padding: 0;
}

.footer-brand .brand-logo {
  max-width: 250px;
  height: 88px;
  transform: scale(1.08);
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.footer-bottom-copy {
  display: grid;
  gap: 5px;
}

.footer-partner-credit {
  display: grid;
  position: relative;
  min-width: 226px;
  justify-items: start;
  gap: 6px;
  padding: 10px 38px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.footer-partner-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-partner-logo-window {
  display: block;
  position: relative;
  width: 204px;
  height: 37px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.footer-partner-logo-window img {
  display: block;
  position: absolute;
  top: -76px;
  left: -3px;
  width: 204px;
  max-width: none;
  height: 204px;
}

.footer-partner-credit > svg {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.48);
  transform: translateY(-50%);
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer .footer-partner-credit:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: inherit;
  transform: translateY(-2px);
}

.footer-partner-credit:hover > svg {
  color: #fff;
  transform: translate(2px, calc(-50% - 2px));
}

@media (max-width: 760px) {
  .footer-bottom {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .footer-partner-credit {
    width: min(100%, 270px);
  }
}

.legal-main {
  padding: 42px 0 72px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.legal-nav {
  position: sticky;
  top: 148px;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.legal-nav h2 {
  margin: 0 0 6px;
  color: var(--brand-navy);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 9px 10px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 780;
}

.legal-nav a:hover,
.legal-nav a.is-active {
  background: var(--brand-sand);
  color: var(--brand-navy);
}

.legal-card {
  padding: clamp(22px, 4vw, 42px);
}

.legal-card h1 {
  margin-bottom: 12px;
}

.legal-card h2 {
  margin: 28px 0 10px;
  color: var(--brand-navy);
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: #42515d;
  line-height: 1.72;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-meta {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: var(--brand-navy);
  font-size: 0.84rem;
  font-weight: 850;
}

.client-main {
  padding: 42px 0 68px;
}

.client-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.client-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.client-hero p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.62;
}

.client-status-card,
.client-summary article,
.client-panel,
.client-sidebar {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.client-status-card {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.client-status-card span,
.client-status-card small {
  color: var(--muted);
}

.client-status-card strong {
  font-size: 1.5rem;
}

.client-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.client-summary article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.client-summary svg {
  width: 24px;
  height: 24px;
  color: var(--brand-ocean);
}

.client-summary span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.client-summary strong {
  font-size: 1.55rem;
}

.client-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.client-sidebar {
  position: sticky;
  top: 146px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-lg);
}

.client-sidebar a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 13px;
  color: var(--muted);
  font-weight: 850;
}

.client-sidebar a:hover,
.client-sidebar a.is-active {
  background: rgba(14, 116, 144, 0.12);
  color: var(--brand-navy);
}

.client-sidebar svg {
  width: 18px;
  height: 18px;
}

.client-panels {
  display: grid;
  gap: 18px;
}

.client-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.client-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.client-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}

.profile-form,
.reservation-lookup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-form label,
.reservation-lookup label {
  display: grid;
  gap: 7px;
}

.profile-form span,
.reservation-lookup span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-form input,
.profile-form select,
.profile-form textarea,
.reservation-lookup input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0 14px;
  outline: 0;
}

.profile-form textarea {
  min-height: 108px;
  padding: 14px;
  resize: vertical;
  font: inherit;
}

.profile-form select {
  padding: 0 38px 0 14px;
  color: var(--ink);
  background: #fff;
}

.profile-form input:focus,
.profile-form select:focus,
.profile-form textarea:focus,
.reservation-lookup input:focus {
  border-color: var(--brand-ocean);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.14);
}

.full-field,
.profile-form button {
  grid-column: span 2;
}

.profile-form-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.profile-form-section svg {
  width: 17px;
  height: 17px;
}

.panel-cfdi-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.panel-cfdi-link {
  white-space: nowrap;
}

.points-pill,
.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(248, 173, 45, 0.12);
  color: var(--brand-navy);
  font-weight: 900;
}

.points-progress {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.points-progress > div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef2;
}

.points-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-ocean), var(--brand-sun));
}

.points-progress p {
  margin: 0;
  color: var(--muted);
}

.points-ledger,
.benefit-grid,
.security-list,
.reservation-list {
  display: grid;
  gap: 12px;
}

.points-ledger article,
.reservation-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
}

.points-ledger strong {
  color: #0b6b3a;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
}

.benefit-grid svg {
  width: 24px;
  height: 24px;
  color: var(--brand-ocean);
}

.benefit-grid h3 {
  margin: 10px 0 6px;
}

.benefit-grid p,
.reservation-list p,
.security-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.reservation-lookup {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 14px;
}

.security-list p {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.security-list svg {
  width: 18px;
  height: 18px;
  color: #0b6b3a;
  flex: 0 0 auto;
}

.admin-main {
  padding: 34px 0 72px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-summary article,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.admin-summary article {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.admin-summary strong {
  color: var(--brand-navy);
  font-size: 1.7rem;
}

.admin-summary span {
  color: var(--muted);
  font-weight: 820;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-panel {
  overflow: hidden;
}

.admin-panel h2 {
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

td small {
  color: var(--muted);
}

.status-badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--brand-sand);
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

.has-reveal-motion .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.has-reveal-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .brand {
    width: 292px;
    min-height: 104px;
  }

  .brand-logo {
    max-width: 292px;
    height: 104px;
    transform: scale(1.12);
  }

  .utility-links {
    display: none;
  }

  .hotel-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-summary,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .search-grid {
    flex-wrap: wrap;
  }

  .search-button {
    flex: 1 1 180px;
  }
}

@media (max-width: 760px) {
  .topbar,
  .service-nav,
  .page-container {
    width: min(100% - 24px, 1280px);
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 84px;
    gap: 12px;
  }

  .brand {
    width: min(212px, 100%);
    min-height: 82px;
  }

  .brand-logo {
    max-width: 212px;
    height: 82px;
    transform: scale(1.08);
  }

  .cart-link {
    display: none;
  }

  .top-actions button.round-button {
    display: none;
  }

  .service-nav {
    min-height: 54px;
    padding-left: 0;
  }

  .title-row,
  .search-card-head {
    align-items: start;
    flex-direction: column;
  }

  .search-hero {
    min-height: auto;
    padding: 42px 0 48px;
  }

  .search-card {
    padding: 18px;
  }

  .hero-carousel .swiper-button-next,
  .hero-carousel .swiper-button-prev {
    display: none;
  }

  .search-grid,
  .search-field {
    display: grid;
  }

  .search-grid {
    gap: 10px;
  }

  .search-field,
  .search-button {
    width: 100%;
  }

  .search-field.split + .search-field.split::before {
    display: none;
  }

  .hotel-grid,
  .service-grid,
  .contact-layout,
  .lead-card,
  .auth-layout,
  .client-hero,
  .client-layout,
  .client-summary,
  .benefit-grid,
  .admin-grid,
  .admin-summary,
  .footer-grid,
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout > *,
  .lead-card > *,
  .auth-layout > *,
  .client-hero > *,
  .client-layout > *,
  .legal-layout > * {
    min-width: 0;
  }

  .whatsapp-card-head,
  .message-field {
    grid-column: auto;
  }

  .whatsapp-card-head {
    align-items: flex-start;
  }

  .client-sidebar {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: none;
  }

  .client-sidebar::-webkit-scrollbar {
    display: none;
  }

  .client-sidebar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .client-panel-head,
  .points-ledger article,
  .reservation-list article {
    align-items: start;
    flex-direction: column;
  }

  .profile-form,
  .reservation-lookup {
    grid-template-columns: 1fr;
  }

  .full-field,
  .profile-form button {
    grid-column: auto;
  }

  .legal-nav {
    position: static;
  }

  .hotel-grid {
    padding: 24px 12px 18px;
  }

  .lead-card label:first-child,
  .lead-card button,
  .message-field {
    grid-column: auto;
  }

  .client-summary,
  .benefit-grid,
  .admin-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-card,
  .client-panel,
  .lead-card {
    padding: 20px;
  }

  .auth-copy h1 {
    font-size: 2rem;
  }

  .search-field input,
  .search-field select,
  .lead-card input,
  .lead-card select,
  .lead-card textarea,
  .register-form input,
  .profile-form input,
  .profile-form textarea,
  .reservation-lookup input {
    font-size: 16px;
  }

  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .table-wrap table {
    min-width: 560px;
  }
}

@media (max-width: 430px) {
  .topbar {
    min-height: 76px;
  }

  .brand {
    width: min(194px, 100%);
    min-height: 74px;
  }

  .brand-logo {
    max-width: 194px;
    height: 74px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .section-title h2,
  .contact-copy h2 {
    font-size: 1.55rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 78px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .client-summary,
  .benefit-grid,
  .admin-summary {
    gap: 10px;
  }

  .client-summary article,
  .admin-summary article {
    padding: 14px;
  }
}

/* Interactive international travel readiness guide. */
.travel-ready-section[data-travel-ready-guide] {
  --travel-ready-progress: 0deg;
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  border-block: 1px solid #dce8e7;
  background: #f3f8f7;
}

.travel-ready-section[data-travel-ready-guide]::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #0071bc 0 38%, #f6c84c 38% 66%, #ef6b58 66% 100%);
  content: "";
}

.travel-ready-section[data-travel-ready-guide] .travel-ready-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.travel-ready-section[data-travel-ready-guide] .travel-ready-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: #073b4c;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.04;
}

.travel-ready-section[data-travel-ready-guide] .travel-ready-heading > div > p:not(.overline) {
  max-width: 690px;
  margin: 15px 0 0;
  color: #58717a;
  font-size: 0.98rem;
  line-height: 1.62;
}

.travel-ready-summary {
  display: flex;
  min-width: 192px;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid #c9dcda;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 59, 76, 0.08);
}

.travel-ready-summary-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #073b4c;
  color: #fff;
}

.travel-ready-summary-icon svg { width: 19px; height: 19px; }

.travel-ready-summary small,
.travel-ready-summary strong {
  display: block;
  letter-spacing: 0;
}

.travel-ready-summary small {
  color: #6a7f86;
  font-size: 0.68rem;
  font-weight: 760;
}

.travel-ready-summary strong {
  margin-top: 2px;
  color: #073b4c;
  font-size: 0.88rem;
}

.travel-ready-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  min-height: 640px;
}

.travel-ready-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background: #174f5e;
  color: #fff;
}

.travel-ready-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
}

.travel-ready-backdrop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 36, 48, 0.14), rgba(3, 36, 48, 0.18) 40%, rgba(3, 36, 48, 0.84));
  content: "";
}

.travel-ready-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.travel-ready-visual:hover .travel-ready-backdrop img { transform: scale(1.035); }

.travel-ready-visual-top {
  position: absolute;
  inset: 24px 24px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.travel-ready-visual-top > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(3, 36, 48, 0.72);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 780;
  backdrop-filter: blur(10px);
}

.travel-ready-visual-top svg { width: 14px; height: 14px; color: #ffd166; }

.travel-ready-progress-panel {
  position: absolute;
  right: 24px;
  bottom: 118px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.travel-ready-progress-ring {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#ffd166 var(--travel-ready-progress), rgba(255, 255, 255, 0.22) 0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.travel-ready-progress-ring::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #073b4c;
  content: "";
}

.travel-ready-progress-ring span {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 880;
}

.travel-ready-progress-panel small,
.travel-ready-progress-panel strong {
  display: block;
  letter-spacing: 0;
}

.travel-ready-progress-panel small {
  margin-bottom: 4px;
  color: #ffd166;
  font-size: 0.7rem;
  font-weight: 800;
}

.travel-ready-progress-panel strong {
  max-width: 320px;
  color: #fff;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.13;
}

.travel-ready-route {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.travel-ready-route-line {
  position: absolute;
  top: 17px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.travel-ready-route-stop {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.travel-ready-route-stop svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #174f5e;
}

.travel-ready-route-stop small {
  font-size: 0.62rem;
  font-weight: 760;
}

.travel-ready-route-stop.is-active {
  color: #fff;
  transform: translateY(-2px);
}

.travel-ready-route-stop.is-active svg {
  border-color: #ffd166;
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.16);
  color: #ffd166;
}

.travel-ready-route-stop.is-complete { color: #fff; }
.travel-ready-route-stop.is-complete svg { border-color: #5fd2b6; background: #0b776b; color: #fff; }

.travel-ready-planner {
  padding: 28px;
  border: 1px solid #cfdfdd;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background: #fff;
}

.travel-ready-planner-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.travel-ready-kicker {
  margin: 0 0 4px;
  color: #ef6b58;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.travel-ready-planner-heading h3 {
  margin: 0;
  color: #073b4c;
  font-size: 1.35rem;
}

.travel-ready-reset {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #ccdedd;
  border-radius: 50%;
  background: #f7faf9;
  color: #47666e;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.travel-ready-reset:hover { border-color: #ef6b58; color: #c94f3f; transform: rotate(-22deg); }
.travel-ready-reset svg { width: 16px; height: 16px; }

.travel-ready-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.travel-ready-tab {
  display: grid;
  min-width: 0;
  min-height: 68px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid #d8e4e2;
  border-radius: 8px;
  background: #f8fbfa;
  color: #42616a;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.travel-ready-tab:hover { border-color: #96bcb8; transform: translateY(-1px); }

.travel-ready-tab.is-active {
  border-color: #0071bc;
  background: #eef8fc;
  box-shadow: 0 8px 18px rgba(0, 113, 188, 0.09);
  color: #073b4c;
}

.travel-ready-tab.is-complete { border-color: #84c9b8; background: #f1faf7; }

.travel-ready-tab-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #e5f0ef;
  color: #42616a;
}

.travel-ready-tab.is-active .travel-ready-tab-icon { background: #0071bc; color: #fff; }
.travel-ready-tab.is-complete .travel-ready-tab-icon { background: #0b8a78; color: #fff; }
.travel-ready-tab-icon svg { width: 16px; height: 16px; }

.travel-ready-tab > span:last-child { min-width: 0; }

.travel-ready-tab strong,
.travel-ready-tab small {
  display: block;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

.travel-ready-tab strong {
  font-size: 0.75rem;
  line-height: 1.18;
}

.travel-ready-tab small {
  margin-top: 4px;
  color: #6d8389;
  font-size: 0.61rem;
  font-weight: 750;
}

.travel-ready-tab.is-complete small { color: #0b776b; }

.travel-ready-panel[hidden] { display: none; }

.travel-ready-panel.is-active {
  animation: travel-ready-panel-in 260ms ease both;
}

@keyframes travel-ready-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.travel-ready-panel-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  margin-bottom: 17px;
}

.travel-ready-panel-copy > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #073b4c;
  color: #ffd166;
  font-size: 0.68rem;
  font-weight: 850;
}

.travel-ready-panel-copy h4 {
  margin: 0 0 5px;
  color: #073b4c;
  font-size: 1rem;
}

.travel-ready-panel-copy p {
  margin: 0;
  color: #657b82;
  font-size: 0.76rem;
  line-height: 1.48;
}

.travel-ready-checklist {
  display: grid;
  gap: 7px;
}

.travel-ready-checklist label {
  position: relative;
  display: grid;
  min-height: 44px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid #dce7e5;
  border-radius: 7px;
  background: #fbfdfc;
  color: #34545d;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.travel-ready-checklist label:hover { border-color: #9fc4bf; }

.travel-ready-checklist input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.travel-ready-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #a9bfbd;
  border-radius: 50%;
  background: #fff;
  color: transparent;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.travel-ready-check svg { width: 13px; height: 13px; stroke-width: 3; }

.travel-ready-checklist input:focus-visible + .travel-ready-check {
  outline: 3px solid rgba(0, 113, 188, 0.22);
  outline-offset: 2px;
}

.travel-ready-checklist input:checked + .travel-ready-check {
  border-color: #0b8a78;
  background: #0b8a78;
  color: #fff;
  transform: scale(1.04);
}

.travel-ready-checklist input:checked ~ span:last-child { color: #0b6e62; }

.travel-ready-panel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 17px;
}

.travel-ready-panel-actions a,
.travel-ready-panel-actions button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.travel-ready-panel-actions a {
  border: 1px solid #c8dcda;
  background: #fff;
  color: #075d87;
}

.travel-ready-panel-actions button {
  border: 1px solid #073b4c;
  background: #073b4c;
  color: #fff;
}

.travel-ready-panel-actions a:hover { border-color: #0071bc; }
.travel-ready-panel-actions button:hover { background: #0b5669; }
.travel-ready-panel-actions svg { width: 14px; height: 14px; }

.travel-ready-footer {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 19px;
}

.travel-ready-section[data-travel-ready-guide] .travel-ready-disclaimer {
  max-width: 820px;
  margin: 0;
}

.travel-ready-complete-message {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #0b776b;
  font-size: 0.74rem;
  font-weight: 820;
  opacity: 0;
  transform: translateY(5px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.travel-ready-complete-message svg { width: 17px; height: 17px; }

.travel-ready-section.is-complete .travel-ready-complete-message {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.travel-ready-section.is-complete .travel-ready-progress-ring {
  box-shadow: 0 0 0 7px rgba(95, 210, 182, 0.18), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.travel-ready-tab:focus-visible,
.travel-ready-reset:focus-visible,
.travel-ready-panel-actions a:focus-visible,
.travel-ready-panel-actions button:focus-visible {
  outline: 3px solid rgba(0, 113, 188, 0.24);
  outline-offset: 2px;
}

@media (max-width: 1050px) {
  .travel-ready-experience { grid-template-columns: minmax(0, 1fr); }

  .travel-ready-visual {
    min-height: 460px;
    border-radius: 8px 8px 0 0;
  }

  .travel-ready-planner {
    border-top: 0;
    border-left: 1px solid #cfdfdd;
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 700px) {
  .travel-ready-section[data-travel-ready-guide] { padding: 58px 0 54px; }

  .travel-ready-section[data-travel-ready-guide] .travel-ready-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    margin-bottom: 22px;
  }

  .travel-ready-section[data-travel-ready-guide] .travel-ready-heading h2 { font-size: 1.72rem; line-height: 1.08; }
  .travel-ready-summary { width: 100%; min-width: 0; }
  .travel-ready-visual { min-height: 390px; }
  .travel-ready-progress-panel { bottom: 108px; }
  .travel-ready-planner { padding: 20px; }
  .travel-ready-footer { align-items: flex-start; flex-direction: column; gap: 9px; }
}

@media (max-width: 480px) {
  .travel-ready-section[data-travel-ready-guide] { padding: 44px 0 46px; }

  .travel-ready-section[data-travel-ready-guide] .travel-ready-heading h2 { font-size: 1.48rem; }

  .travel-ready-section[data-travel-ready-guide] .travel-ready-heading > div > p:not(.overline) {
    margin-top: 9px;
    font-size: 0.8rem;
    line-height: 1.43;
  }

  .travel-ready-summary { padding: 9px 10px; }
  .travel-ready-summary-icon { width: 34px; height: 34px; }
  .travel-ready-visual { min-height: 330px; }

  .travel-ready-visual-top {
    inset: 13px 13px auto;
    align-items: flex-start;
  }

  .travel-ready-visual-top > span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.59rem;
  }

  .travel-ready-progress-panel {
    right: 14px;
    bottom: 93px;
    left: 14px;
    gap: 10px;
  }

  .travel-ready-progress-ring { width: 60px; height: 60px; }
  .travel-ready-progress-ring::before { inset: 6px; }
  .travel-ready-progress-ring span { font-size: 0.8rem; }
  .travel-ready-progress-panel strong { font-size: 1rem; }

  .travel-ready-route {
    right: 10px;
    bottom: 13px;
    left: 10px;
    gap: 3px;
  }

  .travel-ready-route-line { top: 14px; }
  .travel-ready-route-stop { gap: 3px; }

  .travel-ready-route-stop svg {
    width: 29px;
    height: 29px;
    padding: 7px;
  }

  .travel-ready-route-stop small { font-size: 0.53rem; }

  .travel-ready-planner { padding: 13px; }
  .travel-ready-planner-heading { margin-bottom: 12px; }
  .travel-ready-planner-heading h3 { font-size: 1.08rem; }

  .travel-ready-tabs {
    gap: 6px;
    margin-bottom: 15px;
  }

  .travel-ready-tab {
    min-height: 58px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    padding: 7px;
  }

  .travel-ready-tab-icon { width: 28px; height: 28px; }
  .travel-ready-tab-icon svg { width: 14px; height: 14px; }
  .travel-ready-tab strong { font-size: 0.68rem; }
  .travel-ready-tab small { margin-top: 2px; font-size: 0.55rem; }

  .travel-ready-panel-copy {
    gap: 9px;
    margin-bottom: 12px;
  }

  .travel-ready-panel-copy > span { width: 27px; height: 27px; font-size: 0.6rem; }
  .travel-ready-panel-copy h4 { font-size: 0.9rem; }
  .travel-ready-panel-copy p { font-size: 0.69rem; line-height: 1.4; }

  .travel-ready-checklist { gap: 5px; }

  .travel-ready-checklist label {
    min-height: 40px;
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 7px;
    padding: 6px 8px;
    font-size: 0.66rem;
  }

  .travel-ready-check { width: 21px; height: 21px; }
  .travel-ready-panel-actions { align-items: stretch; flex-direction: column; gap: 6px; margin-top: 12px; }

  .travel-ready-panel-actions a,
  .travel-ready-panel-actions button {
    width: 100%;
    min-height: 36px;
    font-size: 0.64rem;
  }

  .travel-ready-footer { margin-top: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .travel-ready-backdrop img,
  .travel-ready-route-stop,
  .travel-ready-reset,
  .travel-ready-tab,
  .travel-ready-check,
  .travel-ready-complete-message {
    transition: none;
  }

  .travel-ready-panel.is-active { animation: none; }
}

/* Live Caribbean travel inspiration. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.caribe-inspiration-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  border-bottom: 1px solid #e2e9e7;
  background: #fff;
}

.caribe-inspiration-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.caribe-inspiration-heading h2 {
  margin: 0;
  color: #073b4c;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.05;
}

.caribe-inspiration-heading > div > p:not(.overline) {
  max-width: 690px;
  margin: 12px 0 0;
  color: #5a7078;
  font-size: 0.96rem;
  line-height: 1.58;
}

.caribe-inspiration-live {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #bcd8d2;
  border-radius: 999px;
  background: #f1faf7;
  color: #0b776b;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.caribe-inspiration-live svg {
  width: 15px;
  height: 15px;
  color: #ef6b58;
}

.caribe-news-content {
  min-height: 420px;
}

.caribe-news-shell {
  position: relative;
}

.caribe-news-toolbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.caribe-news-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #45626a;
  font-size: 0.75rem;
  font-weight: 760;
}

.caribe-news-count svg {
  width: 16px;
  height: 16px;
  color: #ef6b58;
}

.caribe-news-navigation {
  display: flex;
  gap: 7px;
}

.caribe-news-navigation button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #cadbd8;
  border-radius: 50%;
  background: #fff;
  color: #073b4c;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.caribe-news-navigation button:hover:not(:disabled) {
  border-color: #073b4c;
  background: #073b4c;
  color: #fff;
  transform: translateY(-1px);
}

.caribe-news-navigation button:disabled {
  cursor: default;
  opacity: 0.38;
}

.caribe-news-navigation svg { width: 17px; height: 17px; }

.caribe-news-carousel {
  overflow: visible;
}

.caribe-news-carousel .swiper-wrapper {
  align-items: stretch;
}

.caribe-news-card {
  display: flex;
  height: auto;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d7e2df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 59, 76, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.caribe-news-card:hover {
  border-color: #93bcb4;
  box-shadow: 0 20px 38px rgba(7, 59, 76, 0.13);
  transform: translateY(-3px);
}

.caribe-news-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.48;
  background: #dcebea;
}

.caribe-news-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(3, 36, 48, 0.54), transparent);
  content: "";
  pointer-events: none;
}

.caribe-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.caribe-news-card:hover .caribe-news-image img { transform: scale(1.04); }

.caribe-news-source {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 1;
  display: inline-flex;
  max-width: calc(100% - 22px);
  min-height: 27px;
  align-items: center;
  padding: 0 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(3, 36, 48, 0.75);
  color: #fff;
  font-size: 0.61rem;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.caribe-news-date {
  position: absolute;
  right: 11px;
  bottom: 9px;
  z-index: 1;
  color: #fff;
  font-size: 0.61rem;
  font-weight: 760;
}

.caribe-news-body {
  display: flex;
  min-height: 222px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

.caribe-news-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: #0b776b;
  font-size: 0.62rem;
  font-weight: 820;
  text-transform: uppercase;
}

.caribe-news-category svg { width: 14px; height: 14px; color: #ef6b58; }

.caribe-news-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #073b4c;
  font-size: 1rem;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.caribe-news-description {
  display: -webkit-box;
  margin: 10px 0 16px;
  overflow: hidden;
  color: #647a81;
  font-size: 0.75rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.caribe-news-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  padding: 0 13px;
  border: 1px solid #073b4c;
  border-radius: 7px;
  background: #073b4c;
  color: #fff;
  font-size: 0.69rem;
  font-weight: 820;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.caribe-news-link:hover {
  border-color: #ef6b58;
  background: #ef6b58;
  transform: translateX(2px);
}

.caribe-news-link svg { width: 14px; height: 14px; }

.caribe-news-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.caribe-news-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: #8aa49f;
  opacity: 0.42;
}

.caribe-news-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #ef6b58;
  opacity: 1;
}

.caribe-news-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 15px 0 0;
  color: #74878c;
  font-size: 0.65rem;
  line-height: 1.45;
}

.caribe-news-note svg { width: 14px; height: 14px; flex: 0 0 auto; color: #0071bc; }

.caribe-news-state {
  display: grid;
  min-height: 330px;
  place-items: center;
  border: 1px solid #d8e4e1;
  border-radius: 8px;
  background: #f7faf9;
  text-align: center;
}

.caribe-news-state > div { max-width: 430px; padding: 28px; }

.caribe-news-state-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 13px;
  place-items: center;
  border-radius: 50%;
  background: #e7f4f0;
  color: #0b776b;
}

.caribe-news-state-icon svg { width: 21px; height: 21px; }
.caribe-news-state strong { display: block; color: #073b4c; font-size: 1rem; }
.caribe-news-state p { margin: 7px 0 0; color: #667d84; font-size: 0.76rem; line-height: 1.5; }

.caribe-news-retry {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  padding: 0 13px;
  border: 1px solid #073b4c;
  border-radius: 7px;
  background: #073b4c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

.caribe-news-retry svg { width: 14px; height: 14px; }

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

.caribe-news-skeleton span {
  display: block;
  min-height: 390px;
  border: 1px solid #e0e9e7;
  border-radius: 8px;
  background: linear-gradient(100deg, #edf3f1 30%, #f8faf9 48%, #edf3f1 66%);
  background-size: 220% 100%;
  animation: caribe-news-loading 1.3s linear infinite;
}

@keyframes caribe-news-loading {
  to { background-position-x: -220%; }
}

.caribe-news-navigation button:focus-visible,
.caribe-news-link:focus-visible,
.caribe-news-retry:focus-visible {
  outline: 3px solid rgba(0, 113, 188, 0.24);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .caribe-inspiration-section { padding: 58px 0 54px; }

  .caribe-inspiration-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 15px;
    margin-bottom: 22px;
  }

  .caribe-inspiration-heading h2 { font-size: 1.72rem; }
  .caribe-inspiration-live { min-height: 32px; justify-self: start; }
  .caribe-news-content { min-height: 360px; }
  .caribe-news-skeleton { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .caribe-news-skeleton span:last-child { display: none; }
}

@media (max-width: 480px) {
  .caribe-inspiration-section { padding: 44px 0 46px; }
  .caribe-inspiration-heading { margin-bottom: 16px; }
  .caribe-inspiration-heading h2 { font-size: 1.48rem; }

  .caribe-inspiration-heading > div > p:not(.overline) {
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .caribe-inspiration-live { font-size: 0.64rem; }
  .caribe-news-toolbar { min-height: 34px; margin-bottom: 9px; }
  .caribe-news-count { font-size: 0.66rem; }
  .caribe-news-navigation button { width: 32px; height: 32px; }
  .caribe-news-body { min-height: 196px; padding: 12px; }
  .caribe-news-card h3 { font-size: 0.84rem; line-height: 1.25; }
  .caribe-news-description { margin: 7px 0 11px; font-size: 0.67rem; line-height: 1.4; }
  .caribe-news-link { min-height: 34px; padding: 0 10px; font-size: 0.64rem; }
  .caribe-news-source { top: 7px; left: 7px; max-width: calc(100% - 14px); min-height: 23px; font-size: 0.55rem; }
  .caribe-news-date { right: 7px; bottom: 6px; font-size: 0.55rem; }
  .caribe-news-skeleton { gap: 7px; }
  .caribe-news-skeleton span { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  .caribe-news-card,
  .caribe-news-image img,
  .caribe-news-link,
  .caribe-news-navigation button {
    transition: none;
  }

  .caribe-news-skeleton span { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-carousel .swiper-slide img {
    transform: none !important;
  }
}

/* Final light Copa palette layer. */
:root {
  --brand-navy: #003876;
  --brand-deep: #002d62;
  --brand-ocean: #0071bc;
  --brand-sky: #8dcaed;
  --brand-sun: #dceffb;
  --brand-sand: #f5fbff;
  --accent-red: #0071bc;
  --ink: #183f6c;
  --muted: #5e728b;
  --line: #d4e4f1;
  --page: #f6faff;
}

.client-main[data-client-dashboard] {
  background: #f6faff;
}

.panel-auth-gate {
  display: grid;
  min-height: min(680px, calc(100vh - 76px));
  place-items: center;
  padding: 48px 20px;
  background: #f6faff;
}

[data-panel-auth-gate][hidden],
[data-client-dashboard][hidden] {
  display: none !important;
}

.panel-auth-gate-card {
  width: min(100%, 520px);
  padding: 42px;
  border: 1px solid #d4e4f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 56, 118, 0.1);
  text-align: center;
}

.panel-auth-gate-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e8f5ff;
  color: #005aab;
}

.panel-auth-gate-icon svg {
  width: 28px;
  height: 28px;
}

.panel-auth-gate-card h1 {
  margin: 8px 0 12px;
  color: #062f42;
}

.panel-auth-gate-card > p:not(.overline) {
  margin: 0 auto;
  color: #64777f;
  line-height: 1.65;
}

.panel-auth-gate-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.panel-auth-gate-actions .primary-link,
.panel-auth-gate-actions .secondary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.panel-auth-gate-actions .primary-link {
  border: 1px solid #005aab;
  background: #005aab;
  color: #fff;
}

.panel-auth-gate-actions .secondary-link {
  border: 1px solid #bfd3e3;
  background: #fff;
  color: #005aab;
  cursor: pointer;
}

.dashboard-data-notice {
  border-color: #b8dbef;
  border-left-color: #0071bc;
  background: #eef8fe;
  color: #003876;
}

.dashboard-hero {
  border-color: #005aab;
  background: #005aab;
  box-shadow: 0 16px 32px rgba(0, 77, 151, 0.16);
}

.dashboard-hero .overline {
  color: #cfeeff;
}

.dashboard-primary-action {
  background: #fff;
  color: #003876;
  box-shadow: 0 10px 20px rgba(0, 38, 89, 0.16);
}

.dashboard-primary-action:hover {
  background: #e6f5fe;
  color: #003876;
}

.dashboard-secondary-action {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.dashboard-tier-card {
  border-color: #93caeb;
  background: #0071bc;
}

.tier-icon {
  background: #fff;
  color: #0071bc;
}

.dashboard-summary article,
.dashboard-panels .client-panel {
  border-color: #d4e4f1;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 77, 151, 0.07);
}

.dashboard-summary article:hover,
.dashboard-panels .client-panel:hover {
  box-shadow: 0 14px 28px rgba(0, 77, 151, 0.11);
}

.dashboard-summary .summary-icon,
.empty-state-icon,
.security-lock {
  background: #e8f5fd;
  color: #0071bc;
}

.dashboard-summary strong,
.dashboard-panels .client-panel h2,
.dashboard-balance-value strong,
.dashboard-benefits-list h3,
.dashboard-empty-row strong,
.reservation-table td strong {
  color: #003876;
}

.client-sidebar.dashboard-sidebar {
  border-color: #c8e0f0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 77, 151, 0.08);
}

.sidebar-label {
  color: #6c8da8;
}

.client-sidebar.dashboard-sidebar a {
  color: #477294;
}

.client-sidebar.dashboard-sidebar a:hover {
  background: #f0f8fe;
  color: #003876;
}

.client-sidebar.dashboard-sidebar a.is-active {
  border-color: #b8dcef;
  background: #e1f2fc;
  color: #003876;
}

.dashboard-assistance-panel {
  border-color: #c9e2f2;
  background: #f0f8fe;
}

.assistant-icon {
  background: #0071bc;
  color: #fff;
}

.dashboard-whatsapp-action {
  background: #25d366;
  color: #063f31;
}

.dashboard-points-progress > div,
.tier-progress {
  background: #deedf7;
}

.dashboard-points-progress span,
.tier-progress span,
.chart-bar:hover,
.chart-bar.is-current {
  background: #0071bc;
}

.chart-bar {
  background: #a9d8ef;
}

.chart-bar.is-empty,
.chart-bar.is-current.is-empty {
  background: #d8e9f4;
}

.activity-callout {
  border-left-color: #0071bc;
  background: #eff8fe;
}

.activity-callout span,
.activity-callout p {
  color: #3f7097;
}

.activity-callout strong,
.points-chart > p svg,
.points-positive,
.dashboard-security-panel .security-list svg,
.security-link {
  color: #0071bc !important;
}

.dashboard-table-wrap {
  border-color: #d6e6f1;
}

.dashboard-table th {
  background: #f1f8fd;
  color: #55758f;
}

.dashboard-table tbody tr:not(.dashboard-empty-row):hover {
  background: #f2f9fe;
}

.table-status {
  background: #e8f5fd;
  color: #0066aa;
}

.benefit-icon {
  background: #e8f5fd;
  color: #0071bc;
}

.dashboard-security-panel {
  border-color: #d4e5f0;
  background: #f9fcff;
}

.dashboard-profile-panel .profile-form input,
.dashboard-profile-panel .profile-form select,
.dashboard-profile-panel .profile-form textarea,
.dashboard-reservation-lookup input {
  border-color: #cfe1ee;
  background: #fbfdff;
}

.dashboard-profile-panel .profile-form input:focus,
.dashboard-profile-panel .profile-form select:focus,
.dashboard-profile-panel .profile-form textarea:focus,
.dashboard-reservation-lookup input:focus {
  border-color: #0071bc;
  box-shadow: 0 0 0 3px rgba(0, 113, 188, 0.13);
}

/* Mercado Libre travel recommendations carousel. */
.marketplace-home-section {
  padding: 18px 0 84px;
  background: #f7fbfe;
}

.marketplace-home-title {
  margin-bottom: 24px;
}

.marketplace-home-copy {
  max-width: 680px;
  margin: 10px 0 0;
  color: #5f7185;
  font-size: 0.98rem;
  line-height: 1.6;
}

.marketplace-home-content {
  min-height: 190px;
}

.marketplace-offers-shell,
.marketplace-state {
  grid-column: 1 / -1;
}

.marketplace-offers-shell {
  min-width: 0;
  padding: 2px 0 0;
}

.marketplace-offers-head,
.marketplace-affiliate,
.marketplace-price-row,
.marketplace-cta,
.marketplace-disclaimer,
.marketplace-state {
  display: flex;
  align-items: center;
}

.marketplace-offers-head {
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.marketplace-offers-head p,
.marketplace-offers-head strong,
.marketplace-offers-head span,
.marketplace-description,
.marketplace-price-row small,
.marketplace-disclaimer,
.marketplace-state p,
.marketplace-state strong {
  margin: 0;
}

.marketplace-offers-head p {
  color: #5f7185;
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketplace-offers-head strong {
  display: block;
  margin-top: 3px;
  color: #003876;
  font-size: 1.15rem;
}

.marketplace-offers-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0066aa;
  font-size: 0.79rem;
  font-weight: 780;
}

.marketplace-offers-head span svg {
  width: 17px;
  height: 17px;
  color: #f2b544;
}

.marketplace-offers-carousel {
  overflow: hidden;
  padding: 2px 0 42px;
}

.marketplace-offers-carousel .swiper-wrapper {
  align-items: stretch;
}

.marketplace-offers-carousel .swiper-slide {
  height: auto;
}

.marketplace-offer-card {
  overflow: hidden;
  border: 1px solid #d7e1eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 56, 118, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.marketplace-offer-card:hover {
  border-color: #9ec8e5;
  box-shadow: 0 18px 32px rgba(0, 56, 118, 0.14);
  transform: translateY(-4px);
}

.marketplace-offer-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.marketplace-offer-image {
  position: relative;
  display: grid;
  min-height: 178px;
  overflow: hidden;
  place-items: center;
  background: #eff7fc;
}

.marketplace-offer-image::before {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d8ecf8;
  content: "";
}

.marketplace-offer-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 360ms ease;
}

.marketplace-offer-card:hover .marketplace-offer-image img {
  transform: scale(1.06);
}

.marketplace-source,
.marketplace-discount {
  position: absolute;
  top: 11px;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 840;
}

.marketplace-source {
  left: 11px;
  background: #fff;
  color: #003876;
  box-shadow: 0 3px 10px rgba(0, 56, 118, 0.1);
}

.marketplace-discount {
  right: 11px;
  background: #f2b544;
  color: #002d62;
}

.marketplace-offer-body {
  display: flex;
  min-height: 224px;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.marketplace-affiliate {
  gap: 6px;
  margin: 0 0 9px;
  color: #53718d;
  font-size: 0.71rem;
  font-weight: 760;
}

.marketplace-affiliate svg {
  width: 15px;
  height: 15px;
  color: #0071bc;
}

.marketplace-offer-body h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #15375f;
  font-size: 1rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.marketplace-description {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.9em;
  margin-top: 8px;
  color: #5f7185;
  font-size: 0.79rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.marketplace-price-row {
  align-items: end;
  justify-content: space-between;
  gap: 9px;
  margin-top: auto;
  padding-top: 14px;
}

.marketplace-price-row small {
  display: block;
  margin-bottom: 3px;
  color: #71849a;
  font-size: 0.69rem;
  font-weight: 750;
}

.marketplace-price-row strong {
  display: block;
  color: #003876;
  font-size: 1.05rem;
}

.marketplace-original-price del {
  color: #74869a;
  font-size: 0.74rem;
}

.marketplace-cta {
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e2ebf2;
  color: #0066aa;
  font-size: 0.82rem;
  font-weight: 820;
}

.marketplace-cta svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.marketplace-offer-card:hover .marketplace-cta svg {
  transform: translate(2px, -2px);
}

.marketplace-offers-carousel .swiper-button-next,
.marketplace-offers-carousel .swiper-button-prev {
  top: auto;
  bottom: 0;
  width: 31px;
  height: 31px;
  margin: 0;
  border: 1px solid #c8ddea;
  border-radius: 50%;
  background: #fff;
  color: #0066aa;
}

.marketplace-offers-carousel .swiper-button-prev {
  right: 42px;
  left: auto;
}

.marketplace-offers-carousel .swiper-button-next {
  right: 0;
}

.marketplace-offers-carousel .swiper-button-next::after,
.marketplace-offers-carousel .swiper-button-prev::after {
  font-size: 12px;
  font-weight: 900;
}

.marketplace-offers-carousel .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: auto;
}

.marketplace-offers-carousel .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #9fc9e5;
  opacity: 1;
}

.marketplace-offers-carousel .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #0071bc;
}

.marketplace-disclaimer {
  gap: 7px;
  margin: 16px 0 0;
  color: #6a7d90;
  font-size: 0.75rem;
  line-height: 1.45;
}

.marketplace-disclaimer svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #0071bc;
}

.marketplace-state {
  justify-content: center;
  gap: 14px;
  min-height: 190px;
  padding: 30px;
  border: 1px dashed #bdd9e9;
  border-radius: 12px;
  background: #fbfdff;
  text-align: left;
}

.marketplace-state-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e6f4fc;
  color: #0071bc;
}

.marketplace-state.is-loading .marketplace-state-icon svg {
  animation: marketplace-spin 1.1s linear infinite;
}

.marketplace-state strong {
  color: #003876;
}

.marketplace-state p {
  max-width: 520px;
  margin-top: 4px;
  color: #5f7185;
  line-height: 1.5;
}

/* International travel preparation guide. */
.travel-ready-section {
  position: relative;
  padding: 88px 0 94px;
  background: #eaf5fa;
}

.travel-ready-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.travel-ready-heading > div > p:not(.overline) {
  max-width: 720px;
  margin: 12px 0 0;
  color: #597187;
  font-size: 0.98rem;
  line-height: 1.6;
}

.travel-ready-checker {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid #a9cede;
  border-radius: 8px;
  background: #fff;
  color: #005d9f;
  font-size: 0.84rem;
  font-weight: 840;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.travel-ready-checker:hover {
  border-color: #0071bc;
  box-shadow: 0 12px 24px rgba(0, 81, 133, 0.12);
  transform: translateY(-2px);
}

.travel-ready-checker svg { width: 17px; height: 17px; }

.travel-ready-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
}

.travel-ready-gallery {
  position: relative;
  min-height: 492px;
}

.travel-ready-photo-main,
.travel-ready-photo-inset {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8e8ef;
}

.travel-ready-photo-main {
  inset: 0 12% 0 0;
}

.travel-ready-photo-main::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(0, 37, 65, 0.5), transparent);
  content: "";
  pointer-events: none;
}

.travel-ready-photo-main img,
.travel-ready-photo-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.travel-ready-gallery:hover img { transform: scale(1.035); }

.travel-ready-photo-inset {
  right: 0;
  bottom: 32px;
  width: 46%;
  aspect-ratio: 0.93;
  border: 5px solid #eaf5fa;
  box-shadow: 0 18px 38px rgba(0, 48, 76, 0.18);
}

.travel-ready-gallery-note {
  position: absolute;
  bottom: 26px;
  left: 22px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
  color: #fff;
}

.travel-ready-gallery-note svg {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  color: #ffd575;
}

.travel-ready-gallery-note span {
  font-size: 0.82rem;
  font-weight: 850;
}

.travel-ready-gallery-note small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.67rem;
  font-weight: 700;
}

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

.travel-tip-card {
  min-height: 238px;
  padding: 21px;
  border: 1px solid #cfe1e9;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(0, 56, 93, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.travel-tip-card:hover {
  border-color: #8ec1dd;
  box-shadow: 0 16px 28px rgba(0, 56, 93, 0.12);
  transform: translateY(-3px);
}

.travel-tip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.travel-tip-top span {
  color: #69849a;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.travel-tip-top svg {
  width: 39px;
  height: 39px;
  padding: 9px;
  border-radius: 8px;
  background: #dff2fa;
  color: #0071bc;
}

.travel-tip-card h3 {
  margin: 22px 0 9px;
  color: #003876;
  font-size: 1rem;
}

.travel-tip-card p {
  margin: 0;
  color: #5b7185;
  font-size: 0.84rem;
  line-height: 1.56;
}

.travel-ready-disclaimer {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  gap: 9px;
  margin: 24px 0 0;
  color: #597187;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.5;
}

.travel-ready-disclaimer svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #0071bc;
}

.whatsapp-float {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.whatsapp-float.is-guide-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 34px));
}

@keyframes marketplace-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .marketplace-home-section {
    padding: 12px 0 58px;
  }

  .marketplace-home-copy {
    font-size: 0.9rem;
  }

  .marketplace-offers-head {
    align-items: start;
  }

  .marketplace-offers-head span {
    display: none;
  }

  .marketplace-offer-image {
    min-height: 166px;
  }

  .marketplace-state {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 150px;
    padding: 22px;
  }
}

/* Public visa application tracking. */
.visa-tracking-field {
  flex: 1 1 520px !important;
}

.visa-tracking-field input {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visa-tracking-button {
  min-width: 190px;
}

.visa-tracking-result {
  margin-top: 18px;
}

.visa-tracking-panel,
.visa-tracking-message {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(1, 34, 65, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.visa-tracking-panel {
  padding: 22px;
}

.visa-tracking-panel-head,
.visa-tracking-meta,
.visa-tracking-current,
.visa-tracking-panel-foot,
.visa-tracking-message {
  display: flex;
  align-items: center;
}

.visa-tracking-panel-head {
  justify-content: space-between;
  gap: 18px;
}

.visa-tracking-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px !important;
  color: #fbc35c !important;
  font-size: 0.72rem !important;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visa-tracking-eyebrow svg {
  width: 15px;
  height: 15px;
}

.visa-tracking-panel h3 {
  margin: 0;
  color: #fff;
  font-size: 1.16rem;
}

.visa-tracking-panel-head > div > p:not(.visa-tracking-eyebrow) {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.visa-tracking-status {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  max-width: 225px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.visa-tracking-status.is-progress {
  border-color: rgba(139, 212, 248, 0.36);
  background: rgba(59, 156, 211, 0.22);
  color: #d9f2ff;
}

.visa-tracking-status.is-success {
  border-color: rgba(114, 230, 172, 0.4);
  background: rgba(34, 142, 92, 0.26);
  color: #dcffe9;
}

.visa-tracking-status.is-attention {
  border-color: rgba(251, 195, 92, 0.48);
  background: rgba(187, 123, 10, 0.25);
  color: #fff1ca;
}

.visa-tracking-status.is-negative {
  border-color: rgba(255, 161, 154, 0.43);
  background: rgba(166, 49, 42, 0.26);
  color: #ffe0dd;
}

.visa-tracking-meta {
  align-items: stretch;
  gap: 0;
  margin: 19px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.visa-tracking-meta > div {
  display: grid;
  flex: 1 1 160px;
  gap: 4px;
  padding: 12px 14px;
}

.visa-tracking-meta > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.visa-tracking-meta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  font-weight: 750;
  text-transform: uppercase;
}

.visa-tracking-meta strong {
  color: #fff;
  font-size: 0.82rem;
}

.visa-tracking-current {
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border-left: 3px solid var(--brand-sun);
  background: rgba(248, 173, 45, 0.12);
}

.visa-tracking-current > svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: #ffd47c;
}

.visa-tracking-current strong {
  color: #fff;
  font-size: 0.87rem;
}

.visa-tracking-current p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  line-height: 1.45;
}

.visa-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  gap: 0;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.visa-timeline-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}

.visa-timeline-step::before {
  position: absolute;
  top: 15px;
  right: 50%;
  left: -50%;
  z-index: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.17);
  content: "";
}

.visa-timeline-step:first-child::before {
  left: 50%;
}

.visa-timeline-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #0a395f;
}

.visa-timeline-marker svg {
  width: 14px;
  height: 14px;
}

.visa-timeline-step.is-complete,
.visa-timeline-step.is-current {
  color: #fff;
}

.visa-timeline-step.is-complete::before,
.visa-timeline-step.is-current::before {
  background: #fbc35c;
}

.visa-timeline-step.is-complete .visa-timeline-marker {
  border-color: #70d9aa;
  background: #16845c;
}

.visa-timeline-step.is-current .visa-timeline-marker {
  border-color: #ffe0a0;
  background: var(--brand-sun);
  color: #573500;
  box-shadow: 0 0 0 5px rgba(248, 173, 45, 0.15);
}

.visa-tracking-panel-foot {
  justify-content: space-between;
  gap: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.visa-tracking-panel-foot p,
.visa-tracking-panel-foot a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 0.75rem;
}

.visa-tracking-panel-foot p {
  color: rgba(255, 255, 255, 0.62);
}

.visa-tracking-panel-foot p svg,
.visa-tracking-panel-foot a svg {
  width: 15px;
  height: 15px;
}

.visa-tracking-panel-foot a {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.visa-tracking-panel-foot a:hover {
  border-color: #fbc35c;
  background: rgba(248, 173, 45, 0.16);
  transform: translateY(-1px);
}

.visa-tracking-message {
  gap: 12px;
  padding: 16px;
}

.visa-tracking-message > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.visa-tracking-message.is-loading > svg {
  color: #bfe9ff;
  animation: visa-tracking-spin 1s linear infinite;
}

.visa-tracking-message.is-error > svg {
  color: #ffd17f;
}

.visa-tracking-message strong {
  color: #fff;
  font-size: 0.88rem;
}

.visa-tracking-message p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.79rem;
  line-height: 1.4;
}

.panel-visa-tracking {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: #0071bc;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
}

.panel-visa-tracking:hover {
  color: #005aab;
  text-decoration: underline;
}

.panel-visa-tracking svg {
  width: 14px;
  height: 14px;
}

@keyframes visa-tracking-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .visa-tracking-button {
    flex: 1 1 100%;
  }

  .visa-tracking-panel {
    padding: 18px;
  }

  .visa-tracking-panel-head,
  .visa-tracking-panel-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .visa-tracking-status {
    max-width: none;
  }

  .visa-tracking-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .visa-tracking-meta > div + div {
    border-left: 0;
  }

  .visa-tracking-meta > div:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .visa-tracking-meta > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .visa-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 18px 0;
  }

  .visa-timeline-step {
    grid-template-columns: 32px 1fr;
    justify-items: start;
    gap: 10px;
    min-height: 43px;
    padding: 0 0 10px;
    text-align: left;
  }

  .visa-timeline-step::before,
  .visa-timeline-step:first-child::before {
    top: 31px;
    right: auto;
    bottom: -1px;
    left: 15px;
    width: 2px;
    height: auto;
  }

  .visa-timeline-step:last-child::before {
    display: none;
  }

  .visa-timeline-step span:last-child {
    align-self: center;
  }
}

@media (max-width: 460px) {
  .visa-tracking-meta {
    grid-template-columns: 1fr;
  }

  .visa-tracking-meta > div:nth-child(even) {
    border-left: 0;
  }

  .visa-tracking-meta > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Directly managed visa services and checkout request. */
.visa-service-card {
  display: flex;
  flex-direction: column;
}

.visa-service-image {
  min-height: 184px;
}

.visa-service-image img {
  height: 100%;
}

.visa-service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.visa-country,
.visa-processing,
.visa-requirements li,
.visa-card-footer,
.visa-checkout-note,
.visa-checkout-actions,
.visa-purchase-summary {
  display: flex;
  align-items: center;
}

.visa-country {
  gap: 6px;
  margin: 0 0 9px !important;
  color: var(--brand-ocean) !important;
  font-size: 0.77rem !important;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.visa-country svg,
.visa-processing svg,
.visa-requirements svg,
.visa-checkout-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.visa-service-body > p:not(.visa-country) {
  min-height: 42px;
  line-height: 1.5;
}

.visa-processing {
  gap: 7px;
  margin: 14px 0 12px;
  color: #55707a;
  font-size: 0.8rem;
  font-weight: 720;
}

.visa-requirements {
  display: grid;
  gap: 7px;
  min-height: 75px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.visa-requirements li {
  align-items: flex-start;
  gap: 7px;
  color: #516a73;
  font-size: 0.78rem;
  line-height: 1.35;
}

.visa-requirements svg {
  margin-top: 1px;
  color: #17865b;
}

.visa-card-footer {
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e2ebed;
}

.visa-card-footer div {
  display: grid;
  gap: 2px;
}

.visa-card-footer small {
  color: #71848b;
  font-size: 0.7rem;
}

.visa-card-footer strong {
  color: var(--brand-deep);
  font-size: 1.08rem;
}

.visa-buy-button,
.visa-primary-button,
.visa-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visa-buy-button {
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--brand-ocean);
  background: var(--brand-ocean);
  color: #fff;
  font-size: 0.82rem;
}

.visa-buy-button:hover,
.visa-primary-button:hover {
  background: var(--brand-deep);
  box-shadow: 0 10px 20px rgba(5, 74, 102, 0.2);
}

.visa-buy-button svg {
  width: 15px;
  height: 15px;
}

.visa-checkout-dialog {
  width: min(calc(100% - 40px), 640px);
  max-height: min(760px, calc(100dvh - 40px));
  overflow: auto;
  padding: 30px;
  border: 1px solid #d7e4e7;
  border-radius: 8px;
  background: #fff;
  color: var(--brand-deep);
  box-shadow: 0 28px 80px rgba(2, 39, 52, 0.28);
}

.visa-checkout-dialog::backdrop {
  background: rgba(2, 39, 52, 0.58);
  backdrop-filter: blur(4px);
}

.visa-checkout-close {
  position: absolute;
  top: 15px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #edf4f5;
  color: #4e6871;
  font-size: 1.55rem;
  line-height: 1;
}

.visa-checkout-close:hover {
  background: #dcebed;
  color: var(--brand-deep);
}

.visa-checkout-heading {
  max-width: 510px;
  margin-bottom: 22px;
}

.visa-checkout-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #087153;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.visa-checkout-heading span svg {
  width: 15px;
  height: 15px;
}

.visa-checkout-heading h2 {
  margin: 9px 0 6px;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.visa-checkout-heading p {
  margin: 0;
  color: #597078;
  line-height: 1.55;
}

.visa-checkout-form {
  display: grid;
  gap: 18px;
}

.visa-purchase-summary {
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border: 1px solid #d8e7ea;
  border-radius: 8px;
  background: #f4fafb;
}

.visa-purchase-summary > div {
  display: grid;
  gap: 3px;
}

.visa-purchase-summary > div:last-child {
  text-align: right;
}

.visa-purchase-summary small,
.visa-purchase-summary span {
  color: #657c84;
  font-size: 0.75rem;
}

.visa-purchase-summary strong {
  color: var(--brand-deep);
  font-size: 0.98rem;
}

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

.visa-checkout-fields label {
  display: grid;
  gap: 7px;
  color: #48616b;
  font-size: 0.78rem;
  font-weight: 780;
}

.visa-checkout-fields input {
  width: 100%;
  min-height: 45px;
  border: 1px solid #cbdcdf;
  border-radius: 8px;
  background: #fff;
  color: var(--brand-deep);
  font: inherit;
  outline: 0;
  padding: 0 12px;
}

.visa-checkout-fields input:focus {
  border-color: var(--brand-ocean);
  box-shadow: 0 0 0 3px rgba(10, 94, 168, 0.13);
}

.visa-checkout-note {
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #5b737a;
  font-size: 0.78rem;
  line-height: 1.45;
}

.visa-checkout-note svg {
  margin-top: 1px;
  color: #17865b;
}

.visa-checkout-actions {
  justify-content: flex-end;
  gap: 10px;
}

.visa-primary-button {
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--brand-ocean);
  background: var(--brand-ocean);
  color: #fff;
}

.visa-primary-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.visa-primary-button svg {
  width: 16px;
  height: 16px;
}

.visa-secondary-button {
  padding: 0 15px;
  border: 1px solid #cadade;
  background: #fff;
  color: #45616b;
}

.visa-secondary-button:hover {
  border-color: #9db7be;
  background: #f4f8f8;
}

.visa-login-prompt {
  margin: -6px 0 0;
  color: #a33a21;
  font-size: 0.82rem;
  text-align: center;
}

.visa-login-prompt a {
  color: var(--brand-ocean);
  font-weight: 850;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .visa-service-body > p:not(.visa-country) {
    min-height: 0;
  }

  .visa-checkout-dialog {
    width: min(calc(100% - 24px), 640px);
    max-height: calc(100dvh - 24px);
    padding: 22px 18px;
  }

  .visa-checkout-fields {
    grid-template-columns: 1fr;
  }

  .visa-purchase-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .visa-purchase-summary > div:last-child {
    text-align: left;
  }

  .visa-checkout-actions {
    flex-direction: column-reverse;
  }

  .visa-checkout-actions button {
    width: 100%;
  }
}

/* Global language and currency preferences. */
.utility-call {
  gap: 6px;
  padding: 0 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.76);
}

.utility-call::after {
  display: block;
}

.utility-call:hover {
  color: #fff;
}

.travel-preference-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.travel-preference-select {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  gap: 5px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.travel-preference-select:hover,
.travel-preference-select:focus-within {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #ffd575;
  transform: translateY(-1px);
}

.travel-preference-select + .travel-preference-select {
  margin-left: 0;
}

.preference-token {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
}

.preference-flag {
  object-fit: contain;
}

.preference-currency-icon {
  object-fit: contain;
}

.travel-preference-select select {
  min-width: 0;
  padding: 0 13px 0 0;
  border: 0;
  outline: 0;
  appearance: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 6px) 52%, calc(100% - 2px) 52%;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  color: inherit;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0;
  cursor: pointer;
}

.travel-preference-select.is-changing .preference-token {
  animation: preference-token-pop 420ms cubic-bezier(0.2, 0.85, 0.25, 1);
}

.travel-preference-select.is-changing {
  border-color: transparent;
  box-shadow: none;
}

@keyframes preference-token-pop {
  0% { transform: scale(0.78) rotate(-8deg); opacity: 0.42; }
  55% { transform: scale(1.15) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.travel-preference-select option {
  color: #003b70;
  background: #fff;
}

.payment-header-inner .travel-preference-controls {
  margin-left: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.payment-header-inner .travel-preference-select {
  color: #075a9e;
}

.payment-header-inner .preference-token {
  border: 0;
  background: transparent;
}

.payment-header-inner .travel-preference-select:hover,
.payment-header-inner .travel-preference-select:focus-within {
  background: #e7f3fb;
}

@media (max-width: 760px) {
  .travel-preference-controls {
    min-height: 34px;
    gap: 6px;
    padding: 0;
  }

  .travel-preference-select {
    min-height: 34px;
    gap: 4px;
    padding: 0 2px;
  }

  .preference-token {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .travel-preference-select select {
    font-size: 0.69rem;
  }

  .payment-header-inner {
    gap: 10px;
  }

  .payment-header-inner .payment-header-security {
    display: none;
  }
}


/* Centro de Ayuda */
.help-main {
  background: #f6faff;
}

.help-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 78px;
  background: #005aab;
  color: #fff;
}

.help-hero::after {
  position: absolute;
  right: 0;
  bottom: -34px;
  left: 0;
  height: 68px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #f6faff;
  content: "";
}

.help-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.help-hero .overline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  color: #c9ebff;
}

.help-hero .overline svg {
  width: 16px;
  height: 16px;
}

.help-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
}

.help-hero h1 + p {
  max-width: 600px;
  margin: 12px 0 0;
  color: #e3f4ff;
  font-size: 1.03rem;
  line-height: 1.65;
}

.help-account-status {
  display: flex;
  min-width: 250px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(214, 241, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.help-account-status > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #006aad;
}

.help-account-status svg {
  width: 17px;
  height: 17px;
}

.help-account-status small,
.help-account-status strong {
  display: block;
}

.help-account-status small {
  margin-bottom: 2px;
  color: #c9ebff;
  font-size: 0.75rem;
}

.help-account-status strong {
  color: #fff;
  font-size: 0.87rem;
}

.help-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -38px;
  margin-bottom: 52px;
}

.help-action-tile {
  position: relative;
  display: grid;
  min-height: 144px;
  align-content: start;
  gap: 7px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #d7e8f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 70, 126, 0.07);
  color: #10436f;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.help-action-tile:hover {
  border-color: #97c9e7;
  box-shadow: 0 14px 30px rgba(0, 79, 139, 0.13);
  transform: translateY(-3px);
}

.help-action-tile > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: #eaf6fd;
  color: #006aad;
}

.help-action-tile > span svg {
  width: 18px;
  height: 18px;
}

.help-action-tile strong {
  color: #063b6b;
  font-size: 0.9rem;
}

.help-action-tile small {
  overflow: hidden;
  color: #66839b;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.help-action-arrow {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 16px;
  height: 16px;
  color: #78a6c2;
  transition: color 180ms ease, transform 180ms ease;
}

.help-action-tile:hover .help-action-arrow {
  color: #006aad;
  transform: translate(2px, -2px);
}

.help-action-tile.is-chat {
  border-color: #b6e4d0;
}

.help-action-tile.is-chat > span {
  background: #e9f8ef;
  color: #16834a;
}

.help-action-tile.is-status {
  border-color: #b8d9ec;
  background: #f1f9fe;
}

.help-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
  gap: 22px;
  margin-bottom: 56px;
}

.help-request-panel,
.help-requests-panel {
  min-width: 0;
  border: 1px solid #d5e6f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 72, 127, 0.06);
}

.help-request-panel {
  padding: clamp(20px, 3vw, 31px);
}

.help-requests-panel {
  padding: 23px;
}

.help-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e1edf5;
}

.help-section-head .overline {
  margin: 0 0 5px;
  color: #7190a8;
}

.help-section-head h2 {
  margin: 0;
  color: #073d6e;
  font-size: 1.35rem;
}

.help-secure-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #31805a;
  font-size: 0.74rem;
  font-weight: 750;
  white-space: nowrap;
}

.help-secure-mark svg {
  width: 16px;
  height: 16px;
}

.help-login-gate {
  display: flex;
  gap: 12px;
  margin: 20px 0 2px;
  padding: 14px 0 15px;
  border-bottom: 1px solid #e1edf5;
}

.help-login-gate > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border-radius: 8px;
  background: #eef8fe;
  color: #006cad;
}

.help-login-gate svg {
  width: 17px;
  height: 17px;
}

.help-login-gate strong,
.help-login-gate p,
.help-login-gate a {
  display: block;
}

.help-login-gate strong {
  color: #073d6e;
  font-size: 0.88rem;
}

.help-login-gate p {
  margin: 4px 0 7px;
  color: #6a879f;
  font-size: 0.81rem;
  line-height: 1.45;
}

.help-login-gate a,
.help-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #006aad;
  font-size: 0.8rem;
  font-weight: 800;
}

.help-login-gate a:hover,
.help-inline-link:hover {
  color: #003876;
}

.help-login-gate a svg,
.help-inline-link svg {
  width: 15px;
  height: 15px;
}

.help-ticket-form {
  margin-top: 21px;
}

.help-ticket-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.help-ticket-form fieldset:disabled {
  opacity: 0.5;
}

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

.help-form-grid label,
.help-track-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.help-form-grid label > span,
.help-track-form label > span {
  color: #416984;
  font-size: 0.78rem;
  font-weight: 750;
}

.help-form-grid input,
.help-form-grid select,
.help-form-grid textarea,
.help-filter-label input,
.help-track-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbdfea;
  border-radius: 7px;
  outline: none;
  background: #fbfdff;
  color: #113f67;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.help-form-grid input,
.help-form-grid select,
.help-filter-label input,
.help-track-form input {
  min-height: 43px;
  padding: 0 12px;
}

.help-form-grid textarea {
  min-height: 118px;
  padding: 11px 12px;
  resize: vertical;
}

.help-form-grid input:focus,
.help-form-grid select:focus,
.help-form-grid textarea:focus,
.help-filter-label input:focus,
.help-track-form input:focus {
  border-color: #0071bc;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 113, 188, 0.13);
}

.help-field-wide {
  grid-column: 1 / -1;
}

.help-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.help-form-footer p {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 420px;
  margin: 0;
  color: #6b879d;
  font-size: 0.76rem;
  line-height: 1.45;
}

.help-form-footer p svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: #0071bc;
}

.help-form-footer .search-button {
  min-height: 43px;
  border-radius: 7px;
  white-space: nowrap;
}

.help-form-message {
  min-height: 20px;
  margin-top: 12px;
  color: #52718b;
  font-size: 0.8rem;
}

.help-form-message[data-type="success"] {
  color: #17824a;
}

.help-form-message[data-type="error"] {
  color: #ad3c3c;
}

.help-filter-label {
  display: flex;
  width: min(100%, 214px);
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid #d3e3ee;
  border-radius: 7px;
  background: #fbfdff;
}

.help-filter-label:focus-within {
  border-color: #0071bc;
  box-shadow: 0 0 0 3px rgba(0, 113, 188, 0.13);
}

.help-filter-label svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #6f96b0;
}

.help-filter-label input {
  min-height: 38px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.help-filter-label input:focus {
  box-shadow: none;
}

.help-requests-list {
  min-height: 330px;
}

.help-request-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  padding: 16px 0;
  border-bottom: 1px solid #e1edf5;
}

.help-request-row:last-child {
  border-bottom: 0;
}

.help-request-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #eaf6fd;
  color: #006aad;
}

.help-request-icon svg {
  width: 17px;
  height: 17px;
}

.help-request-copy {
  min-width: 0;
}

.help-request-copy > div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.help-request-copy strong {
  overflow: hidden;
  color: #083f6e;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.help-request-copy small {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 3px;
  color: #718da3;
  font-size: 0.7rem;
}

.help-request-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: #5e7c94;
  font-size: 0.76rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.help-status-chip {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: #eaf6fd;
  color: #0066a8;
  font-size: 0.64rem;
  font-weight: 800;
  white-space: nowrap;
}

.help-status-chip.is-documentos_pendientes {
  background: #fff4df;
  color: #a76106;
}

.help-status-chip.is-en_gestion,
.help-status-chip.is-en_revision {
  background: #eef3ff;
  color: #466ca8;
}

.help-status-chip.is-resuelta,
.help-status-chip.is-cerrada {
  background: #eaf8ef;
  color: #17824a;
}

.help-request-meta {
  display: grid;
  align-content: space-between;
  justify-items: end;
  gap: 9px;
}

.help-request-meta time {
  color: #809aad;
  font-size: 0.67rem;
  white-space: nowrap;
}

.help-request-meta button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #006aad;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.help-request-meta button:hover {
  color: #003876;
}

.help-request-meta button svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.help-request-meta button:hover svg {
  transform: translateX(2px);
}

.help-list-empty {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 27px 0;
}

.help-list-empty > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border-radius: 8px;
  background: #eef8fe;
  color: #0071bc;
}

.help-list-empty svg {
  width: 19px;
  height: 19px;
}

.help-list-empty strong {
  color: #083f6e;
  font-size: 0.9rem;
}

.help-list-empty p {
  margin: 4px 0 9px;
  color: #6b879c;
  font-size: 0.8rem;
  line-height: 1.48;
}

.help-tracking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  margin-bottom: 58px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #c9e4f4;
  border-radius: 8px;
  background: #edf8fe;
}

.help-tracking .overline {
  margin: 0 0 7px;
  color: #5d88a5;
}

.help-tracking h2 {
  margin: 0;
  color: #073e6e;
  font-size: 1.55rem;
}

.help-tracking-copy > p:last-child {
  max-width: 410px;
  margin: 9px 0 0;
  color: #55758e;
  line-height: 1.55;
}

.help-track-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.help-track-form button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid #006aad;
  border-radius: 7px;
  background: #006aad;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.help-track-form button:hover {
  background: #00558d;
  transform: translateY(-1px);
}

.help-track-form button svg {
  width: 16px;
  height: 16px;
}

.help-track-result {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  margin-top: 16px;
  padding: 13px;
  border: 1px solid #cbe4f3;
  border-radius: 7px;
  background: #fff;
  color: #5d7c94;
}

.help-track-result > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: #eaf6fd;
  color: #006aad;
}

.help-track-result svg {
  width: 16px;
  height: 16px;
}

.help-track-result p {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.45;
}

.help-track-result div {
  min-width: 0;
}

.help-track-result small,
.help-track-result strong {
  display: block;
}

.help-track-result small {
  overflow-wrap: anywhere;
  color: #6d8ca4;
  font-size: 0.69rem;
}

.help-track-result strong {
  margin: 2px 0;
  color: #073f70;
  font-size: 0.86rem;
}

.help-faq-section {
  padding: 64px 0 78px;
  border-top: 1px solid #dceaf3;
  background: #fff;
}

.help-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
  align-items: start;
  gap: clamp(30px, 7vw, 104px);
}

.help-faq-copy .overline {
  margin: 0 0 8px;
  color: #6890aa;
}

.help-faq-copy h2 {
  margin: 0;
  color: #073d6e;
  font-size: 1.7rem;
}

.help-faq-copy > p:last-child {
  margin: 11px 0 0;
  color: #58778f;
  line-height: 1.6;
}

.help-faq-list {
  border-top: 1px solid #dceaf3;
}

.help-faq-list details {
  border-bottom: 1px solid #dceaf3;
}

.help-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: #0a416f;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

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

.help-faq-list summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #0071bc;
  transition: transform 180ms ease;
}

.help-faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.help-faq-list details p {
  margin: -2px 0 18px;
  color: #5a788f;
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .help-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .help-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .help-requests-list {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .help-hero {
    padding: 42px 0 62px;
  }

  .help-hero-layout,
  .help-form-footer,
  .help-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .help-account-status {
    min-width: 0;
  }

  .help-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 38px;
  }

  .help-action-tile {
    min-height: 132px;
    padding: 15px;
  }

  .help-section-head {
    gap: 12px;
  }

  .help-filter-label {
    width: 100%;
  }

  .help-form-grid,
  .help-tracking,
  .help-faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .help-tracking {
    gap: 24px;
  }
}

@media (max-width: 500px) {
  .help-hero h1 {
    font-size: 2rem;
  }

  .help-actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    margin-top: -28px;
  }

  .help-action-tile {
    min-height: 94px;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 11px;
  }

  .help-action-tile > span {
    grid-row: 1 / span 2;
  }

  .help-action-tile strong,
  .help-action-tile small {
    align-self: end;
  }

  .help-action-tile small {
    align-self: start;
  }

  .help-request-panel,
  .help-requests-panel {
    padding: 19px;
  }

  .help-request-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .help-request-meta {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .help-track-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .help-track-form button {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .help-action-tile,
  .help-action-arrow,
  .help-request-meta button svg,
  .help-track-form button,
  .help-faq-list summary svg {
    transition: none;
  }
}

/* Payments cart in the dashboard header. */
.dashboard-top-actions .payment-cart-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.dashboard-top-actions .payment-cart-button:hover,
.dashboard-top-actions .payment-cart-button[aria-expanded="true"] {
  border-color: #fff;
  background: #fff;
  color: #005aab;
  transform: translateY(-2px);
}

.payment-cart-button svg {
  width: 19px;
  height: 19px;
}

.payment-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #005aab;
  border-radius: 999px;
  background: #f7bf3f;
  color: #003876;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.payment-cart-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(0, 36, 78, 0.48);
  backdrop-filter: blur(2px);
}

.payment-cart-drawer {
  position: fixed;
  z-index: 91;
  top: 0;
  right: 0;
  display: grid;
  width: min(100%, 458px);
  height: 100dvh;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  border-left: 1px solid #cce2f1;
  background: #fff;
  box-shadow: -18px 0 50px rgba(0, 51, 104, 0.18);
  color: #07345f;
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.payment-cart-drawer.is-open {
  transform: translateX(0);
}

body.has-payment-cart-open {
  overflow: hidden;
}

.payment-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 27px 28px 19px;
  border-bottom: 1px solid #e0edf5;
}

.payment-cart-head .overline {
  margin: 0 0 4px;
  color: #6685a0;
}

.payment-cart-head h2 {
  margin: 0;
  color: #003876;
  font-size: 1.28rem;
}

.payment-cart-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid #d1e2ee;
  border-radius: 10px;
  background: #fff;
  color: #376384;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.payment-cart-close:hover {
  border-color: #a6cce3;
  background: #eef8fe;
  color: #005aab;
}

.payment-cart-close svg {
  width: 19px;
  height: 19px;
}

.payment-cart-summary {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 20px 28px 16px;
  padding: 16px;
  border: 1px solid #c8e4f4;
  border-radius: 12px;
  background: linear-gradient(135deg, #edf9ff, #f8fcff);
}

.payment-cart-summary > span,
.payment-cart-service-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border-radius: 10px;
  background: #0071bc;
  color: #fff;
}

.payment-cart-summary svg,
.payment-cart-service-icon svg {
  width: 19px;
  height: 19px;
}

.payment-cart-summary small,
.payment-cart-item small {
  display: block;
  color: #65819a;
  font-size: 0.78rem;
}

.payment-cart-summary strong {
  display: block;
  margin-top: 2px;
  color: #003876;
  font-size: 1.4rem;
}

.payment-cart-list {
  min-height: 0;
  overflow-y: auto;
  padding: 4px 28px 24px;
}

.payment-cart-item {
  padding: 17px 0;
  border-bottom: 1px solid #e3edf4;
}

.payment-cart-item-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 11px;
}

.payment-cart-service-icon {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  border-radius: 9px;
  background: #e5f4fc;
  color: #006bad;
}

.payment-cart-service-icon svg {
  width: 17px;
  height: 17px;
}

.payment-cart-item-top strong {
  display: block;
  overflow: hidden;
  color: #063c70;
  font-size: 0.91rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payment-cart-item-top b {
  color: #003876;
  font-size: 0.91rem;
  white-space: nowrap;
}

.payment-cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 13px 0 12px 45px;
  color: #627f98;
  font-size: 0.76rem;
}

.payment-cart-item-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.payment-cart-item-meta svg {
  width: 14px;
  height: 14px;
  color: #0071bc;
}

.payment-cart-item-meta em {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef8fe;
  color: #0065a8;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
}

.payment-cart-pay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 45px;
  color: #006bad;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.payment-cart-pay-link:hover {
  color: #003876;
}

.payment-cart-pay-link svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.payment-cart-pay-link:hover svg {
  transform: translateX(3px);
}

.payment-cart-empty {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 27px 0;
}

.payment-cart-empty > span {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  place-items: center;
  border-radius: 11px;
  background: #eaf7ef;
  color: #188148;
}

.payment-cart-empty svg {
  width: 21px;
  height: 21px;
}

.payment-cart-empty strong {
  color: #073b6a;
}

.payment-cart-empty p {
  margin: 4px 0 0;
  color: #66829a;
  font-size: 0.85rem;
  line-height: 1.5;
}

.payment-cart-footer {
  padding: 17px 28px 23px;
  border-top: 1px solid #e0edf5;
  background: #fbfdff;
}

.payment-cart-footer p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 11px;
  color: #718ba2;
  font-size: 0.74rem;
}

.payment-cart-footer p svg {
  width: 15px;
  height: 15px;
  color: #16864b;
}

.payment-cart-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #006bad;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.payment-cart-footer a:hover {
  color: #003876;
}

.payment-cart-footer a svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 620px) {
  .dashboard-top-actions .payment-cart-button {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .payment-cart-drawer {
    width: 100%;
    border-left: 0;
  }

  .payment-cart-head {
    padding: 23px 20px 17px;
  }

  .payment-cart-summary {
    margin: 16px 20px 13px;
  }

  .payment-cart-list {
    padding: 4px 20px 20px;
  }

  .payment-cart-footer {
    padding: 15px 20px calc(18px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-top-actions .payment-cart-button,
  .payment-cart-drawer,
  .payment-cart-close,
  .payment-cart-pay-link svg {
    transition: none;
  }
}

/* Keep the checkout header independent from the global site logo scale. */
.payment-header .payment-brand {
  width: 206px;
  min-height: 62px;
}

@media (max-width: 620px) {
  .payment-header .payment-brand {
    width: 168px;
    min-height: 52px;
  }
}

/* Secure checkout */
.payment-page {
  min-height: 100vh;
  background: #f4f9fd;
}

.payment-header {
  border-bottom: 1px solid #d7e5ef;
  background: #fff;
}

.payment-header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.payment-brand {
  width: 206px;
  min-height: 62px;
  justify-content: flex-start;
  padding: 0;
}

.payment-brand .brand-logo {
  width: 196px;
  height: 62px;
  max-width: 100%;
  transform: none;
}

.payment-header-security,
.checkout-secure-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2c668f;
  font-size: 0.82rem;
  font-weight: 780;
}

.payment-header-security svg,
.checkout-secure-note svg {
  width: 17px;
  height: 17px;
  color: #0071bc;
}

.payment-main {
  padding: 64px 0 0;
}

.payment-shell {
  padding-bottom: 72px;
}

.payment-intro {
  max-width: 640px;
  margin-bottom: 32px;
}

.payment-intro h1 {
  margin: 8px 0 12px;
  color: #003b70;
  font-size: 3.2rem;
  line-height: 1.05;
}

.payment-intro > p:last-child {
  max-width: 610px;
  margin: 0;
  color: #58768e;
  font-size: 1rem;
  line-height: 1.65;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: 26px;
}

.checkout-payment-surface,
.payment-summary,
.payment-result-card {
  border: 1px solid #d8e6f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 63, 105, 0.08);
}

.checkout-payment-surface {
  padding: clamp(22px, 4vw, 38px);
}

.checkout-surface-heading,
.payment-summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.checkout-surface-heading h2,
.payment-summary-head h2 {
  margin: 5px 0 0;
  color: #093d67;
  font-size: 1.42rem;
}

.checkout-secure-note {
  flex: 0 0 auto;
  padding-top: 4px;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.payment-method {
  display: grid;
  min-height: 98px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid #d8e5ee;
  border-radius: 12px;
  background: #fff;
  color: #143f60;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.payment-method:hover:not(:disabled) {
  border-color: #62a5d3;
  background: #f8fcff;
  box-shadow: 0 10px 24px rgba(0, 88, 157, 0.1);
  transform: translateY(-2px);
}

.payment-method.is-selected {
  border-color: #006db6;
  background: #eef8ff;
  box-shadow: inset 0 0 0 1px #006db6, 0 10px 24px rgba(0, 88, 157, 0.11);
}

.payment-method:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.payment-method-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e8f5fc;
  color: #006db6;
}

.payment-method.is-selected .payment-method-icon {
  background: #006db6;
  color: #fff;
}

.payment-method-icon svg {
  width: 20px;
  height: 20px;
}

.payment-method-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.payment-method-copy strong {
  color: #123c5e;
  font-size: 0.92rem;
}

.payment-method-copy small {
  color: #6a8598;
  font-size: 0.74rem;
  line-height: 1.3;
}

.payment-card-brands,
.payment-provider-wordmark {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  color: #497087;
  font-size: 0.62rem;
  font-weight: 850;
}

.payment-card-brands b {
  color: #1a55a4;
  font-style: italic;
}

.payment-card-brands b:last-child {
  color: #da6b2e;
}

.payment-provider-wordmark {
  white-space: nowrap;
}

.payment-provider-wordmark.is-mercado {
  color: #237fc1;
}

.payment-provider-wordmark.is-apple {
  color: #1a1d21;
  font-size: 0.82rem;
}

.payment-provider-wordmark.is-google {
  color: #3786dd;
  font-size: 0.8rem;
}

.payment-provider-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0;
  padding: 14px 0;
  border-top: 1px solid #e4edf3;
  border-bottom: 1px solid #e4edf3;
  color: #50758d;
}

.payment-provider-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #0071bc;
}

.payment-provider-note p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.payment-message {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #edf7fc;
  color: #175779;
  font-size: 0.86rem;
  line-height: 1.45;
}

.payment-message.is-visible {
  display: block;
}

.payment-message.is-error {
  background: #fff1f1;
  color: #a22d2d;
}

.payment-submit {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #005fa7;
  border-radius: 10px;
  background: #006db6;
  color: #fff;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.payment-submit:hover:not(:disabled) {
  background: #005b9e;
  box-shadow: 0 12px 24px rgba(0, 89, 158, 0.22);
  transform: translateY(-1px);
}

.payment-submit:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.payment-submit svg {
  width: 18px;
  height: 18px;
}

.payment-submit-arrow {
  margin-left: 4px;
}

.payment-submit.is-loading svg:first-child {
  animation: payment-spin 800ms linear infinite;
}

.payment-legal-note {
  margin: 14px 0 0;
  color: #708a9c;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.payment-summary {
  position: sticky;
  top: 20px;
  padding: 24px;
}

.payment-summary-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 99px;
  background: #e7f4fc;
  color: #19638e;
  font-size: 0.71rem;
  font-weight: 800;
}

.payment-summary-route {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.payment-route-pin {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f6fd;
  color: #0071bc;
}

.payment-route-pin svg {
  width: 18px;
  height: 18px;
}

.payment-summary-route strong {
  display: block;
  color: #123f60;
  font-size: 0.95rem;
  line-height: 1.4;
}

.payment-summary-route p {
  margin: 4px 0 0;
  color: #6d879a;
  font-size: 0.82rem;
}

.payment-summary-details {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid #e4edf3;
  border-bottom: 1px solid #e4edf3;
}

.payment-summary-details div,
.payment-result-details div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.payment-summary-details dt,
.payment-result-details dt {
  color: #7690a1;
  font-size: 0.76rem;
}

.payment-summary-details dd,
.payment-result-details dd {
  margin: 0;
  color: #234a66;
  font-size: 0.8rem;
  font-weight: 760;
  text-align: right;
}

.payment-summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.payment-summary-total span {
  color: #4e7088;
  font-size: 0.85rem;
}

.payment-summary-total strong {
  color: #003d70;
  font-size: 1.5rem;
}

.payment-back-link,
.payment-result-support {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0872b8;
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.payment-back-link {
  margin-top: 22px;
}

.payment-back-link svg,
.payment-result-support svg {
  width: 16px;
  height: 16px;
}

.payment-result-main {
  display: grid;
  min-height: 620px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 72px;
}

.payment-result-wrap {
  display: flex;
  justify-content: center;
}

.payment-result-card {
  width: min(100%, 620px);
  padding: clamp(30px, 6vw, 56px);
  text-align: center;
}

.payment-result-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
}

.payment-result-icon svg {
  width: 26px;
  height: 26px;
}

.payment-result-icon.is-loading {
  background: #e9f6fd;
  color: #0071bc;
}

.payment-result-icon.is-loading svg {
  animation: payment-spin 950ms linear infinite;
}

.payment-result-icon.is-success {
  background: #e6f8ed;
  color: #208050;
}

.payment-result-icon.is-pending {
  background: #fff5d9;
  color: #a66c06;
}

.payment-result-icon.is-error {
  background: #fff0f0;
  color: #b33737;
}

.payment-result-card h1 {
  margin: 7px 0 12px;
  color: #073e67;
  font-size: 2.45rem;
}

.payment-result-card > p:not(.overline) {
  max-width: 470px;
  margin: 0 auto;
  color: #638096;
  line-height: 1.65;
}

.payment-result-folio {
  display: grid;
  gap: 5px;
  width: min(100%, 360px);
  margin: 26px auto 0;
  padding: 16px 20px;
  border: 1px solid #cfe2ee;
  border-radius: 14px;
  background: #f8fcfe;
}

.payment-result-folio span {
  color: #638096;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.payment-result-folio a {
  color: #0b5f91;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.payment-result-folio a:hover { text-decoration: underline; }

.payment-result-details {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 20px 0;
  border-top: 1px solid #e1ebf1;
  border-bottom: 1px solid #e1ebf1;
  text-align: left;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.payment-result-actions .payment-submit {
  width: auto;
  min-width: 190px;
  padding: 0 20px;
}

@keyframes payment-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 920px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .payment-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .payment-header-inner {
    min-height: 74px;
  }

  .payment-brand {
    width: 168px;
    min-height: 52px;
  }

  .payment-brand .brand-logo {
    width: 164px;
    height: 52px;
  }

  .payment-header-security span {
    display: none;
  }

  .payment-main {
    padding-top: 38px;
  }

  .payment-shell {
    padding-bottom: 48px;
  }

  .payment-intro {
    margin-bottom: 24px;
  }

  .payment-intro h1 {
    font-size: 2.2rem;
  }

  .checkout-payment-surface,
  .payment-summary {
    border-radius: 12px;
  }

  .checkout-surface-heading {
    display: block;
  }

  .checkout-secure-note {
    margin-top: 11px;
  }

  .payment-method-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .payment-method {
    min-height: 82px;
  }

  .payment-result-main {
    min-height: 490px;
    padding-bottom: 52px;
  }

  .payment-result-card h1 {
    font-size: 1.9rem;
  }

  .payment-result-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .payment-result-actions .payment-submit {
    width: 100%;
  }
}

/* Unframed Facebook feature image and follow action. */
.social-section {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background: #f7fbff;
}

.social-section::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 43%;
  background: #005aab;
  content: "";
}

.social-layout {
  position: relative;
  z-index: 1;
}

.social-image-free {
  align-self: end;
  width: min(100%, 500px);
  margin: -72px 0 -92px -56px;
}

.social-image-free img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 44, 97, 0.22));
  transition: transform 320ms ease;
}

.social-image-free:hover img {
  transform: translateY(-4px);
}

.facebook-follow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.facebook-follow-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #0866ff;
  border-radius: 8px;
  background: #0866ff;
  box-shadow: none;
}

.facebook-follow-button svg {
  width: 16px;
  height: 16px;
}

.facebook-follow-button:hover {
  background: #0058e6;
  box-shadow: 0 8px 18px rgba(8, 102, 255, 0.2);
}

@media (max-width: 760px) {
  .social-section::before {
    width: 100%;
    height: 260px;
  }

  .social-image-free {
    width: min(112%, 500px);
    margin: -42px auto 0;
  }

  .social-copy {
    padding-top: 4px;
  }
}

/* Facebook community section */
.social-section {
  padding: 92px 0;
  border-top: 1px solid #d8e8f3;
  background: #f4f9fd;
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.social-image-frame {
  position: relative;
  width: min(100%, 410px);
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 12px;
  aspect-ratio: 0.91;
  background: #e5f2fa;
  box-shadow: 0 18px 38px rgba(0, 77, 151, 0.14);
}

.social-image-frame::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 10px;
  background: #0866ff;
  content: "f";
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 44px;
  text-align: center;
}

.social-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

.social-image-frame:hover img {
  transform: scale(1.025);
}

.social-copy {
  max-width: 620px;
}

.social-copy .overline {
  margin-bottom: 14px;
  color: #0866ff;
}

.facebook-identity {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #234c75;
}

.facebook-identity > span:last-child {
  display: grid;
  gap: 1px;
}

.facebook-identity b {
  font-size: 0.88rem;
}

.facebook-identity small {
  color: #71879c;
  font-size: 0.72rem;
  font-weight: 700;
}

.facebook-mark {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 8px;
  background: #0866ff;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 0.86;
}

.social-copy h2 {
  max-width: 630px;
  margin: 0 0 14px;
  color: #003876;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.06;
}

.social-copy > p:not(.overline) {
  max-width: 570px;
  margin: 0 0 24px;
  color: #5d758d;
  font-size: 1rem;
  line-height: 1.65;
}

.facebook-follow-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px 0 12px;
  border-radius: 10px;
  background: #0866ff;
  color: #fff;
  box-shadow: 0 10px 22px rgba(8, 102, 255, 0.22);
  font-size: 0.88rem;
  font-weight: 850;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.facebook-follow-button .facebook-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #fff;
  color: #0866ff;
  font-size: 1.34rem;
}

.facebook-follow-button svg {
  width: 17px;
  height: 17px;
}

.facebook-follow-button:hover {
  background: #0058e6;
  box-shadow: 0 14px 27px rgba(8, 102, 255, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .social-section {
    padding: 68px 0;
  }

  .social-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .social-image-frame {
    width: min(100%, 440px);
    justify-self: center;
    border-width: 6px;
  }

  .social-copy h2 {
    font-size: 2rem;
  }
}

/* Copa-inspired blue refinements for the customer dashboard. */
.dashboard-data-notice {
  margin-bottom: 14px;
  padding: 12px 15px;
  border: 1px solid #b9d5ea;
  border-left: 4px solid #0071bc;
  border-radius: 10px;
  background: #eef6fc;
  color: #003876;
  font-size: 0.86rem;
  font-weight: 750;
}

.dashboard-hero,
.client-sidebar.dashboard-sidebar {
  border-color: #002d62;
  background: #003876;
}

.dashboard-tier-card {
  border-color: rgba(112, 184, 229, 0.55);
  background: #004b91;
}

.dashboard-summary .summary-icon,
.assistant-icon,
.security-lock,
.empty-state-icon {
  color: #0071bc;
}

.assistant-icon,
.dashboard-points-progress span,
.chart-bar:hover,
.chart-bar.is-current {
  background: #0071bc;
}

.chart-bar.is-empty,
.chart-bar.is-current.is-empty {
  background: #dce8f1;
}

.dashboard-panels .client-panel h2,
.dashboard-balance-value strong,
.dashboard-summary strong,
.dashboard-benefits-list h3,
.dashboard-empty-row strong,
.dashboard-account-chip,
.dashboard-account-chip b {
  color: #003876;
}

.points-positive,
.points-chart > p svg,
.dashboard-security-panel .security-list svg,
.security-link {
  color: #0071bc !important;
}

.points-negative {
  color: #b42318 !important;
  font-weight: 900 !important;
}

.reservation-table td strong {
  display: block;
  color: #003876;
  font-size: 0.84rem;
}

.reservation-table td small {
  display: block;
  margin-top: 3px;
  color: #71849a;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Travel Caribe visual refresh: Copa-inspired aviation blue with Caribbean gold. */
:root {
  --brand-navy: #003876;
  --brand-deep: #002d62;
  --brand-ocean: #0071bc;
  --brand-sky: #70b8e5;
  --brand-sun: #f2b544;
  --brand-sand: #fff7e7;
  --accent-red: #d45e3d;
  --ink: #15375f;
  --muted: #5f7185;
  --line: #d7e1eb;
  --page: #f4f7fb;
  --surface: #ffffff;
  --shadow: 0 22px 54px rgba(0, 56, 118, 0.13);
  --soft-shadow: 0 12px 28px rgba(0, 56, 118, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

body {
  background: var(--page);
  color: var(--ink);
}

::selection {
  background: #ccecf2;
  color: var(--brand-deep);
}

.scroll-meter {
  height: 4px;
  background: var(--brand-sun);
}

.top-shell {
  background: var(--brand-deep);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(2, 39, 52, 0.18);
}

.top-shell.is-scrolled {
  box-shadow: 0 16px 38px rgba(2, 39, 52, 0.26);
}

.topbar,
.service-nav,
.page-container {
  width: min(1240px, calc(100% - 40px));
}

.topbar {
  min-height: 86px;
  gap: 18px;
}

.brand {
  width: 244px;
  min-width: 0;
  min-height: 80px;
  justify-content: flex-start;
}

.brand-logo {
  max-width: 244px;
  height: 80px;
  transform: scale(1.08);
  transform-origin: left center;
}

.utility-links {
  gap: 2px;
  font-size: 0.8rem;
  font-weight: 760;
}

.utility-link {
  min-height: 38px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.76);
}

.utility-call strong {
  color: #ffd575;
  font-weight: 850;
}

.utility-link::after {
  right: 9px;
  bottom: 1px;
  left: 9px;
  height: 1px;
  background: #ffd575;
}

.top-actions {
  gap: 8px;
}

.round-button {
  width: 40px;
  height: 40px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.round-button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
}

.cart-link {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--brand-sun);
  color: var(--brand-deep);
  box-shadow: none;
}

.cart-link:hover {
  box-shadow: 0 10px 22px rgba(242, 181, 68, 0.2);
}

.service-nav-shell {
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(2, 39, 52, 0.56);
  backdrop-filter: blur(10px);
}

.service-nav {
  justify-content: flex-start;
  min-height: 60px;
  gap: 2px;
}

.nav-pill {
  min-height: 60px;
  padding: 0 15px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 760;
}

.nav-pill::before {
  display: none;
}

.nav-pill:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  color: #fff;
  transform: none;
}

.nav-pill:hover svg {
  transform: none;
}

.nav-pill.is-active {
  border-color: var(--brand-sun);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 -2px 0 var(--brand-sun);
  color: #fff;
  animation: nav-tab-select 300ms ease-out;
}

.nav-pill.is-active::before {
  display: none;
}

.nav-pill.is-active svg {
  color: #ffd575;
  transform: none;
}

@keyframes nav-tab-select {
  from { background: rgba(255, 255, 255, 0); }
  to { background: rgba(255, 255, 255, 0.1); }
}

.search-hero {
  min-height: 660px;
  padding: 0 0 80px;
}

.search-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 39, 52, 0.88) 0%, rgba(2, 39, 52, 0.72) 36%, rgba(2, 39, 52, 0.16) 74%, rgba(2, 39, 52, 0.34) 100%);
  content: "";
  pointer-events: none;
}

.search-hero > .page-container {
  z-index: 2;
  padding-top: 78px;
}

.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(2, 39, 52, 0.28);
}

.hero-carousel .swiper-pagination {
  bottom: 22px;
}

.hero-carousel .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
}

.hero-carousel .swiper-pagination-bullet-active {
  width: 30px;
  background: #ffd575;
}

.title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 38px;
}

.search-hero .overline {
  margin-bottom: 12px;
  color: #ffd575;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-shadow: none;
}

.search-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 4.65rem);
  font-weight: 760;
  line-height: 0.98;
}

.hero-intro {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
  line-height: 1.55;
}

.status-chip {
  align-self: center;
  gap: 8px;
  padding: 10px 13px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(2, 39, 52, 0.44);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 720;
}

.status-chip .status-chip-dot {
  width: 7px;
  height: 7px;
  background: #ffd575;
  box-shadow: 0 0 0 4px rgba(255, 213, 117, 0.18);
}

.search-card {
  padding: 22px;
  border: 0;
  border-top: 3px solid var(--brand-sun);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 52px rgba(2, 39, 52, 0.24);
  overflow: visible;
}

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

.search-card-head {
  margin-bottom: 16px;
}

.search-card h2 {
  color: var(--brand-deep);
  font-size: 1.16rem;
}

.search-card p {
  color: var(--muted);
  font-size: 0.84rem;
}

.search-grid {
  gap: 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfb;
}

.flight-mode-row {
  margin: 0 0 10px;
  padding: 0 4px;
}

.flight-trip-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f8fbfb;
}

.flight-trip-option {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #718188;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 780;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.flight-trip-option svg {
  width: 16px;
  height: 16px;
}

.flight-trip-option:hover {
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.flight-trip-option.is-active {
  background: #e7f3f4;
  color: var(--brand-deep);
}

.flight-trip-option.is-active svg {
  color: var(--brand-ocean);
}

.search-field[data-flight-return][hidden] {
  display: none;
}

.search-field {
  min-height: 62px;
  padding: 9px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 9px;
  background: transparent;
  box-shadow: none;
}

.search-field:hover,
.search-field:focus-within {
  background: #fff;
  box-shadow: 0 6px 16px rgba(2, 39, 52, 0.07);
  transform: none;
}

.search-field:focus-within {
  z-index: 12;
}

.search-field.is-airport-loading::after {
  position: absolute;
  right: 14px;
  bottom: 17px;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(14, 116, 144, 0.2);
  border-top-color: var(--brand-ocean);
  border-radius: 50%;
  animation: airport-search-spin 620ms linear infinite;
  content: "";
}

.search-field svg {
  width: 19px;
  height: 19px;
  color: var(--brand-ocean);
}

.search-field span {
  color: #718188;
  font-size: 0.7rem;
  font-weight: 720;
}

.search-field input,
.search-field select {
  color: var(--brand-deep);
  font-weight: 760;
}

.airport-suggestions {
  position: absolute;
  z-index: 40;
  top: calc(100% + 9px);
  left: -4px;
  width: min(420px, calc(100vw - 36px));
  max-height: 286px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(8, 82, 111, 0.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(2, 39, 52, 0.18);
  overscroll-behavior: contain;
}

/* Let airport results cross the section boundary without being clipped. */
.search-hero {
  z-index: auto;
  overflow: visible;
}

.search-hero.is-airport-menu-open {
  z-index: 8;
}

.search-hero > .page-container {
  z-index: 3;
}

.search-card {
  z-index: auto;
  overflow: visible;
}

.search-card::before {
  clip-path: inset(0 round var(--radius-xl));
}

.search-field:focus-within {
  z-index: 20;
}

.offers-section::before {
  display: block;
}

.airport-suggestions[hidden] {
  display: none;
}

.airport-suggestion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 9px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--brand-deep);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.airport-suggestion:hover,
.airport-suggestion.is-active {
  background: #e8f4f7;
  transform: translateX(2px);
}

.search-field .airport-suggestion-copy,
.search-field .airport-suggestion-primary,
.search-field .airport-suggestion-secondary {
  display: block;
  grid-area: auto;
  margin: 0;
}

.airport-suggestion-primary {
  overflow: hidden;
  color: var(--brand-deep);
  font-size: 0.83rem;
  font-weight: 790;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.airport-suggestion-secondary {
  margin-top: 3px !important;
  overflow: hidden;
  color: #718188 !important;
  font-size: 0.72rem !important;
  font-weight: 620 !important;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.airport-suggestion strong {
  min-width: 42px;
  padding: 5px 6px;
  border-radius: 6px;
  background: #d8edf2;
  color: var(--brand-ocean);
  font-size: 0.74rem;
  letter-spacing: 0;
  text-align: center;
}

.airport-results-message {
  margin: 0;
  padding: 12px;
  color: #718188;
  font-size: 0.8rem;
  line-height: 1.35;
}

@keyframes airport-search-spin {
  to {
    transform: rotate(360deg);
  }
}

.search-field.split + .search-field.split::before {
  display: none;
}

.search-button {
  min-height: 58px;
  margin: 0;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--brand-sun);
  color: var(--brand-deep);
  box-shadow: none;
  font-weight: 850;
}

.search-button:hover {
  background: #f7c45d;
  box-shadow: 0 10px 20px rgba(242, 181, 68, 0.22);
  filter: none;
  transform: translateY(-1px);
}

.offers-section {
  padding: 96px 0 92px;
  background: #f4f7f7;
}

.offers-section::before {
  inset: -46px 0 auto;
  z-index: 1;
  height: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0 34 C180 2 300 2 480 34 C660 66 780 66 960 34 C1140 2 1260 2 1440 34 L1440 100 L0 100 Z' fill='%23f4f7f7'/%3E%3C/svg%3E");
}

.section-title {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-title .overline {
  margin-bottom: 10px;
  color: var(--brand-ocean);
}

.section-title h2,
.contact-copy h2 {
  color: var(--brand-deep);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 760;
  line-height: 1.08;
}

.offers-panel {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-tabs {
  display: inline-flex;
  min-height: 42px;
  border-bottom: 1px solid #cddbdd;
}

.offer-tab {
  flex: 0 0 auto;
  min-width: 148px;
  padding: 0 4px;
  background: transparent;
  color: #718188;
  font-weight: 760;
}

.offer-tab::after {
  right: 4px;
  left: 4px;
  height: 2px;
  background: var(--brand-sun);
}

.offer-tab.is-active {
  color: var(--brand-deep);
}

.hotel-grid {
  gap: 20px;
  padding: 28px 0 0;
}

.hotel-card {
  border-color: #dfe7e8;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.hotel-card:hover {
  border-color: #bdd9e0;
  box-shadow: 0 18px 34px rgba(2, 39, 52, 0.12);
  transform: translateY(-5px);
}

.hotel-image {
  background: #e8f1f3;
}

.hotel-image img {
  aspect-ratio: 1.24;
}

.hotel-image span {
  top: 14px;
  bottom: auto;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(2, 39, 52, 0.86);
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hotel-body {
  padding: 18px;
}

.hotel-body h3 {
  margin-bottom: 9px;
  color: var(--brand-deep);
  font-size: 1.12rem;
}

.rating {
  margin-bottom: 18px;
}

.rating b {
  border-radius: 6px;
  background: #dff3f6;
  color: var(--brand-ocean);
}

.rating svg {
  width: 14px;
  height: 14px;
  color: #d69b27;
}

.price-line {
  margin-bottom: 13px;
}

.price-line strong {
  color: var(--brand-deep);
  font-size: 1.08rem;
}

.price-line span {
  padding: 6px 8px;
  border-radius: 7px;
  background: #e5f4ed;
  color: #087153;
}

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

.product-section {
  background: #fff;
}

.product-section::before,
.contact-section::before {
  display: none;
}

.service-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 240px;
  padding: 30px 24px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-card:first-child {
  border-left: 0;
}

.service-card:hover {
  background: #f7fbfb;
  box-shadow: none;
  transform: none;
}

.service-card svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 12px;
  background: #e4f4f6;
  color: var(--brand-ocean);
}

.service-card h3 {
  margin-top: 22px;
  color: var(--brand-deep);
  font-size: 1.1rem;
}

.contact-section {
  background: #edf5f2;
}

.contact-layout {
  gap: 58px;
}

.contact-copy > .overline {
  color: #087153;
}

.contact-copy p {
  max-width: 570px;
}

.whatsapp-benefits {
  gap: 8px;
}

.whatsapp-benefits span {
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.1);
  color: #087153;
  font-size: 0.8rem;
}

.lead-card {
  padding: 22px;
  border: 0;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 40px rgba(2, 39, 52, 0.1);
}

.whatsapp-card {
  border-top: 4px solid #25d366;
  background: #fff;
  box-shadow: 0 20px 44px rgba(2, 39, 52, 0.12);
}

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

.whatsapp-card-head {
  padding: 13px 14px;
  border-radius: 10px;
  background: #075e54;
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  border-color: #d8e4e2;
  border-radius: 10px;
  background: #f9fbfb;
}

.lead-card input:focus,
.lead-card select:focus,
.lead-card textarea:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.13);
}

.whatsapp-submit {
  background: #25d366;
  color: #063f31;
  box-shadow: none;
}

.whatsapp-submit:hover {
  background: #4ce181;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.18);
}

.whatsapp-float {
  right: 24px;
  bottom: 28px;
  min-height: 52px;
  border: 3px solid #fff;
  border-radius: 13px;
  background: #25d366;
  color: #063f31;
  box-shadow: 0 14px 30px rgba(2, 39, 52, 0.2);
  font-weight: 850;
}

.whatsapp-float::before {
  display: none;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 34px rgba(2, 39, 52, 0.24);
}

.auth-card,
.client-panel,
.legal-card,
.legal-nav,
.admin-panel {
  border-radius: var(--radius-lg);
}

.site-footer {
  margin-top: 0;
  padding: 76px 0 26px;
  background: var(--brand-deep);
}

.site-footer::before {
  display: none;
}

.footer-grid {
  gap: 32px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #ffd575;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.site-footer section {
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-brand .brand {
  width: 228px;
  min-height: 76px;
  justify-content: flex-start;
}

.footer-brand .brand-logo {
  max-width: 228px;
  height: 76px;
  transform: scale(1.05);
}

.footer-brand p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top-color: rgba(255, 255, 255, 0.11);
}

.footer-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr) minmax(0, 1fr);
  margin-top: 44px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 2px 28px;
}

.footer-trust-item:first-child {
  padding-left: 0;
}

.footer-trust-item + .footer-trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-symbol {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 213, 117, 0.45);
  border-radius: 10px;
  color: #ffd575;
}

.trust-symbol svg {
  width: 18px;
  height: 18px;
}

.trust-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.trust-copy strong {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-copy > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
  line-height: 1.35;
}

.payment-marks {
  display: flex;
  min-height: 18px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.payment-marks img {
  display: block;
  width: auto;
  height: 16px;
  max-width: 48px;
  opacity: 0.9;
  transition: opacity 160ms ease, transform 160ms ease;
}

.payment-marks img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-trust-privacy {
  text-decoration: none;
}

.site-footer .footer-trust-privacy:hover {
  color: inherit;
  transform: none;
}

.footer-trust-privacy:hover .trust-copy strong {
  color: #ffd575;
}

@media (max-width: 880px) {
  .footer-trust {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .footer-trust-item,
  .footer-trust-item:first-child {
    padding: 0;
  }

  .footer-trust-item + .footer-trust-item {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .utility-links {
    display: none;
  }

  .search-field {
    border: 1px solid var(--line);
  }

  .search-grid {
    gap: 8px;
  }

  .flight-mode-row {
    margin-bottom: 8px;
    padding: 0;
  }

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

  .travel-ready-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .travel-ready-gallery {
    min-height: 420px;
    max-width: 760px;
  }

  .service-card:nth-child(odd) {
    border-left: 0;
  }

  .service-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .topbar,
  .service-nav,
  .page-container {
    width: min(100% - 24px, 1240px);
  }

  .topbar {
    min-height: 74px;
    gap: 10px;
  }

  .brand {
    width: min(182px, 100%);
    min-height: 72px;
  }

  .brand-logo {
    max-width: 182px;
    height: 72px;
  }

  .service-nav-shell {
    background: rgba(2, 39, 52, 0.66);
  }

  .service-nav {
    min-height: 53px;
    gap: 0;
  }

  .nav-pill {
    min-height: 53px;
    padding: 0 13px;
    font-size: 0.83rem;
  }

  .search-hero {
    min-height: 0;
    padding-bottom: 58px;
  }

  .search-hero::before {
    background: linear-gradient(180deg, rgba(2, 39, 52, 0.74) 0%, rgba(2, 39, 52, 0.54) 52%, rgba(2, 39, 52, 0.78) 100%);
  }

  .search-hero > .page-container {
    padding-top: 48px;
  }

  .title-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    margin-bottom: 28px;
  }

  .search-hero h1 {
    font-size: 2.75rem;
    line-height: 1;
  }

  .hero-intro {
    margin-top: 14px;
    font-size: 0.96rem;
  }

  .status-chip {
    justify-self: start;
  }

  .search-card {
    margin-top: 0;
    padding: 16px;
  }

  .search-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .search-grid {
    display: grid;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .search-field,
  .search-field.wide,
  .search-field.split {
    min-width: 0;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f8fbfb;
  }

  .search-button {
    width: 100%;
  }

  .offers-section,
  .travel-ready-section,
  .product-section,
  .contact-section {
    padding: 72px 0;
  }

  .offers-section::before {
    inset: -28px 0 auto;
    height: 32px;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title h2,
  .contact-copy h2 {
    font-size: 1.9rem;
  }

  .travel-ready-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    margin-bottom: 26px;
  }

  .travel-ready-checker {
    width: 100%;
  }

  .travel-ready-gallery {
    min-height: 335px;
  }

  .travel-ready-photo-main {
    right: 9%;
  }

  .travel-ready-photo-inset {
    right: 0;
    bottom: 20px;
    width: 43%;
    border-width: 4px;
  }

  .travel-ready-gallery-note {
    bottom: 19px;
    left: 16px;
  }

  .travel-tips-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .travel-tip-card {
    min-height: 0;
    padding: 20px;
  }

  .travel-tip-card h3 {
    margin-top: 18px;
  }

  .offer-tabs {
    width: 100%;
  }

  .offer-tab {
    min-width: 0;
    flex: 1;
  }

  .hotel-grid,
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hotel-grid {
    gap: 14px;
    padding-top: 20px;
  }

  .hotel-image img {
    aspect-ratio: 1.42;
  }

  .service-card,
  .service-card:first-child,
  .service-card:nth-child(odd) {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card:first-child {
    border-top: 0;
  }

  .service-card {
    padding: 26px 4px;
  }

  .contact-layout {
    gap: 34px;
  }

  .lead-card {
    padding: 18px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-brand {
    order: -1;
  }
}

@media (max-width: 430px) {
  .brand {
    width: min(164px, 100%);
  }

  .brand-logo {
    max-width: 164px;
  }

  .top-actions {
    gap: 6px;
  }

  .round-button {
    width: 38px;
    height: 38px;
  }

  .search-hero h1 {
    font-size: 2.42rem;
  }

  .search-card h2 {
    font-size: 1.05rem;
  }
}

/* The supplied mark is portrait-shaped, so it needs a taller desktop stage to read clearly. */
@media (min-width: 761px) {
  .topbar {
    min-height: 96px;
  }

  .brand {
    width: 270px;
    min-height: 92px;
  }

  .brand-logo {
    max-width: 270px;
    height: 92px;
    transform: scale(1.7);
    transform-origin: center center;
    pointer-events: none;
  }
}

/* Client dashboard refresh */
.client-main[data-client-dashboard] {
  padding: 34px 0 84px;
  background: #f3f7f7;
}

.dashboard-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: 42px;
  align-items: center;
  margin-bottom: 18px;
  padding: 36px 40px;
  border: 1px solid #06394c;
  border-radius: 18px;
  background: #062f42;
  box-shadow: 0 18px 38px rgba(2, 39, 52, 0.16);
}

.dashboard-hero .overline,
.dashboard-hero h1,
.dashboard-hero p {
  color: #fff;
}

.dashboard-hero .overline {
  color: #f2c86b;
}

.dashboard-hero h1 {
  max-width: 700px;
  margin: 0 0 12px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  line-height: 1.02;
}

.dashboard-hero-copy > p:not(.overline) {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.dashboard-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.dashboard-primary-action,
.dashboard-secondary-action,
.dashboard-whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 11px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.dashboard-primary-action {
  background: #f2b544;
  color: #062f42;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.13);
}

.dashboard-secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.dashboard-primary-action:hover,
.dashboard-secondary-action:hover,
.dashboard-whatsapp-action:hover {
  transform: translateY(-2px);
}

.dashboard-primary-action:hover {
  background: #ffd277;
  box-shadow: 0 13px 25px rgba(0, 0, 0, 0.18);
}

.dashboard-secondary-action:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-tier-card {
  display: grid;
  gap: 9px;
  padding: 20px;
  border: 1px solid rgba(242, 181, 68, 0.4);
  border-radius: 14px;
  background: #073b50;
}

.tier-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier-icon,
.summary-icon,
.assistant-icon,
.benefit-icon,
.security-lock,
.empty-state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tier-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f2b544;
  color: #062f42;
}

.tier-icon svg {
  width: 17px;
  height: 17px;
}

.dashboard-tier-card strong {
  color: #fff;
  font-size: 1.35rem;
}

.tier-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.tier-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #f2b544;
  transition: width 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dashboard-tier-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.dashboard-tier-card p b {
  color: #fff;
}

.dashboard-summary {
  gap: 12px;
  margin-bottom: 20px;
}

.dashboard-summary article {
  position: relative;
  min-height: 146px;
  gap: 7px;
  padding: 18px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 7px 18px rgba(2, 39, 52, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dashboard-summary article::before {
  position: absolute;
  top: 0;
  left: 18px;
  width: 42px;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: #f2b544;
  content: "";
}

.dashboard-summary article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 25px rgba(2, 39, 52, 0.13);
}

.dashboard-summary .summary-icon {
  width: 31px;
  height: 31px;
  margin-top: 3px;
  border-radius: 9px;
  background: #e9f4f4;
  color: #087b9f;
}

.dashboard-summary .summary-icon svg {
  width: 17px;
  height: 17px;
}

.dashboard-summary strong {
  color: #062f42;
  font-size: 1.65rem;
  line-height: 1.1;
}

.dashboard-summary small {
  color: #75858b;
  font-size: 0.76rem;
  font-weight: 700;
}

.dashboard-layout {
  grid-template-columns: 216px minmax(0, 1fr);
  gap: 20px;
}

.client-sidebar.dashboard-sidebar {
  top: 118px;
  gap: 4px;
  padding: 14px 10px;
  border: 1px solid #06394c;
  border-radius: 15px;
  background: #062f42;
  box-shadow: 0 12px 26px rgba(2, 39, 52, 0.1);
}

.sidebar-label {
  display: block;
  padding: 1px 11px 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.client-sidebar.dashboard-sidebar a {
  min-height: 43px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.client-sidebar.dashboard-sidebar a svg {
  width: 17px;
  height: 17px;
}

.client-sidebar.dashboard-sidebar a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  transform: translateX(2px);
}

.client-sidebar.dashboard-sidebar a.is-active {
  border-color: rgba(242, 181, 68, 0.62);
  background: #f2b544;
  color: #062f42;
}

.dashboard-panels {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.dashboard-overview-grid,
.dashboard-account-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  gap: 20px;
}

.dashboard-account-grid {
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
}

.dashboard-panels .client-panel {
  min-width: 0;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(2, 39, 52, 0.07);
}

.dashboard-panels .client-panel:hover {
  box-shadow: 0 12px 28px rgba(2, 39, 52, 0.1);
}

.dashboard-panels .client-panel h2 {
  color: #062f42;
  font-size: 1.3rem;
}

.dashboard-panels .client-panel-head {
  align-items: flex-start;
  margin-bottom: 18px;
}

.dashboard-panels .overline {
  margin-bottom: 5px;
  color: #087b9f;
  font-size: 0.7rem;
}

.dashboard-balance-panel {
  min-height: 248px;
}

.dashboard-balance-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 5px 0 18px;
}

.dashboard-balance-value strong {
  color: #062f42;
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  line-height: 0.95;
}

.dashboard-balance-value span {
  color: #6d7c82;
  font-size: 0.88rem;
  font-weight: 800;
}

.dashboard-points-progress {
  gap: 9px;
  margin-bottom: 11px;
}

.dashboard-points-progress > div {
  height: 10px;
  background: #e5eeee;
}

.dashboard-points-progress span {
  background: #087b9f;
  transition: width 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dashboard-points-progress p {
  color: #6b7d82;
  font-size: 0.84rem;
}

.dashboard-points-progress p b {
  color: #062f42;
}

.points-milestones {
  display: flex;
  justify-content: space-between;
  color: #8a999e;
  font-size: 0.7rem;
  font-weight: 800;
}

.dashboard-assistance-panel {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  align-items: flex-start;
  border-color: #b9d8df;
  background: #eaf5f5;
}

.assistant-icon {
  width: 39px;
  height: 39px;
  margin-bottom: auto;
  border-radius: 12px;
  background: #087b9f;
  color: #fff;
}

.assistant-icon svg {
  width: 20px;
  height: 20px;
}

.dashboard-assistance-panel h2 {
  margin: 0 0 7px;
}

.dashboard-assistance-panel > p:not(.overline) {
  margin: 0 0 16px;
  color: #547076;
  line-height: 1.5;
}

.dashboard-whatsapp-action {
  min-height: 40px;
  margin-top: auto;
  background: #25d366;
  color: #063f31;
  font-size: 0.84rem;
}

.dashboard-whatsapp-action:hover {
  background: #42df7c;
}

.dashboard-activity-panel {
  scroll-margin-top: 134px;
}

.points-activity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}

.points-chart {
  min-height: 202px;
  padding: 12px 12px 0;
  border-bottom: 1px solid #cfdfdf;
  background: #fbfdfd;
}

.points-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 2.4vw, 22px);
  height: 157px;
}

.chart-bar {
  position: relative;
  display: block;
  width: min(14%, 40px);
  height: var(--chart-height);
  min-height: 10px;
  border-radius: 7px 7px 2px 2px;
  background: #8ec8d5;
  cursor: default;
  transition: height 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.chart-bar:hover,
.chart-bar.is-current {
  background: #087b9f;
}

.chart-bar:hover {
  height: calc(var(--chart-height) + 4%);
  transform: translateY(-2px);
}

.chart-bar b {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  color: #74858a;
  font-size: 0.68rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.points-chart > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0 0;
  color: #5c7076;
  font-size: 0.79rem;
  font-weight: 750;
}

.points-chart > p svg {
  width: 16px;
  height: 16px;
  color: #087b9f;
}

.activity-callout {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  border-left: 3px solid #f2b544;
  background: #fff8e9;
}

.activity-callout span {
  color: #856425;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.activity-callout strong {
  color: #062f42;
  font-size: 1.9rem;
}

.activity-callout p {
  margin: 0;
  color: #715e36;
  font-size: 0.84rem;
  line-height: 1.5;
}

.dashboard-table-wrap {
  overflow-x: auto;
  border: 1px solid #deebeb;
  border-radius: 11px;
}

.dashboard-table {
  width: 100%;
  min-width: 610px;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.84rem;
}

.dashboard-table th,
.dashboard-table td {
  padding: 14px 15px;
  border-bottom: 1px solid #edf2f2;
  text-align: left;
}

.dashboard-table th {
  color: #718287;
  background: #f7faf9;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-table td {
  color: #304d55;
  font-weight: 700;
}

.dashboard-table tbody tr {
  transition: background-color 160ms ease;
}

.dashboard-table tbody tr:not(.dashboard-empty-row):hover {
  background: #f3fafa;
}

.dashboard-table tbody tr:last-child td {
  border-bottom: 0;
}

.table-number,
.table-action {
  text-align: right !important;
}

.points-positive {
  color: #087b9f !important;
  font-weight: 900 !important;
}

.table-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e8f6ec;
  color: #17713d;
  font-size: 0.7rem;
  font-weight: 900;
}

.dashboard-benefits-panel,
.dashboard-reservations-panel,
.dashboard-profile-panel,
.dashboard-security-panel {
  scroll-margin-top: 134px;
}

.dashboard-benefits-list {
  display: grid;
}

.dashboard-benefits-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #e4eeee;
}

.dashboard-benefits-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.dashboard-benefits-list article:last-child {
  padding-bottom: 0;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff6df;
  color: #a96f00;
}

.benefit-icon svg {
  width: 19px;
  height: 19px;
}

.dashboard-benefits-list h3 {
  margin: 0 0 3px;
  color: #062f42;
  font-size: 0.94rem;
}

.dashboard-benefits-list p {
  margin: 0;
  color: #708187;
  font-size: 0.82rem;
  line-height: 1.45;
}

.benefit-points {
  padding: 6px 9px;
  border: 1px solid #dce8e8;
  border-radius: 999px;
  color: #547076;
  font-size: 0.7rem;
  font-weight: 850;
  white-space: nowrap;
}

.dashboard-reservation-lookup {
  margin-bottom: 16px;
}

.dashboard-reservation-lookup .search-button {
  align-self: end;
  min-height: 52px;
}

.reservation-table {
  min-width: 680px;
}

.dashboard-empty-row td {
  padding: 26px 20px;
}

.dashboard-empty-row td {
  display: flex;
  align-items: center;
  gap: 13px;
}

.empty-state-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e9f4f4;
  color: #087b9f;
}

.empty-state-icon svg {
  width: 19px;
  height: 19px;
}

.dashboard-empty-row strong {
  display: block;
  color: #062f42;
  font-size: 0.9rem;
}

.dashboard-empty-row p {
  margin: 4px 0 0;
  color: #75868b;
  font-weight: 600;
  line-height: 1.45;
}

.dashboard-empty-row .status-badge,
.dashboard-empty-row .panel-link {
  margin-left: auto;
  flex: 0 0 auto;
}

.dashboard-profile-panel .profile-form {
  gap: 12px;
}

.dashboard-profile-panel .profile-form input,
.dashboard-profile-panel .profile-form textarea,
.dashboard-reservation-lookup input {
  border-color: #dbe6e7;
  border-radius: 10px;
  background: #fbfdfd;
}

.dashboard-profile-panel .profile-form input:focus,
.dashboard-profile-panel .profile-form textarea:focus,
.dashboard-reservation-lookup input:focus {
  border-color: #087b9f;
  box-shadow: 0 0 0 3px rgba(8, 123, 159, 0.12);
}

.dashboard-profile-panel .search-button,
.dashboard-reservation-lookup .search-button {
  border-radius: 10px;
}

.dashboard-security-panel {
  display: flex;
  flex-direction: column;
  border-color: #d5e4e5;
  background: #f9fcfc;
}

.security-lock {
  width: 37px;
  height: 37px;
  border-radius: 10px;
  background: #e9f4f4;
  color: #087b9f;
}

.security-lock svg {
  width: 18px;
  height: 18px;
}

.dashboard-security-panel .security-list {
  gap: 15px;
}

.dashboard-security-panel .security-list p {
  color: #5f7278;
  font-size: 0.84rem;
  line-height: 1.5;
}

.dashboard-security-panel .security-list svg {
  color: #087b9f;
}

.security-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 18px;
  color: #087b9f;
  font-size: 0.82rem;
  font-weight: 850;
}

.security-link svg {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.security-link:hover svg {
  transform: translate(2px, -2px);
}

.dashboard-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #062f42;
}

.dashboard-account-chip > span:last-child {
  display: grid;
  gap: 1px;
}

.dashboard-account-chip small {
  color: #708187;
  font-size: 0.66rem;
  font-weight: 800;
}

.dashboard-account-chip b {
  max-width: 100px;
  overflow: hidden;
  color: #062f42;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2b544;
  color: #062f42;
  font-size: 0.72rem;
  font-weight: 950;
}

@media (max-width: 1080px) {
  .dashboard-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .dashboard-overview-grid,
  .dashboard-account-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-assistance-panel {
    min-height: 0;
  }

  .assistant-icon {
    margin-bottom: 16px;
  }
}

@media (max-width: 760px) {
  .client-main[data-client-dashboard] {
    padding: 20px 0 58px;
  }

  .dashboard-top-actions .dashboard-account-chip {
    display: none;
  }

  .dashboard-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 25px 20px;
    border-radius: 14px;
  }

  .dashboard-hero h1 {
    font-size: 2.4rem;
  }

  .dashboard-quick-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .dashboard-primary-action,
  .dashboard-secondary-action {
    flex: 1 1 150px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .dashboard-tier-card {
    padding: 17px;
  }

  .dashboard-summary {
    gap: 10px;
  }

  .dashboard-summary article {
    min-height: 134px;
    padding: 15px;
  }

  .dashboard-summary strong {
    font-size: 1.4rem;
  }

  .dashboard-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .client-sidebar.dashboard-sidebar {
    gap: 6px;
    padding: 8px;
    border-radius: 12px;
  }

  .sidebar-label {
    display: none;
  }

  .client-sidebar.dashboard-sidebar a {
    min-height: 39px;
    padding: 0 11px;
    font-size: 0.8rem;
  }

  .client-sidebar.dashboard-sidebar a:hover {
    transform: none;
  }

  .dashboard-panels {
    gap: 14px;
  }

  .dashboard-overview-grid,
  .dashboard-account-grid,
  .points-activity-layout {
    gap: 14px;
  }

  .dashboard-panels .client-panel {
    padding: 19px;
    border-radius: 13px;
  }

  .dashboard-panels .client-panel-head {
    gap: 10px;
    margin-bottom: 15px;
  }

  .dashboard-panels .client-panel h2 {
    font-size: 1.16rem;
  }

  .dashboard-balance-value strong {
    font-size: 2.65rem;
  }

  .points-activity-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .points-chart {
    min-height: 192px;
  }

  .dashboard-benefits-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .benefit-points {
    grid-column: 2;
    justify-self: start;
  }

  .dashboard-reservation-lookup .search-button {
    width: 100%;
  }

  .dashboard-empty-row td {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 16px;
  }

  .dashboard-empty-row td > div {
    flex: 1 1 190px;
  }

  .dashboard-empty-row .status-badge,
  .dashboard-empty-row .panel-link {
    margin-left: 51px;
  }

  .dashboard-profile-panel .profile-form,
  .dashboard-reservation-lookup {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-profile-panel .full-field,
  .dashboard-profile-panel .profile-form button {
    grid-column: auto;
  }

  .dashboard-security-panel .client-panel-head {
    flex-direction: row;
  }
}

@media (max-width: 430px) {
  .dashboard-hero h1 {
    font-size: 2.1rem;
  }

  .dashboard-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-summary article {
    min-height: 0;
  }

  .dashboard-primary-action,
  .dashboard-secondary-action {
    width: 100%;
  }

  .dashboard-table th,
  .dashboard-table td {
    padding: 13px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-primary-action,
  .dashboard-secondary-action,
  .dashboard-whatsapp-action,
  .dashboard-summary article,
  .client-sidebar.dashboard-sidebar a,
  .chart-bar,
  .security-link svg,
  .dashboard-points-progress span,
  .tier-progress span {
    transition: none;
  }
}

/* Facebook section final presentation. */
.social-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  border-top: 0;
  background: #f7fbff;
}

.social-section::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 43%;
  background: #005aab;
  content: "";
}

.social-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.social-image-free {
  align-self: end;
  width: min(118%, 620px);
  margin: -92px 0 -112px -82px;
}

.social-image-free img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 44, 97, 0.22));
  transition: transform 320ms ease;
}

.social-image-free:hover img {
  transform: translateY(-4px);
}

.facebook-follow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.facebook-follow-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #0866ff;
  border-radius: 8px;
  background: #0866ff;
  box-shadow: none;
}

.facebook-follow-button svg {
  width: 16px;
  height: 16px;
}

.facebook-follow-button:hover {
  background: #0058e6;
  box-shadow: 0 8px 18px rgba(8, 102, 255, 0.2);
}

@media (max-width: 760px) {
  .social-section {
    padding: 68px 0;
  }

  .social-section::before {
    width: 100%;
    height: 260px;
  }

  .social-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .social-image-free {
    width: min(120%, 580px);
    margin: -58px auto 0;
  }

  .social-copy {
    padding-top: 4px;
  }
}

/* Final light Copa palette layer. Kept last so the dashboard stays bright. */
.client-main[data-client-dashboard] {
  background: #f6faff;
}

.dashboard-data-notice {
  border-color: #b8dbef;
  border-left-color: #0071bc;
  background: #eef8fe;
  color: #003876;
}

.dashboard-hero {
  border-color: #005aab;
  background: #005aab;
  box-shadow: 0 16px 32px rgba(0, 77, 151, 0.16);
}

.dashboard-hero .overline {
  color: #cfeeff;
}

.dashboard-primary-action {
  background: #fff;
  color: #003876;
}

.dashboard-primary-action:hover {
  background: #e6f5fe;
  color: #003876;
}

.dashboard-secondary-action {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.dashboard-tier-card {
  border-color: #93caeb;
  background: #0071bc;
}

.tier-icon {
  background: #fff;
  color: #0071bc;
}

.dashboard-summary article,
.dashboard-panels .client-panel {
  border-color: #d4e4f1;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 77, 151, 0.07);
}

.dashboard-summary .summary-icon,
.empty-state-icon,
.security-lock,
.benefit-icon {
  background: #e8f5fd;
  color: #0071bc;
}

.dashboard-summary strong,
.dashboard-panels .client-panel h2,
.dashboard-balance-value strong,
.dashboard-benefits-list h3,
.dashboard-empty-row strong,
.reservation-table td strong {
  color: #003876;
}

.client-sidebar.dashboard-sidebar {
  border-color: #c8e0f0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 77, 151, 0.08);
}

.sidebar-label {
  color: #6c8da8;
}

.client-sidebar.dashboard-sidebar a {
  color: #477294;
}

.client-sidebar.dashboard-sidebar a:hover {
  background: #f0f8fe;
  color: #003876;
}

.client-sidebar.dashboard-sidebar a.is-active {
  border-color: #b8dcef;
  background: #e1f2fc;
  color: #003876;
}

.dashboard-assistance-panel {
  border-color: #c9e2f2;
  background: #f0f8fe;
}

.assistant-icon,
.dashboard-points-progress span,
.tier-progress span,
.chart-bar:hover,
.chart-bar.is-current {
  background: #0071bc;
}

.chart-bar {
  background: #a9d8ef;
}

.chart-bar.is-empty,
.chart-bar.is-current.is-empty {
  background: #d8e9f4;
}

.activity-callout {
  border-left-color: #0071bc;
  background: #eff8fe;
}

.activity-callout span,
.activity-callout p {
  color: #3f7097;
}

.activity-callout strong,
.points-chart > p svg,
.points-positive,
.dashboard-security-panel .security-list svg,
.security-link {
  color: #0071bc !important;
}

.dashboard-table-wrap {
  border-color: #d6e6f1;
}

.dashboard-table th {
  background: #f1f8fd;
  color: #55758f;
}

.dashboard-table tbody tr:not(.dashboard-empty-row):hover {
  background: #f2f9fe;
}

.table-status {
  background: #e8f5fd;
  color: #0066aa;
}

.dashboard-security-panel {
  border-color: #d4e5f0;
  background: #f9fcff;
}

.dashboard-profile-panel .profile-form input,
.dashboard-profile-panel .profile-form textarea,
.dashboard-reservation-lookup input {
  border-color: #cfe1ee;
  background: #fbfdff;
}

.dashboard-profile-panel .profile-form input:focus,
.dashboard-profile-panel .profile-form textarea:focus,
.dashboard-reservation-lookup input:focus {
  border-color: #0071bc;
  box-shadow: 0 0 0 3px rgba(0, 113, 188, 0.13);
}

/* Final mobile compact override: desktop-like density on phones. */
@media (max-width: 760px) {
  html {
    font-size: 14px;
  }

  body {
    background: #f6f9fc;
  }

  .topbar,
  .service-nav,
  .page-container {
    width: min(100% - 18px, 1240px);
  }

  .topbar {
    min-height: 56px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
  }

  .brand {
    width: min(132px, 42vw);
    min-height: 52px;
  }

  .brand-logo {
    max-width: 132px;
    height: 52px;
    transform: scale(1.08);
  }

  .top-actions {
    gap: 4px;
  }

  .round-button,
  .travel-preference-select {
    min-height: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .round-button {
    width: 34px;
  }

  .round-button svg,
  .travel-preference-select svg,
  .nav-pill svg,
  .search-button svg,
  .status-chip svg {
    width: 14px;
    height: 14px;
  }

  .travel-preference-controls {
    gap: 3px;
  }

  .travel-preference-select {
    padding: 0 6px;
  }

  .preference-token {
    width: 16px;
    height: 16px;
  }

  .travel-preference-select select {
    max-width: 48px;
    font-size: 0.78rem;
  }

  .service-nav-shell {
    background: rgba(2, 39, 52, 0.72);
  }

  .service-nav {
    min-height: 40px;
    gap: 0;
    scrollbar-width: none;
  }

  .service-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-pill {
    min-height: 40px;
    gap: 4px;
    padding: 0 9px;
    font-size: 0.72rem;
    font-weight: 760;
  }

  .search-hero {
    min-height: 0;
    padding-bottom: 34px;
  }

  .search-hero > .page-container {
    padding-top: 28px;
  }

  .title-row,
  .help-hero-layout,
  .client-hero,
  .dashboard-hero {
    gap: 12px;
  }

  .title-row {
    margin-bottom: 16px;
  }

  .search-hero .overline,
  .help-hero .overline,
  .dashboard-hero .overline {
    margin-bottom: 7px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .search-hero h1,
  .client-hero h1,
  .dashboard-hero h1,
  .help-hero h1 {
    font-size: 1.82rem;
    line-height: 1.04;
  }

  .hero-intro,
  .help-hero h1 + p,
  .client-hero p,
  .dashboard-hero-copy > p:not(.overline) {
    max-width: 42rem;
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .status-chip {
    min-height: 30px;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
  }

  .status-chip .status-chip-dot {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 0 3px rgba(255, 213, 117, 0.16);
  }

  .search-card,
  .auth-card,
  .legal-card,
  .lead-card,
  .help-card,
  .dashboard-tier-card,
  .client-panel,
  .payment-result-card {
    padding: 12px;
    border-radius: 10px;
  }

  .search-card-head {
    gap: 4px;
    margin-bottom: 10px;
  }

  .search-card h2,
  .auth-card h2,
  .legal-card h1,
  .client-panel h2,
  .payment-result-card h1 {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .search-card p,
  .auth-card > p,
  .legal-card p,
  .legal-card li,
  .service-card p,
  .hotel-body p,
  .travel-tip-card p,
  .help-card p,
  .client-panel p {
    font-size: 0.78rem;
    line-height: 1.38;
  }

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

  .search-field,
  .search-field.wide,
  .search-field.split,
  .lead-card input,
  .lead-card select,
  .lead-card textarea,
  .auth-card input,
  .auth-card select,
  .auth-card textarea {
    min-height: 42px;
    border-radius: 8px;
  }

  .search-field.wide,
  .search-button {
    grid-column: 1 / -1;
  }

  .search-field {
    gap: 4px;
    padding: 6px 8px;
  }

  .search-field span,
  .lead-card span,
  .field-hint,
  .hotel-body small,
  .marketplace-meta,
  .visa-service-card small {
    font-size: 0.64rem;
  }

  .search-field input,
  .search-field select,
  .lead-card input,
  .lead-card select,
  .lead-card textarea,
  .auth-card input,
  .auth-card select,
  .auth-card textarea {
    font-size: 0.86rem;
  }

  .search-button,
  .primary-action,
  .secondary-action,
  .dashboard-primary-action,
  .dashboard-secondary-action,
  .facebook-follow-button,
  .marketplace-cta,
  .visa-card-action {
    min-height: 38px;
    gap: 5px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 0.76rem;
  }

  .offers-section,
  .travel-ready-section,
  .product-section,
  .contact-section,
  .help-hero,
  .help-section,
  .legal-main,
  .auth-main,
  .payment-main,
  .dashboard-section,
  .social-section {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .section-title,
  .travel-ready-heading {
    margin-bottom: 14px;
  }

  .section-title h2,
  .contact-copy h2,
  .travel-ready-heading h2,
  .help-section-title h2 {
    font-size: 1.38rem;
    line-height: 1.12;
  }

  .offer-tabs {
    min-height: 36px;
    padding: 3px;
    border-radius: 9px;
  }

  .offer-tab {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.72rem;
    border-radius: 7px;
  }

  .hotel-grid,
  .travel-tips-grid,
  .marketplace-grid,
  .visa-services-grid,
  .dashboard-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-grid,
  .help-grid,
  .dashboard-panels {
    gap: 10px;
  }

  .hotel-card,
  .travel-tip-card,
  .marketplace-offer-card,
  .visa-service-card,
  .dashboard-summary article {
    border-radius: 10px;
  }

  .hotel-body,
  .travel-tip-card,
  .marketplace-offer-body,
  .visa-service-card,
  .dashboard-summary article {
    padding: 10px;
  }

  .hotel-image img {
    aspect-ratio: 1.34;
  }

  .hotel-image span,
  .marketplace-offer-badge {
    top: 7px;
    left: 7px;
    max-width: calc(100% - 14px);
    padding: 4px 6px;
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .hotel-body h3,
  .travel-tip-card h3,
  .marketplace-offer-card h3,
  .visa-service-card h3 {
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .rating,
  .price-line,
  .marketplace-price-row,
  .visa-card-footer {
    gap: 4px;
  }

  .rating svg {
    width: 11px;
    height: 11px;
  }

  .price-line strong,
  .marketplace-price,
  .visa-card-footer strong,
  .dashboard-summary strong {
    font-size: 0.94rem;
  }

  .price-line del,
  .price-line span {
    font-size: 0.62rem;
  }

  .service-card,
  .service-card:first-child,
  .service-card:nth-child(odd) {
    padding: 16px 4px;
  }

  .service-card svg,
  .travel-tip-card svg,
  .help-card svg {
    width: 30px;
    height: 30px;
    padding: 7px;
  }

  .contact-layout,
  .footer-grid,
  .dashboard-layout,
  .social-layout {
    gap: 18px;
  }

  .site-footer {
    padding-top: 36px;
  }

  .footer-grid,
  .footer-trust {
    font-size: 0.78rem;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 46px;
    min-height: 46px;
  }

  .whatsapp-float svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 430px) {
  html {
    font-size: 13.5px;
  }

  .topbar,
  .service-nav,
  .page-container {
    width: min(100% - 14px, 1240px);
  }

  .brand {
    width: min(118px, 38vw);
    min-height: 48px;
  }

  .brand-logo {
    max-width: 118px;
    height: 48px;
  }

  .round-button,
  .travel-preference-select {
    min-height: 32px;
    height: 32px;
  }

  .round-button {
    width: 32px;
  }

  .nav-pill {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .search-hero h1,
  .client-hero h1,
  .dashboard-hero h1,
  .help-hero h1 {
    font-size: 1.62rem;
  }

  .hotel-grid,
  .travel-tips-grid,
  .marketplace-grid,
  .visa-services-grid,
  .dashboard-summary {
    gap: 7px;
  }

  .hotel-body,
  .travel-tip-card,
  .marketplace-offer-body,
  .visa-service-card,
  .dashboard-summary article {
    padding: 9px;
  }
}

/* Seccion publica de oficinas */
.offices-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 10% 10%, rgba(19, 130, 196, 0.1), transparent 30%),
    linear-gradient(180deg, #f7fbfe 0%, #eef7fc 100%);
}

.offices-section::before {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(8, 87, 143, 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.offices-heading { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }
.offices-heading > p:last-child { max-width: 660px; margin: 14px auto 0; color: #567187; line-height: 1.7; }

.offices-map-shell {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(7, 72, 119, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(13, 69, 107, 0.13);
}

.offices-map { width: 100%; height: 470px; background: #dfeaf1; }
.offices-map.is-unavailable { display: grid; place-items: center; padding: 30px; color: #547087; text-align: center; }

.offices-map-note {
  position: absolute;
  z-index: 500;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(7, 72, 119, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(13, 69, 107, 0.14);
  color: #305a78;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.offices-map-note svg { width: 16px; height: 16px; }

.offices-public-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.office-public-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(7, 72, 119, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 32px rgba(13, 69, 107, 0.08);
}

.office-public-head { display: flex; align-items: center; gap: 13px; }
.office-public-head p { margin: 0 0 4px; color: #0a6cac; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.11em; }
.office-public-head h3 { margin: 0; color: #0a3454; font-size: 1.08rem; line-height: 1.25; }

.office-public-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #d9eeff, #eef8ff);
  color: #0868a8;
}

.office-public-icon svg { width: 21px; height: 21px; }
.office-public-address { display: flex; gap: 9px; margin: 20px 0 14px; color: #4b687f; font-size: 0.84rem; line-height: 1.55; }
.office-public-address svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: #0a74b9; }
.office-public-contacts { display: grid; gap: 8px; }

.office-public-contact {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #0b659f;
  font-size: 0.81rem;
  font-weight: 700;
  text-decoration: none;
}

.office-public-contact span { overflow-wrap: anywhere; }
.office-public-contact svg { width: 16px; height: 16px; flex: 0 0 auto; }
.office-public-contact:hover { color: #064d7c; text-decoration: underline; }

.office-public-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  padding: 13px;
  border-radius: 12px;
  background: #f3f8fb;
  color: #4b687f;
}

.office-public-hours > svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: #0871b5; }
.office-public-hours strong, .office-public-hours span { display: block; }
.office-public-hours strong { margin-bottom: 3px; color: #244b67; font-size: 0.74rem; }
.office-public-hours span { font-size: 0.76rem; line-height: 1.5; }

.office-public-directions {
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  border-radius: 10px;
  background: #096aa8;
  color: #fff;
}

.office-public-directions:hover { background: #075785; color: #fff; text-decoration: none; }

.office-map-popup { display: grid; min-width: 220px; gap: 7px; color: #31536b; }
.office-map-popup strong { color: #0a3454; font-size: 0.94rem; }
.office-map-popup p, .office-map-popup small { margin: 0; line-height: 1.45; }
.office-map-popup .office-public-contact { font-size: 0.74rem; }
.leaflet-popup-content-wrapper { border-radius: 14px; }

@media (max-width: 980px) {
  .offices-public-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .offices-section { padding: 56px 0 62px; }
  .offices-map-shell { margin-top: 24px; border-radius: 16px; }
  .offices-map { height: 340px; }
  .offices-map-note { position: relative; right: auto; bottom: auto; border: 0; border-top: 1px solid #e2ebf1; border-radius: 0; box-shadow: none; }
  .offices-public-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
  .office-public-card { padding: 18px; border-radius: 14px; }
}

@media (max-width: 430px) {
  .offices-map { height: 285px; }
}

/* Escala móvil compacta: mantiene la densidad visual de la portada en teléfono. */
@media (max-width: 900px) {
  html { font-size: 14px; }

  .caribe-inspiration-section { padding: 44px 0 46px; }
  .caribe-inspiration-heading { gap: 12px; margin-bottom: 15px; }
  .caribe-inspiration-heading h2 { font-size: 1.48rem; }
  .caribe-inspiration-heading > div > p:not(.overline) { margin-top: 7px; font-size: 0.78rem; line-height: 1.42; }
  .caribe-inspiration-live { min-height: 30px; padding: 0 9px; font-size: 0.62rem; }
  .caribe-news-content { min-height: 0; }
  .caribe-news-toolbar { min-height: 32px; margin-bottom: 8px; }
  .caribe-news-count { gap: 5px; font-size: 0.64rem; }
  .caribe-news-navigation { gap: 5px; }
  .caribe-news-navigation button { width: 30px; height: 30px; }
  .caribe-news-body { min-height: 166px; padding: 10px; }
  .caribe-news-category { gap: 4px; margin-bottom: 6px; font-size: 0.52rem; }
  .caribe-news-card h3 { font-size: 0.76rem; line-height: 1.2; }
  .caribe-news-description { min-height: 0; margin: 6px 0 9px; font-size: 0.61rem; line-height: 1.35; }
  .caribe-news-link { min-height: 29px; padding: 0 8px; font-size: 0.57rem; }
  .caribe-news-source { top: 6px; left: 6px; min-height: 20px; padding: 0 6px; font-size: 0.5rem; }
  .caribe-news-date { right: 6px; bottom: 5px; font-size: 0.5rem; }
  .caribe-news-pagination { margin-top: 12px; }
  .caribe-news-note { margin-top: 10px; font-size: 0.58rem; }

  .marketplace-home-section { padding: 14px 0 48px; }
  .marketplace-home-title { margin-bottom: 14px; }
  .marketplace-home-copy { margin-top: 7px; font-size: 0.78rem; line-height: 1.42; }
  .marketplace-offers-head { margin-bottom: 10px; }
  .marketplace-offers-head p { font-size: 0.6rem; }
  .marketplace-offers-head strong { font-size: 0.92rem; }
  .marketplace-offers-carousel { padding-bottom: 32px; }
  .marketplace-offer-image { min-height: 126px; }
  .marketplace-source, .marketplace-discount { top: 6px; padding: 4px 6px; border-radius: 5px; font-size: 0.52rem; }
  .marketplace-source { left: 6px; }
  .marketplace-discount { right: 6px; }
  .marketplace-offer-body { min-height: 154px; padding: 9px; }
  .marketplace-affiliate { gap: 4px; margin-bottom: 6px; font-size: 0.55rem; }
  .marketplace-affiliate svg { width: 11px; height: 11px; }
  .marketplace-offer-body h3 { font-size: 0.72rem; line-height: 1.2; }
  .marketplace-description { min-height: 0; margin-top: 5px; font-size: 0.58rem; line-height: 1.35; }
  .marketplace-price-row { gap: 5px; padding-top: 8px; }
  .marketplace-price-row small { margin-bottom: 2px; font-size: 0.54rem; }
  .marketplace-price-row strong { font-size: 0.78rem; }
  .marketplace-original-price del { font-size: 0.55rem; }
  .marketplace-cta { margin-top: 8px; padding-top: 7px; font-size: 0.57rem; }
  .marketplace-cta svg { width: 12px; height: 12px; }
  .marketplace-disclaimer { gap: 5px; margin-top: 10px; font-size: 0.58rem; }
  .marketplace-disclaimer svg { width: 12px; height: 12px; }
}

/* Portada comercial Travel Caribe: estructura propia inspirada en una agencia de viajes moderna. */
.tc-reference-header {
  /* Una sola franja continua: no queda ningún corte blanco al final. */
  background: #f1f2f3;
  color: #334155;
  box-shadow: 0 1px 0 rgba(15, 42, 69, 0.12);
  border-bottom: 0;
}

.tc-reference-header .topbar {
  /* Los accesos quedan agrupados a la izquierda y la franja gris continúa hasta el borde. */
  grid-template-columns: 252px auto max-content max-content;
  justify-content: start;
  min-height: 64px;
  gap: 0;
  background: #f1f2f3;
}

.tc-reference-header .brand {
  width: 252px;
  min-height: 64px;
  justify-content: flex-start;
  background: #f1f2f3;
}

.tc-reference-header .brand-logo {
  width: 244px;
  max-width: 244px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.tc-sales-link {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  /* Curva en el lado izquierdo; el derecho queda recto para unirse al gris. */
  border-radius: 0 0 0 20px;
  background: #e63329;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
}

.tc-sales-link svg { width: 18px; height: 18px; }
.tc-sales-link:hover { background: #c92820; }

.tc-reference-header .utility-links {
  justify-self: stretch;
  justify-content: flex-start;
  gap: 0;
  margin-left: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Franja gris para los accesos de la derecha, igual a la referencia visual. */
.tc-reference-header .utility-links,
.tc-reference-header .top-actions {
  align-self: stretch;
  background: #f1f2f3;
}

.tc-reference-header .utility-links { padding-left: 4px; }
.tc-reference-header .top-actions { padding-right: 8px; }

.tc-reference-header .utility-link {
  min-height: 30px;
  padding: 0 10px;
  border-right: 1px solid #dbe2e8;
  color: #334155;
}

.tc-reference-header .utility-link::after { display: none; }
.tc-reference-header .utility-link:hover { color: #075985; transform: none; }
.tc-reference-header .utility-link svg { width: 16px; height: 16px; color: #557087; }

.tc-reference-header .top-actions { justify-self: start; gap: 6px; }
/* Idioma y moneda deben estar disponibles también en escritorio. */
.tc-reference-header .travel-preference-controls { display: flex; }

.tc-account-cluster {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: #f2f3f5;
}

.tc-reference-header .tc-account-cluster .round-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #263746;
}

.tc-reference-header .tc-account-cluster .round-button:first-child { background: #778391; color: #fff; }
.tc-reference-header .tc-account-cluster .round-button:hover { background: #e2e7eb; transform: none; }
.tc-reference-header .tc-account-cluster .round-button:first-child:hover { background: #596776; }
.tc-reference-header .tc-account-cluster .round-button svg { width: 22px; height: 22px; stroke-width: 2.4; }

.tc-reference-header .tc-cart-link {
  min-height: 40px;
  margin-left: 4px;
  padding: 0 8px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #263b4e;
  font-size: 0.8rem;
}

.tc-reference-header .tc-cart-link:hover { background: transparent; box-shadow: none; color: #075985; }

.tc-reference-home .search-hero {
  min-height: calc(78px + var(--service-banner-height));
  margin-bottom: 120px;
  padding: 0;
  overflow: visible;
  color: #fff;
}

.tc-reference-home { --service-banner-height: 21vw; }

.tc-reference-home .service-nav-shell {
  position: relative;
  z-index: 4;
  background: #07549b;
  box-shadow: 0 1px 0 rgba(4, 55, 104, 0.28);
  color: #fff;
}

.tc-reference-home .service-nav {
  min-height: 78px;
  justify-content: center;
  gap: 0;
  overflow: visible;
}

.tc-reference-home .hero-carousel {
  top: 78px;
  bottom: auto;
  height: var(--service-banner-height);
}

.tc-reference-home .hero-carousel > img,
.tc-reference-home .hero-carousel .swiper-slide img { object-fit: cover; object-position: center; }

.tc-reference-home .nav-pill {
  min-width: 86px;
  min-height: 78px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255,255,255,.9);
  font-size: 0.78rem;
  font-weight: 700;
}

.tc-reference-home .nav-pill::before { display: none; }
.tc-reference-home .nav-pill svg { width: 20px; height: 20px; color: currentColor; }
.tc-reference-home .nav-pill:hover { background: rgba(255,255,255,.14); box-shadow: none; color: #fff; transform: none; }
.tc-reference-home .nav-pill.is-active { box-shadow: inset 0 -3px 0 #fff; color: #fff; animation: none; }
.tc-reference-home .nav-pill.is-active svg { color: #fff; transform: none; }

.tc-reference-home .tc-hero-promo {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: var(--service-banner-height);
  align-items: center;
  overflow: hidden;
}

.tc-reference-home .tc-hero-promo::before {
  display: none;
}

.tc-hero-promo-content { display: none; }
.tc-hero-promo p { margin: 0 0 7px; color: #ffe48d; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.14em; }
.tc-hero-promo h2 { max-width: 680px; margin: 0; color: #fff; font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: 0.9; text-transform: uppercase; }
.tc-hero-promo span { display: block; max-width: 510px; margin-top: 16px; color: rgba(255, 255, 255, 0.9); font-size: 1rem; font-weight: 650; line-height: 1.45; }

.tc-reference-home .search-hero > .page-container {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  z-index: 3;
  padding-top: 0;
  transform: translateY(50%);
}

.tc-reference-home .search-hero::before { display: none; }
.tc-reference-home .hero-carousel { background: #ef2422; }

.tc-reference-home .title-row { display: none; }

.tc-reference-home .search-card {
  padding: 25px 20px 21px;
  border: 0;
  border-radius: 8px;
  background: #07549b;
  box-shadow: 0 18px 34px rgba(5, 41, 79, 0.28);
}

.tc-reference-home .search-card::before { display: none; }
.tc-reference-home .search-card-head { margin-bottom: 14px; }
.tc-reference-home .search-card h2 { font-size: 1.2rem; }
.tc-reference-home .search-card p { display: none; }
.tc-reference-home .search-grid { gap: 12px; }

.tc-reference-home .search-field {
  min-height: 58px;
  border: 1px solid #d7e0e8;
  border-radius: 5px;
  box-shadow: none;
}

.tc-reference-home .search-field:hover { box-shadow: none; transform: none; }
.tc-reference-home .search-field.split + .search-field.split::before { left: -7px; }
.tc-reference-home .search-button { min-height: 48px; border-radius: 999px; background: #ed342a; box-shadow: none; }
.tc-reference-home .search-button:hover { background: #c92820; box-shadow: none; }

@media (max-width: 1080px) {
  .tc-reference-header .topbar { grid-template-columns: 226px auto minmax(0, 1fr) auto; }
  .tc-reference-header .brand, .tc-reference-header .brand-logo { width: 214px; max-width: 214px; }
  .tc-sales-link { padding: 0 13px; }
  .tc-reference-header .utility-link { padding: 0 8px; }
  .tc-social-links { display: none; }
  .tc-reference-home .service-nav { justify-content: flex-start; overflow-x: auto; }
}

@media (max-width: 760px) {
  .tc-reference-home { --service-banner-height: 56vw; }
  .tc-reference-header .topbar { grid-template-columns: minmax(0, 1fr) auto; min-height: 56px; }
  .tc-reference-header .brand { width: 172px; min-height: 56px; }
  .tc-reference-header .brand-logo { width: 168px; max-width: 168px; height: 54px; min-height: 54px; object-fit: contain; transform: none; }
  .tc-sales-link, .tc-reference-header .utility-links, .tc-reference-header .tc-cart-link { display: none; }
  .tc-reference-header .top-actions { gap: 4px; }
  .tc-reference-header .travel-preference-controls { display: flex; }
  .tc-account-cluster { min-height: 38px; padding: 2px; }
  .tc-reference-header .tc-account-cluster .round-button { display: grid !important; width: 34px; height: 34px; }
  .tc-reference-home .service-nav { min-height: 51px; width: 100%; padding: 0 7px; }
  .tc-reference-home .nav-pill { min-width: 66px; min-height: 51px; gap: 2px; padding: 4px 7px; font-size: 0.58rem; }
  .tc-reference-home .nav-pill svg { width: 15px; height: 15px; }
  .tc-reference-home .hero-carousel { top: 51px; bottom: auto; height: var(--service-banner-height); }
  .tc-reference-home .hero-carousel > img { object-fit: cover; }
  .tc-reference-home .tc-hero-promo { min-height: var(--service-banner-height); }
  .tc-hero-promo-content { padding-top: 0; }
  .tc-hero-promo p { margin-bottom: 5px; font-size: 0.56rem; }
  .tc-hero-promo h2 { font-size: 2rem; }
  .tc-hero-promo span { max-width: 285px; margin-top: 9px; font-size: 0.68rem; }
  .tc-reference-home .search-hero { min-height: calc(51px + var(--service-banner-height)); margin-bottom: 150px; padding-bottom: 0; }
  .tc-reference-home .search-hero > .page-container { bottom: -8px; transform: translateY(50%); }
  .tc-reference-home .search-card { padding: 13px; border-radius: 7px; }
  .tc-reference-home .search-card-head { margin-bottom: 8px; }
  .tc-reference-home .search-card h2 { font-size: 0.92rem; }
  .tc-reference-home .search-grid { gap: 6px; }
  .tc-reference-home .search-field { min-height: 43px; padding: 5px 8px; border-radius: 5px; }
  .tc-reference-home .search-button { min-height: 41px; }
}

/* Booking module and straight service banner: final public-home presentation. */
.tc-reference-home {
  --service-banner-height: 21vw;
  --hero-motion-edge: max(18px, calc((100vw - 1280px) / 2));
}

/* Original animated banner shared by all Travel Caribe services. */
.tc-reference-home .hero-carousel,
.tc-reference-home .tc-hero-promo {
  aspect-ratio: 100 / 21;
}

.tc-reference-home .hero-motion-carousel { background: #e83228; }

/* Carrusel fotográfico clásico para los destinos destacados. */
.tc-reference-home .hero-photo-carousel,
.tc-reference-home .hero-photo-carousel .swiper-slide {
  background: #0a4f7d;
}

.tc-reference-home .hero-photo-carousel .swiper-wrapper,
.tc-reference-home .hero-media-slide,
.tc-reference-home .hero-media-slide img,
.tc-reference-home .hero-media-slide video {
  width: 100%;
  height: 100%;
}

.tc-reference-home .hero-media-slide {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tc-reference-home .hero-media-slide img,
.tc-reference-home .hero-media-slide video {
  display: block;
  object-fit: cover !important;
  object-position: center 48%;
  transform: scale(1.035);
}

/* Respaldo sin dependencias: conserva el avance si la librería externa falla. */
.tc-reference-home .hero-photo-carousel.is-native-carousel .swiper-wrapper {
  position: relative;
  transform: none !important;
}

.tc-reference-home .hero-photo-carousel.is-native-carousel .hero-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms ease;
}

.tc-reference-home .hero-photo-carousel.is-native-carousel .hero-media-slide.is-native-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-media-loading {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  margin: 0;
  color: #fff;
  font-size: clamp(0.76rem, 1vw, 1rem);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 31, 67, 0.68);
  transform: translate(-50%, -50%);
}

/* Alta profesional de alojamientos. */
.accommodation-onboarding { margin: 0; background: #f3f7fb; color: #16334f; font-family: inherit; }
.accommodation-header { display:flex; justify-content:space-between; align-items:center; padding:16px max(22px,calc((100% - 1180px)/2)); background:#fff; border-bottom:1px solid #dce6ef; }
.accommodation-header img { width:170px; height:42px; object-fit:contain; }
.accommodation-header a:last-child { color:#07549b; font-weight:800; text-decoration:none; }
.accommodation-shell { max-width:1120px; margin:0 auto; padding:54px 22px 72px; display:grid; grid-template-columns:0.72fr 1.28fr; gap:34px; align-items:start; }
.accommodation-intro { padding:26px; border-radius:18px; background:#07549b; color:#fff; box-shadow:0 18px 35px rgba(8,57,103,.17); }
.accommodation-intro p:first-child,.form-heading p { margin:0 0 7px; color:#f7c94e; font-size:.76rem; font-weight:900; letter-spacing:.12em; }
.accommodation-intro h1 { margin:0 0 14px; font-size:clamp(1.8rem,3vw,2.7rem); line-height:1.05; }
.accommodation-intro p { line-height:1.55; }.accommodation-intro ul { padding-left:19px; line-height:1.8; font-weight:700; }
.accommodation-form { padding:28px; border-radius:18px; background:#fff; box-shadow:0 16px 38px rgba(16,55,87,.12); }
.form-heading { margin-bottom:22px; }.form-heading h2 { margin:0 0 5px; color:#073d75; }.form-heading span,.form-help { color:#5d7083; font-size:.9rem; line-height:1.45; }
.accommodation-form fieldset { margin:0 0 23px; padding:20px 0 0; border:0; border-top:1px solid #e2eaf0; }.accommodation-form legend { padding:0 10px 0 0; color:#07549b; font-weight:900; }
.accommodation-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }.accommodation-grid label { display:grid; gap:6px; color:#29455e; font-size:.83rem; font-weight:800; }.accommodation-grid .wide { grid-column:1/-1; }
.accommodation-form input,.accommodation-form select,.accommodation-form textarea { box-sizing:border-box; width:100%; padding:11px 12px; border:1px solid #cbd8e4; border-radius:8px; background:#fff; color:#193850; font:inherit; }.accommodation-form textarea { min-height:92px; resize:vertical; }
.consent { display:flex; gap:9px; align-items:flex-start; margin:12px 0; color:#3d5367; font-size:.86rem; line-height:1.4; }.consent input { margin-top:3px; }
.form-submit { display:flex; gap:15px; align-items:center; margin-top:24px; }.form-submit button { border:0; border-radius:999px; padding:13px 23px; background:#ec3229; color:#fff; font-weight:900; cursor:pointer; }.form-submit button:disabled { opacity:.65; }.form-submit p { margin:0; color:#07549b; font-weight:700; }
@media(max-width:800px){.accommodation-shell{grid-template-columns:1fr;padding:25px 14px 48px;gap:18px}.accommodation-intro,.accommodation-form{padding:20px;border-radius:13px}.accommodation-grid{grid-template-columns:1fr}.accommodation-grid .wide{grid-column:auto}.form-submit{align-items:flex-start;flex-direction:column}.accommodation-header{padding:12px 14px}.accommodation-header img{width:145px}}

/* Inicio móvil inspirado en la navegación de la referencia proporcionada. */
.tc-mobile-discovery,.tc-mobile-bottom-nav { display:none; }
@media (max-width:760px) {
  body { padding-bottom:86px; background:#f3f5f8; }
  .tc-reference-header { display:none; }
  .tc-reference-home .search-hero { display:flex; flex-direction:column; min-height:0 !important; margin:0 !important; background:#f3f5f8; }
  .tc-mobile-discovery { display:block; order:0; padding:15px 18px 34px; background:#07549b; color:#fff; }
  .tc-mobile-discovery-top { display:flex; justify-content:space-between; align-items:center; min-height:28px; }.tc-mobile-discovery-top a { color:#fff; }.tc-mobile-discovery-top svg { width:25px; height:25px; }.tc-mobile-cart-icon img { filter:brightness(0) invert(1); }
  .tc-mobile-discovery h1 { margin:19px 0 25px; color:#fff; font-size:1.65rem; line-height:1.1; }
  .tc-mobile-services { display:flex; gap:12px; margin-right:-18px; padding:0 18px 7px 0; overflow-x:auto; overscroll-behavior-x:contain; scroll-snap-type:x proximity; scrollbar-width:none; -webkit-overflow-scrolling:touch; }.tc-mobile-services::-webkit-scrollbar { display:none; }.tc-mobile-services button,.tc-mobile-services a { position:relative; display:grid; flex:0 0 72px; justify-items:center; gap:9px; border:0; padding:0; background:transparent; color:#fff; font:inherit; text-decoration:none; scroll-snap-align:start; }.tc-mobile-services b { font-size:.72rem; font-weight:700; white-space:nowrap; }.tc-mobile-icon { display:grid; place-items:center; width:62px; height:62px; border-radius:50%; background:rgba(135,190,239,.31); }.tc-mobile-icon svg { width:29px; height:29px; stroke-width:2.7; }.tc-mobile-services button[data-service="paquetes"] .tc-mobile-icon { display:flex; gap:0; }.tc-mobile-services button[data-service="paquetes"] .tc-mobile-icon svg { width:19px; }.tc-mobile-services em { position:absolute; top:55px; padding:4px 8px; border-radius:6px; background:#f79216; color:#fff; font-size:.63rem; font-style:normal; font-weight:900; }
  .tc-mobile-coupon { display:flex; width:100%; align-items:center; gap:13px; margin-top:30px; padding:14px 16px; border:0; border-radius:999px; background:rgba(126,180,230,.5); color:#fff; font:inherit; font-size:1rem; font-weight:800; text-align:left; }.tc-mobile-coupon svg:first-child { width:24px; }.tc-mobile-coupon svg:last-child { width:20px; margin-left:auto; }
  .tc-reference-home .hero-carousel { order:1; position:relative; top:auto; height:37vw; min-height:0; aspect-ratio:auto; background:#e82824; }.tc-reference-home .hero-photo-carousel,.tc-reference-home .hero-photo-carousel .swiper-slide { background:#e82824; }.tc-reference-home .hero-media-slide img,.tc-reference-home .hero-media-slide video { transform:none; object-fit:cover !important; object-position:center; }
  .tc-reference-home .service-nav-shell,.tc-reference-home .tc-hero-promo { display:none; }
  .tc-reference-home .search-hero > .page-container { order:2; position:static !important; width:100% !important; margin:0 !important; padding:14px 12px 0 !important; transform:none !important; }.tc-reference-home .search-card { display:none; }
  .tc-reference-home .offers-section { padding-top:22px !important; }
  .tc-mobile-bottom-nav { position:fixed; z-index:100; right:14px; bottom:12px; left:14px; display:grid; grid-template-columns:repeat(5,1fr); align-items:center; min-height:68px; border-radius:36px; background:#f7931d; box-shadow:0 8px 24px rgba(18,47,73,.24); }.tc-mobile-bottom-nav a,.tc-mobile-bottom-nav button { display:grid; justify-items:center; gap:3px; border:0; background:transparent; color:rgba(255,255,255,.86); font:inherit; font-size:.62rem; text-decoration:none; }.tc-mobile-bottom-nav svg { width:25px; height:25px; }.tc-mobile-bottom-nav .is-active { color:#fff; }.tc-mobile-bottom-nav .is-active svg { padding:10px; border-radius:50%; box-sizing:content-box; background:rgba(255,255,255,.22); }.tc-mobile-site-search { position:fixed; z-index:101; right:14px; bottom:91px; left:14px; padding:14px; border-radius:18px; background:#fff; box-shadow:0 12px 32px rgba(18,47,73,.26); }.tc-mobile-site-search label { display:block; margin-bottom:8px; color:#173a59; font-size:.82rem; font-weight:800; }.tc-mobile-site-search form > div { display:flex; overflow:hidden; border:1px solid #d9e1e8; border-radius:12px; }.tc-mobile-site-search input { width:100%; min-width:0; padding:12px; border:0; outline:0; font:inherit; }.tc-mobile-site-search form button { display:grid; width:46px; place-items:center; border:0; background:#07549b; color:#fff; }.tc-mobile-site-search-results { display:grid; gap:7px; margin-top:10px; }.tc-mobile-site-search-results a { padding:9px 10px; border-radius:9px; background:#f3f6f9; color:#173a59; font-size:.83rem; font-weight:750; text-decoration:none; }.tc-mobile-site-search-results p { margin:3px 0 0; color:#65717a; font-size:.8rem; }
}

/* Portada de video local: elegante, sin carrusel ni API externa. */
.tc-video-hero { position:relative; min-height:500px; overflow:hidden; background:#071d32; isolation:isolate; }.tc-video-hero-media { position:absolute; z-index:-2; inset:-14px; width:calc(100% + 28px); height:calc(100% + 28px); object-fit:cover; filter:blur(5px); }.tc-video-hero-overlay { position:absolute; z-index:-1; inset:0; background:rgba(0,0,0,.42); }.tc-video-hero-content { display:flex; min-height:500px; align-items:center; justify-content:center; flex-direction:column; padding:40px 22px; color:#fff; }.tc-video-message { width:min(1050px,100%); margin:0 0 25px; text-align:left; }.tc-video-message p { margin:0 0 8px; color:#f5c54e; font-size:.78rem; font-weight:900; letter-spacing:.16em; }.tc-video-message h2 { max-width:680px; margin:0; color:#fff; font-size:clamp(2.3rem,4.4vw,4.35rem); font-weight:950; line-height:.95; letter-spacing:.015em; }.tc-video-message span { display:block; margin-top:12px; color:#fff; font-size:1.04rem; font-weight:750; }.tc-video-search-slot { width:min(1050px,100%); animation:tc-video-search-in .7s ease-out both; }.tc-video-search-slot .search-card { padding:14px; border:1px solid rgba(255,255,255,.55); border-radius:18px; background:rgba(255,255,255,.96); box-shadow:0 16px 42px rgba(0,0,0,.28); color:#193850; }.tc-video-search-slot .search-card-head { display:none; }.tc-video-search-slot .search-grid { display:grid; grid-template-columns:1.45fr repeat(3,1fr) auto; align-items:stretch; gap:0; }.tc-video-search-slot .search-field { min-height:62px; border:0; border-right:1px solid #dbe4ec; border-radius:0; background:transparent; }.tc-video-search-slot .search-field.wide { grid-column:auto; }.tc-video-search-slot .search-button { min-height:54px; align-self:center; border-radius:999px; }.search-hero.is-video-hero > .page-container,.search-hero.is-video-hero .tc-hero-promo { display:none; }.search-hero.is-video-hero { --service-banner-height:0px; min-height:0; margin-bottom:0; padding:0; }.search-hero.is-video-hero .service-nav-shell { position:relative; z-index:5; }
@keyframes tc-video-search-in { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@media (max-width:760px) { .search-hero.is-video-hero { display:flex; }.tc-video-hero { order:1; min-height:440px; }.tc-video-hero-content { min-height:440px; padding:34px 16px; }.tc-video-message { margin-bottom:18px; text-align:center; }.tc-video-message h2 { font-size:2rem; }.tc-video-message span { font-size:.9rem; }.tc-video-search-slot .search-card { padding:10px; border-radius:14px; }.tc-video-search-slot .search-grid { grid-template-columns:1fr 1fr; gap:6px; }.tc-video-search-slot .search-field,.tc-video-search-slot .search-field.wide { min-height:52px; border:1px solid #e2e8ef; border-radius:9px; }.tc-video-search-slot .search-button { grid-column:1/-1; width:100%; min-height:49px; }.search-hero.is-video-hero .service-nav-shell { display:none; } }

/* Más respiración vertical para el mensaje y el buscador de la portada. */
.tc-video-hero,.tc-video-hero-content { min-height:580px; }.tc-video-hero-content { justify-content:space-evenly; padding:45px 22px 36px; }.tc-video-message { margin-bottom:0; }.tc-video-message p { margin-bottom:12px; }.tc-video-message h2 { max-width:780px; line-height:.98; }.tc-video-message span { margin-top:16px; }.tc-video-search-slot { margin-top:18px; }
@media (max-width:760px){.tc-video-hero,.tc-video-hero-content{min-height:470px}.tc-video-message{margin-bottom:18px}.tc-video-search-slot{margin-top:0}}

/* Preferencias de la cabecera: misma tipografía gris que los demás enlaces. */
.tc-reference-header .travel-preference-select { min-height:32px; gap:5px; color:#4d6374; font-family:inherit; font-size:.78rem; font-weight:700; }.tc-reference-header .travel-preference-select:hover,.tc-reference-header .travel-preference-select:focus-within { color:#334155; background:transparent; transform:none; }.tc-reference-header .travel-preference-select select { color:#4d6374; font-family:inherit; font-size:.78rem; font-weight:700; }.tc-reference-header .travel-currency-select { padding-left:8px; border-left:1px solid #dbe2e8; }
.tc-social-links{display:inline-flex;align-items:center;gap:4px;padding:0 2px}.tc-social-links a{display:grid;width:25px;height:25px;place-items:center;border-radius:50%;transition:transform 160ms ease,background 160ms ease}.tc-social-links a:hover{background:#e6edf3;transform:translateY(-1px)}.tc-social-links img{width:18px;height:18px;object-fit:contain}.tc-reference-header .tc-cart-link img{width:21px;height:21px;object-fit:contain}.tc-mobile-cart-icon img{width:27px;height:27px;object-fit:contain}@media(max-width:760px){.tc-social-links{display:none}.tc-reference-header .tc-cart-link img{width:18px;height:18px}}

.hero-media-credit,
.hero-media-attribution {
  position: absolute;
  z-index: 4;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(0, 42, 78, 0.72);
  color: #fff;
  font-size: clamp(0.56rem, 0.72vw, 0.76rem);
  font-weight: 750;
  text-decoration: none;
  text-shadow: none;
}

.hero-media-credit { right: max(16px, calc((100vw - 1280px) / 2)); }
.hero-media-attribution { left: max(16px, calc((100vw - 1280px) / 2)); }
.hero-media-attribution a { color: #fff; font-weight: 900; text-decoration: underline; text-underline-offset: 2px; }

.hero-media-controls[hidden] { display: none; }

/* Prueba de video promocional: ocupa todo el banner y se adapta sin mostrar controles. */
.tc-reference-home .hero-video-carousel { background: #063f77; }

.tc-reference-home .hero-promo-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1.5px);
  transform: scale(1.012);
}

.tc-reference-home .hero-video-carousel .hero-motion-banner {
  background: transparent !important;
}

.tc-reference-home .hero-video-carousel .hero-motion-banner::before {
  display: none;
}

.tc-reference-home .hero-video-carousel .hero-motion-banner::after {
  background: linear-gradient(90deg, rgba(1, 42, 80, 0.16), transparent 52%, rgba(1, 42, 80, 0.1));
}

.tc-reference-home .hero-video-carousel .hero-motion-banner > * {
  display: none;
}

.tc-reference-home .hero-motion-banner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 214, 112, 0.35), transparent 12%),
    radial-gradient(circle at 14% 100%, rgba(248, 173, 45, 0.24), transparent 26%),
    linear-gradient(112deg, #e72e25 0%, #ed4430 48%, #c91e28 100%);
}

.tc-reference-home .hero-motion-banner::before,
.tc-reference-home .hero-motion-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.tc-reference-home .hero-motion-banner::before {
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(25deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-position: 0 0, 0 0;
  background-size: 24px 24px, 34px 34px;
  opacity: 0.72;
  animation: hero-motion-pattern 18s linear infinite;
}

.tc-reference-home .hero-motion-banner::after {
  background: linear-gradient(90deg, rgba(0, 33, 80, 0.26), transparent 47%, rgba(0, 33, 80, 0.16));
}

.hero-motion-sun {
  position: absolute;
  top: 13%;
  right: 16%;
  width: clamp(35px, 5vw, 92px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffd56e;
  box-shadow: 0 0 0 12px rgba(255, 213, 110, 0.1), 0 0 42px rgba(255, 213, 110, 0.5);
  animation: hero-motion-sun 5s ease-in-out infinite alternate;
}

.hero-motion-cloud {
  position: absolute;
  z-index: 1;
  width: clamp(42px, 7vw, 130px);
  height: clamp(12px, 2vw, 35px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 4px 8px rgba(0, 43, 84, 0.12));
  opacity: 0.92;
}

.hero-motion-cloud::before,
.hero-motion-cloud::after {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.hero-motion-cloud::before { left: 18%; width: 43%; height: 160%; }
.hero-motion-cloud::after { right: 16%; width: 52%; height: 210%; }
.hero-motion-cloud-one { top: 20%; left: 7%; animation: hero-motion-cloud-one 16s linear infinite; }
.hero-motion-cloud-two { top: 64%; left: 69%; transform: scale(0.72); animation: hero-motion-cloud-two 20s linear infinite; }
.hero-motion-cloud-three { top: 42%; left: 45%; transform: scale(0.45); opacity: 0.62; animation: hero-motion-cloud-three 24s linear infinite; }

.hero-motion-route {
  position: absolute;
  z-index: 2;
  top: 3%;
  right: 4%;
  width: 60%;
  height: 62%;
  overflow: visible;
}

.hero-motion-route path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.84);
  stroke-width: 4;
  stroke-dasharray: 11 13;
  stroke-linecap: round;
  animation: hero-motion-route 6s linear infinite;
}

.hero-motion-plane {
  position: absolute;
  z-index: 3;
  top: 20%;
  right: 41%;
  width: clamp(22px, 3vw, 58px);
  height: clamp(22px, 3vw, 58px);
  fill: #fff;
  filter: drop-shadow(0 5px 7px rgba(0, 33, 80, 0.22));
  animation: hero-motion-plane 7s ease-in-out infinite;
}

.hero-motion-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: var(--hero-motion-edge);
  max-width: min(48vw, 710px);
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 3px 12px rgba(83, 17, 22, 0.32);
}

.hero-motion-copy p {
  margin: 0 0 0.38em;
  color: #ffe48c;
  font-size: clamp(0.55rem, 0.9vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero-motion-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3.25vw, 4.35rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-motion-copy span {
  display: block;
  max-width: 530px;
  margin-top: clamp(7px, 1vw, 17px);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.62rem, 1.12vw, 1.14rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-motion-badges {
  position: absolute;
  z-index: 4;
  right: var(--hero-motion-edge);
  bottom: clamp(14px, 2vw, 36px);
  display: flex;
  gap: clamp(9px, 1.8vw, 28px);
  color: #fff;
}

.hero-motion-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.52rem, 0.85vw, 0.94rem);
  font-weight: 800;
  white-space: nowrap;
}

.hero-motion-badges svg { width: 1.25em; height: 1.25em; color: #ffe48c; }

.hero-motion-service-art {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: var(--hero-motion-edge);
  width: clamp(64px, 10vw, 190px);
  height: clamp(64px, 10vw, 190px);
  transform: translateY(-54%);
}

.hero-motion-service-art::before {
  position: absolute;
  inset: 8%;
  border: 2px dashed rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  content: "";
  animation: hero-motion-art-orbit 12s linear infinite;
}

.hero-motion-service-icon {
  position: absolute;
  inset: 21%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 28%;
  background: rgba(1, 47, 92, 0.28);
  box-shadow: 0 14px 26px rgba(102, 13, 28, 0.25);
  backdrop-filter: blur(3px);
}

.hero-motion-service-icon svg {
  width: 53%;
  height: 53%;
  color: #ffe48c;
  stroke-width: 2.2;
}

.hero-motion-service-dot {
  position: absolute;
  width: 11%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.66);
}

.hero-motion-service-dot-one { top: 7%; right: 21%; animation: hero-motion-dot-one 3.2s ease-in-out infinite; }
.hero-motion-service-dot-two { bottom: 12%; left: 9%; animation: hero-motion-dot-two 3.7s ease-in-out infinite; }

.hero-motion-banner[data-service="ofertas"] .hero-motion-service-icon { animation: hero-motion-offer 3.3s ease-in-out infinite; }
.hero-motion-banner[data-service="hoteles"] .hero-motion-service-icon { animation: hero-motion-hotel 4s ease-in-out infinite; }
.hero-motion-banner[data-service="vuelos"] .hero-motion-service-icon { animation: hero-motion-flight 4.2s ease-in-out infinite; }
.hero-motion-banner[data-service="paquetes"] .hero-motion-service-icon { animation: hero-motion-package 4.1s ease-in-out infinite; }
.hero-motion-banner[data-service="traslados"] .hero-motion-service-icon { animation: hero-motion-transfer 3.8s ease-in-out infinite; }
.hero-motion-banner[data-service="autos"] .hero-motion-service-icon { animation: hero-motion-car 2.6s ease-in-out infinite; }
.hero-motion-banner[data-service="visados"] .hero-motion-service-icon { animation: hero-motion-visa 2.8s ease-in-out infinite; }
.hero-motion-banner[data-service="actividades"] .hero-motion-service-icon { animation: hero-motion-activity 3.6s ease-in-out infinite; }

.hero-motion-banner[data-service="vuelos"] { background: linear-gradient(112deg, #005aa8 0%, #0786c6 49%, #07549b 100%); }
.hero-motion-banner[data-service="hoteles"] { background: linear-gradient(112deg, #e83428 0%, #ed683a 52%, #bd2134 100%); }
.hero-motion-banner[data-service="paquetes"] { background: linear-gradient(112deg, #0b5e96 0%, #078c9d 50%, #04677d 100%); }
.hero-motion-banner[data-service="traslados"] { background: linear-gradient(112deg, #034f82 0%, #207f98 50%, #0a5c7e 100%); }
.hero-motion-banner[data-service="autos"] { background: linear-gradient(112deg, #304c74 0%, #587da2 50%, #233d66 100%); }
.hero-motion-banner[data-service="visados"] { background: linear-gradient(112deg, #253d75 0%, #5961a6 50%, #263568 100%); }
.hero-motion-banner[data-service="actividades"] { background: linear-gradient(112deg, #9b3c24 0%, #e3682f 50%, #a63428 100%); }

/* Vuelos: un cielo vivo, con nubes que cruzan y un avión recorriendo la cabecera. */
.hero-motion-banner[data-service="vuelos"] .hero-motion-cloud { opacity: 0.94; }
.hero-motion-banner[data-service="vuelos"] .hero-motion-route { opacity: 1; }
.hero-motion-banner[data-service="vuelos"] .hero-motion-plane {
  top: 51%;
  right: auto;
  left: 0;
  animation: hero-motion-plane-pass 9s linear infinite;
}

/* Alojamientos: una pequeña avenida de hoteles y viajeros en movimiento. */
.hero-motion-scene {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.hero-motion-hotel-street {
  position: absolute;
  right: 2.4%;
  bottom: 4%;
  width: 51%;
  height: 78%;
  overflow: hidden;
}

.hero-motion-hotel-street::before {
  position: absolute;
  right: -8%;
  bottom: 0;
  left: 0;
  height: 29%;
  border-top: 2px solid rgba(255, 228, 140, 0.75);
  background: linear-gradient(0deg, rgba(0, 39, 83, 0.52), rgba(6, 65, 102, 0.22));
  clip-path: polygon(0 52%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero-motion-hotel-building {
  position: absolute;
  bottom: 22%;
  overflow: hidden;
  border: 2px solid rgba(255, 240, 201, 0.66);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 15%, rgba(255, 231, 157, 0.92) 15% 24%, transparent 24% 39%),
    repeating-linear-gradient(0deg, transparent 0 17%, rgba(255, 231, 157, 0.92) 17% 24%, transparent 24% 40%),
    linear-gradient(135deg, #0d4c70, #12728b);
  box-shadow: 0 14px 25px rgba(74, 15, 23, 0.24);
  transform-origin: bottom;
  animation: hero-motion-building-glow 4.5s ease-in-out infinite alternate;
}

.hero-motion-hotel-building::after {
  position: absolute;
  top: 10%;
  left: 50%;
  padding: 3px 6px;
  border-radius: 3px;
  background: #ffe48c;
  color: #08466e;
  content: "HOTEL";
  font-size: clamp(5px, 0.45vw, 10px);
  font-weight: 900;
  letter-spacing: 0.09em;
  transform: translateX(-50%);
}

.hero-motion-hotel-building-one { left: 18%; width: 20%; height: 54%; }
.hero-motion-hotel-building-two { left: 42%; width: 26%; height: 75%; animation-delay: -1.1s; }
.hero-motion-hotel-building-three { left: 72%; width: 18%; height: 43%; animation-delay: -2.2s; }

.hero-motion-hotel-street-line {
  position: absolute;
  right: 0;
  bottom: 11%;
  left: 3%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #ffe48c 0 30px, transparent 30px 58px);
  opacity: 0.8;
  transform: skewX(-17deg);
  animation: hero-motion-street-line 3.6s linear infinite;
}

.hero-motion-walker {
  position: absolute;
  bottom: 14%;
  z-index: 2;
  width: clamp(9px, 1vw, 18px);
  height: clamp(22px, 2.9vw, 51px);
  animation: hero-motion-walk 7.4s linear infinite;
}

.hero-motion-walker b {
  position: absolute;
  top: 0;
  left: 25%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffe48c;
}

.hero-motion-walker i {
  position: absolute;
  top: 26%;
  left: 36%;
  width: 32%;
  height: 55%;
  border-radius: 999px 999px 22% 22%;
  background: #fff;
  box-shadow: -6px 11px 0 -4px #fff, 6px 11px 0 -4px #fff;
}

.hero-motion-walker-one { left: 9%; animation-delay: -1.7s; }
.hero-motion-walker-two { left: 63%; animation-delay: -5.3s; transform: scale(0.78); }

.hero-motion-banner[data-service="hoteles"] .hero-motion-route,
.hero-motion-banner[data-service="hoteles"] .hero-motion-plane,
.hero-motion-banner[data-service="hoteles"] .hero-motion-cloud,
.hero-motion-banner[data-service="hoteles"] .hero-motion-sun { display: none; }

.hero-motion-banner[data-service="hoteles"] .hero-motion-service-art {
  top: 28%;
  right: 5%;
  width: clamp(48px, 6vw, 95px);
  height: clamp(48px, 6vw, 95px);
  opacity: 0.78;
}

@keyframes hero-motion-pattern { to { background-position: 180px 0, -150px 0; } }
@keyframes hero-motion-sun { to { transform: translateY(8%) scale(1.08); } }
@keyframes hero-motion-cloud-one { from { transform: translateX(-18%); } to { transform: translateX(700%); } }
@keyframes hero-motion-cloud-two { from { transform: translateX(0) scale(0.72); } to { transform: translateX(-620%) scale(0.72); } }
@keyframes hero-motion-cloud-three { from { transform: translateX(0) scale(0.45); } to { transform: translateX(980%) scale(0.45); } }
@keyframes hero-motion-route { to { stroke-dashoffset: -144; } }
@keyframes hero-motion-plane { 0%, 100% { transform: translate(0, 0) rotate(-12deg); } 50% { transform: translate(70%, -20%) rotate(2deg); } }
@keyframes hero-motion-plane-pass {
  0% { transform: translate(-12vw, 9vw) rotate(-9deg); opacity: 0; }
  12% { opacity: 1; }
  78% { opacity: 1; }
  100% { transform: translate(111vw, -8vw) rotate(8deg); opacity: 0; }
}
@keyframes hero-motion-art-orbit { to { transform: rotate(360deg); } }
@keyframes hero-motion-dot-one { 50% { transform: translate(-150%, 150%) scale(1.45); opacity: 0.55; } }
@keyframes hero-motion-dot-two { 50% { transform: translate(190%, -130%) scale(0.7); opacity: 0.6; } }
@keyframes hero-motion-offer { 50% { transform: rotate(-9deg) scale(1.13); } }
@keyframes hero-motion-hotel { 50% { transform: translateY(-13%) scale(1.05); } }
@keyframes hero-motion-flight { 50% { transform: translate(21%, -19%) rotate(10deg); } }
@keyframes hero-motion-package { 50% { transform: rotate(12deg) translateY(-9%); } }
@keyframes hero-motion-transfer { 50% { transform: translateX(20%) scale(1.05); } }
@keyframes hero-motion-car { 25%, 75% { transform: translateY(-8%); } 50% { transform: translateX(16%); } }
@keyframes hero-motion-visa { 50% { transform: scale(0.88) rotate(-6deg); } }
@keyframes hero-motion-activity { 50% { transform: rotate(11deg) scale(1.12); } }
@keyframes hero-motion-building-glow { to { filter: brightness(1.16); transform: translateY(-2%) scale(1.015); } }
@keyframes hero-motion-street-line { to { background-position: 58px 0; } }
@keyframes hero-motion-walk {
  0% { transform: translateX(-14vw); opacity: 0; }
  10%, 86% { opacity: 1; }
  100% { transform: translateX(50vw); opacity: 0; }
}

/* BANNER_DIVIDERS_DISABLED: there must never be a wave between the banner and content. */
.tc-reference-home .search-hero,
.tc-reference-home .hero-carousel,
.tc-reference-home .tc-hero-promo,
.tc-reference-home .offers-section {
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.tc-reference-home .search-hero::before,
.tc-reference-home .search-hero::after,
.tc-reference-home .tc-hero-promo::before,
.tc-reference-home .tc-hero-promo::after,
.tc-reference-home .offers-section::before,
.tc-reference-home .offers-section::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.tc-reference-home .search-hero {
  min-height: 0;
  margin-bottom: 0;
  padding: 0;
  z-index: 3;
  background: #f4f7f7;
}

.tc-reference-home .search-hero > .page-container {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  padding-top: 0;
  transform: none;
}

.tc-reference-home .offers-section {
  padding-top: clamp(52px, 5vw, 78px);
  z-index: 1;
}

.tc-reference-home .search-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-top: 3px solid #ffd575;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 182, 245, 0.24), transparent 32%),
    linear-gradient(120deg, #003e80 0%, #07549b 58%, #0a619f 100%);
  box-shadow: 0 24px 52px rgba(0, 38, 82, 0.31);
  color: #fff;
}

.tc-reference-home .search-card-head {
  align-items: center;
  gap: 20px;
  margin-bottom: 13px;
}

.tc-reference-home .search-card-heading {
  min-width: 0;
}

.tc-reference-home .search-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  color: #d9edff;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tc-reference-home .search-card-kicker svg {
  width: 15px;
  height: 15px;
  color: #ffd575;
}

.tc-reference-home .search-card h2 {
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.05;
}

.tc-reference-home .search-card p {
  display: block;
  max-width: 690px;
  margin-top: 4px;
  color: rgba(232, 245, 255, 0.83);
  font-size: 0.78rem;
  line-height: 1.35;
}

.tc-reference-home .search-card-assurance {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(216, 237, 255, 0.3);
  border-radius: 999px;
  background: rgba(1, 42, 86, 0.28);
  color: #e8f6ff;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.tc-reference-home .search-card-assurance svg {
  width: 15px;
  height: 15px;
  color: #ffd575;
}

.tc-reference-home .search-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 4px;
  border: 1px solid rgba(2, 51, 98, 0.19);
  border-radius: 10px;
  background: #fff;
}

.tc-reference-home .search-field {
  min-height: 62px;
  min-width: 150px;
  flex: 1 1 175px;
  padding: 9px 13px;
  border: 0;
  border-right: 1px solid #dce6ef;
  border-radius: 7px;
  background: #fff;
  box-shadow: none;
}

.tc-reference-home .search-field.wide {
  flex: 1.22 1 235px;
}

.tc-reference-home .search-field.split {
  flex: 0.76 1 145px;
}

.tc-reference-home .search-field.split + .search-field.split::before {
  display: none;
}

.tc-reference-home .search-field:hover,
.tc-reference-home .search-field:focus-within {
  z-index: 2;
  background: #f4f9ff;
  box-shadow: inset 0 0 0 1px #0b76ba;
  transform: none;
}

.tc-reference-home .search-field svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: #0874bf;
}

.tc-reference-home .search-field span {
  color: #668093;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tc-reference-home .search-field input,
.tc-reference-home .search-field select {
  color: #153a62;
  font-size: 0.83rem;
  font-weight: 800;
}

.tc-reference-home .search-button {
  align-self: stretch;
  min-height: 50px;
  margin: 5px;
  padding: 0 26px;
  border-radius: 999px;
  background: #e93026;
  box-shadow: 0 8px 16px rgba(188, 42, 34, 0.24);
}

.tc-reference-home .search-button:hover {
  background: #c92820;
  box-shadow: 0 10px 20px rgba(188, 42, 34, 0.3);
}

.tc-reference-home .flight-mode-row {
  margin: 0 0 10px;
  padding: 0;
}

.tc-reference-home .flight-trip-toggle {
  padding: 3px;
  border-color: rgba(218, 237, 255, 0.38);
  background: rgba(0, 38, 82, 0.3);
}

.tc-reference-home .flight-trip-option {
  color: #d9edff;
}

.tc-reference-home .flight-trip-option:hover {
  color: #fff;
}

.tc-reference-home .flight-trip-option.is-active {
  background: #fff;
  color: #07549b;
}

.tc-reference-home .search-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin: 10px 4px 0;
  color: rgba(231, 245, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 720;
}

.tc-reference-home .search-card-foot span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tc-reference-home .search-card-foot svg {
  width: 14px;
  height: 14px;
  color: #ffd575;
}

@media (max-width: 760px) {
  .tc-reference-home {
    --service-banner-height: 21vw;
  }

  .tc-reference-home .hero-carousel,
  .tc-reference-home .tc-hero-promo {
    aspect-ratio: 100 / 21;
  }

  .tc-reference-home .hero-carousel > img {
    object-fit: cover;
  }

  .tc-reference-home .search-hero {
    min-height: calc(51px + var(--service-banner-height));
  }

  .tc-reference-home .offers-section {
    padding-top: 210px;
  }

  .tc-reference-home .search-card {
    padding: 13px;
    border-radius: 10px;
  }

  .tc-reference-home .search-card-head {
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 10px;
  }

  .tc-reference-home .search-card h2 {
    font-size: 0.98rem;
  }

  .tc-reference-home .search-card p {
    font-size: 0.64rem;
  }

  .tc-reference-home .search-card-assurance {
    display: none;
  }

  .tc-reference-home .search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
  }

  .tc-reference-home .search-field,
  .tc-reference-home .search-field.wide,
  .tc-reference-home .search-field.split {
    min-width: 0;
    min-height: 51px;
    padding: 7px 8px;
    border: 1px solid #dce6ef;
    border-radius: 7px;
  }

  .tc-reference-home .search-field.wide {
    grid-column: span 2;
  }

  .tc-reference-home .search-field svg {
    width: 16px;
    height: 16px;
    margin-right: 7px;
  }

  .tc-reference-home .search-field span {
    font-size: 0.56rem;
  }

  .tc-reference-home .search-field input,
  .tc-reference-home .search-field select {
    font-size: 0.71rem;
  }

  .tc-reference-home .search-button {
    grid-column: span 2;
    min-height: 44px;
    margin: 2px;
  }

  .tc-reference-home .search-card-foot {
    gap: 8px;
    margin-top: 8px;
    font-size: 0.57rem;
  }

  .tc-reference-home .flight-mode-row {
    margin-bottom: 7px;
  }

  .tc-reference-home .flight-trip-option {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.65rem;
  }
}

/* Android and mobile layout: keep the whole service artwork visible, then
   place the reservation module below it instead of covering the banner. */
@media (max-width: 760px) {
  .tc-reference-home {
    --service-banner-height: 21vw;
  }

  .tc-reference-home .search-hero {
    min-height: auto;
    background: #f4f7f7;
    overflow: visible;
  }

  .tc-reference-home .hero-carousel {
    overflow: hidden;
  }

  .tc-reference-home .hero-carousel > img,
  .tc-reference-home .hero-carousel .swiper-slide img {
    /* Keep the complete 5:1 artwork visible on phones, including all text. */
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .tc-reference-home .search-hero > .page-container {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 3;
    margin-top: clamp(16px, 4vw, 24px);
    padding-top: 0;
    transform: none !important;
  }

  .tc-reference-home .offers-section {
    padding-top: 46px;
  }

  .tc-reference-home .search-card {
    padding: 15px;
    border-width: 1px;
    border-top-width: 3px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 14px 28px rgba(0, 38, 82, 0.22);
  }

  .tc-reference-home .search-card-head {
    margin-bottom: 12px;
  }

  .tc-reference-home .search-card-kicker {
    margin-bottom: 5px;
    font-size: 0.65rem;
  }

  .tc-reference-home .search-card h2 {
    font-size: 1.05rem;
  }

  .tc-reference-home .search-card p {
    max-width: 100%;
    font-size: 0.7rem;
    line-height: 1.42;
  }

  .tc-reference-home .search-grid {
    gap: 7px;
    padding: 6px;
    border-radius: 10px;
  }

  .tc-reference-home .search-field,
  .tc-reference-home .search-field.wide,
  .tc-reference-home .search-field.split {
    min-height: 54px;
    padding: 8px 9px;
    border-radius: 8px;
  }

  .tc-reference-home .search-button {
    min-height: 48px;
    margin: 3px;
    font-size: 0.9rem;
  }

  .tc-reference-home .search-card-foot {
    gap: 9px;
    margin: 10px 2px 0;
    padding-top: 9px;
    border-top: 1px solid rgba(218, 237, 255, 0.22);
    font-size: 0.61rem;
  }
}

/* Final Android layout: the booking module starts after the service artwork. */
@media (max-width: 760px) {
  main.tc-reference-home > section.search-hero {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  main.tc-reference-home > section.search-hero > .tc-hero-promo {
    min-height: 21vw !important;
  }

  main.tc-reference-home > section.search-hero > .page-container {
    position: static !important;
    inset: auto !important;
    width: min(100% - 24px, 1240px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    transform: none !important;
  }

  main.tc-reference-home > .offers-section {
    padding-top: 46px !important;
  }
}

@media (max-width: 760px) {
  .tc-reference-home { --hero-motion-edge: 12px; }
  .hero-photo-carousel .swiper-pagination { bottom: 32px; }
  .hero-media-credit,
  .hero-media-attribution {
    bottom: 6px;
    min-height: 19px;
    padding: 0 6px;
    font-size: 0.47rem;
  }
  .hero-media-credit { right: 7px; }
  .hero-media-attribution { left: 7px; }
  .hero-motion-copy { left: var(--hero-motion-edge); max-width: 58%; }
  .hero-motion-copy p { font-size: 0.4rem; letter-spacing: 0.1em; }
  .hero-motion-copy h2 { font-size: 0.92rem; }
  .hero-motion-copy span, .hero-motion-badges { display: none; }
  .hero-motion-route { width: 66%; height: 75%; right: -1%; }
  .hero-motion-plane { top: 16%; right: 35%; width: 21px; height: 21px; }
  .hero-motion-banner[data-service="vuelos"] .hero-motion-plane { top: 46%; right: auto; left: 0; }
  .hero-motion-sun { right: 10%; width: 30px; }
  .hero-motion-scene { display: none; }
  .hero-motion-service-art { right: var(--hero-motion-edge); width: 50px; height: 50px; }
  .hero-motion-service-art::before { border-width: 1px; }
  .hero-motion-service-icon { border-width: 1px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-banner *,
  .hero-motion-banner::before { animation: none !important; }
}
.discovercars-ad-slot {
  grid-column: 1 / -1;
  position: relative;
  width: min(100%, 924px);
  margin: 0 auto;
  padding: 11px;
  border: 1px solid #dce5eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(9, 48, 80, 0.1);
}

.discovercars-ad-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 3px 9px;
  color: #5d6b78;
}

.discovercars-ad-meta span {
  color: #6b7782;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discovercars-ad-meta small {
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discovercars-banner {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #eef3f6;
  line-height: 0;
  outline-offset: 4px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.discovercars-banner:hover {
  box-shadow: 0 12px 28px rgba(8, 70, 116, 0.2);
  transform: translateY(-2px);
}

.discovercars-banner:focus-visible {
  outline: 3px solid #f7a51a;
}

.discovercars-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 1;
  object-fit: cover;
}

.discovercars-ad-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 8px 3px 0;
  color: #687785;
  font-size: 0.72rem;
  line-height: 1.35;
}

.discovercars-ad-note svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.discovercars-tracking-pixel {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .discovercars-ad-slot {
    padding: 7px;
    border-radius: 14px;
  }

  .discovercars-ad-meta {
    padding: 1px 2px 7px;
  }

  .discovercars-ad-meta small {
    font-size: 0.68rem;
  }

  .discovercars-banner {
    border-radius: 9px;
  }

  .discovercars-ad-note {
    justify-content: flex-start;
    margin: 7px 2px 1px;
    font-size: 0.64rem;
  }
}

.gyg-experience-section {
  padding: 18px 0 64px;
  background:
    radial-gradient(circle at 8% 18%, rgba(247, 165, 26, 0.11), transparent 28%),
    #f4f7f9;
}

.gyg-experience-section[hidden] {
  display: none !important;
}

.gyg-experience-card {
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid #dce5eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(9, 48, 80, 0.1);
}

.gyg-experience-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.gyg-experience-heading .overline {
  margin: 0 0 7px;
  color: #e87917;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gyg-experience-heading h2 {
  margin: 0;
  color: #073d72;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.gyg-experience-heading p:not(.overline) {
  margin: 9px 0 0;
  color: #5e6d79;
  line-height: 1.55;
}

.gyg-experience-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid #cfe0ec;
  border-radius: 999px;
  background: #f2f8fc;
  color: #07558f;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.gyg-experience-badge svg {
  width: 16px;
  height: 16px;
  color: #e87917;
}

.gyg-widget-host {
  width: 100%;
  min-height: 164px;
  overflow: hidden;
  border: 1px solid #e1e8ed;
  border-radius: 16px;
  background: #f8fafb;
}

.gyg-widget-host > [data-gyg-widget="availability"],
.gyg-widget-host iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

.gyg-widget-host > [data-gyg-widget="availability"] > span {
  display: flex;
  min-height: 164px;
  align-items: center;
  justify-content: center;
  color: #687785;
  font-size: 0.8rem;
}

.gyg-widget-host a {
  color: #07558f;
  font-weight: 800;
}

.gyg-experience-disclosure {
  margin: 10px 2px 0;
  color: #75828c;
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: right;
}

.gyg-auto-recommendations {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #e2e9ee;
}

.gyg-auto-recommendations > header {
  max-width: 760px;
  margin-bottom: 18px;
}

.gyg-auto-recommendations .overline {
  margin: 0 0 6px;
  color: #e87917;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gyg-auto-recommendations h3 {
  margin: 0;
  color: #073d72;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
}

.gyg-auto-recommendations header > p:last-child {
  margin: 8px 0 0;
  color: #63717d;
  line-height: 1.5;
}

.gyg-auto-widget-host {
  width: 100%;
  min-height: 260px;
  padding: 10px;
  border: 1px solid #e1e8ed;
  border-radius: 16px;
  background: #f8fafb;
}

.gyg-auto-widget-host > [data-gyg-widget="auto"],
.gyg-auto-widget-host iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

@media (max-width: 700px) {
  .gyg-experience-section {
    padding: 10px 0 98px;
  }

  .gyg-experience-card {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .gyg-experience-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
  }

  .gyg-experience-heading h2 {
    font-size: 1.55rem;
  }

  .gyg-experience-badge {
    white-space: normal;
  }

  .gyg-widget-host {
    min-height: 238px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .gyg-widget-host > [data-gyg-widget="availability"] > span {
    min-height: 238px;
  }

  .gyg-experience-disclosure {
    text-align: left;
  }

  .gyg-auto-recommendations {
    margin-top: 20px;
    padding-top: 20px;
  }

  .gyg-auto-recommendations h3 {
    font-size: 1.3rem;
  }

  .gyg-auto-widget-host {
    min-height: 320px;
    padding: 7px;
    border-radius: 12px;
  }
}
