.c-search-panel__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.c-search-panel__toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.c-search-panel__toolbar select {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
}

.c-search-field--select select {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  appearance: none;
  width: 100%;
}

.c-header-collective--compact .c-header-collective__bar {
  padding: 4px 0;
}

.c-button--small {
  padding: 6px 14px;
  font-size: 12px;
}

.page-resultados .c-resultados {
  padding: 32px 16px 64px;
}

.c-resultados__head {
  margin-bottom: 28px;
}

.c-resultados__head h1 {
  margin: 0 0 8px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.c-resultados__head p {
  margin: 0;
  color: var(--s-color-middle-gray);
}

.c-resultados__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

.c-resultados__filters {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
  position: sticky;
  top: 88px;
}

.c-resultados__filters h2 {
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.c-filter-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13px;
}

.c-filter-block select,
.c-filter-block input[type="range"] {
  width: 100%;
}

.c-resultados__list {
  display: grid;
  gap: 16px;
}

.c-resultados__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text, #1f2937);
  text-align: center;
}

.c-resultados__empty a {
  display: inline-block;
  margin-top: 0.75rem;
}

.c-result-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.c-result-card:hover {
  box-shadow: var(--shadow);
}

.c-result-card__img {
  min-height: 160px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.c-result-card__img img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.c-result-card__body {
  padding: 16px 0;
}

.c-result-card__body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.c-result-card__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--s-color-middle-gray);
  margin-bottom: 8px;
}

.c-result-card__badge {
  display: inline-block;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.c-result-card__price {
  padding: 16px 20px 16px 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.c-result-card__price strong {
  font-size: 22px;
  color: var(--s-color-brand-primary);
}

.c-result-card__price a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--s-color-brand-primary);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.page-detalle .c-detalle { padding: 0 0 64px; max-width: none; width: 100%; }

.c-detalle-gate {
  padding: 48px 16px 80px;
  text-align: center;
}

.c-detalle-gate__back {
  margin: 0 0 24px;
  text-align: left;
}

.c-detalle-gate__back a {
  color: #c2410c;
  font-weight: 600;
  text-decoration: none;
}

.c-detalle-gate__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #0f172a;
}

.c-detalle-gate__lead {
  margin: 0 auto;
  max-width: 36rem;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-detalle .c-header-collective__main {
  display: none;
}

.page-detalle .c-header-collective__bar-inner--detalle {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
}

.page-detalle .c-header-collective--compact .c-header-collective__bar {
  padding: 10px 0;
}

.c-detalle-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border: 2px solid #c2410c;
  border-radius: 999px;
  background: linear-gradient(180deg, #ea580c 0%, #c2410c 100%);
  color: #fff;
  box-shadow:
    0 8px 24px rgba(194, 65, 12, 0.38),
    0 0 0 3px rgba(255, 255, 255, 0.96);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.c-detalle-scroll-top i {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.c-detalle-scroll-top:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #c2410c 0%, #9a3412 100%);
  box-shadow:
    0 12px 28px rgba(154, 52, 18, 0.42),
    0 0 0 3px rgba(255, 255, 255, 0.96);
}

.c-detalle-scroll-top:focus-visible {
  outline: 2px solid #9a3412;
  outline-offset: 3px;
}

.c-detalle-scroll-top[hidden] {
  display: none;
}

/* Scroll unificado: header, nav de secciones, contenido y sidebar se mueven juntos */
.page-detalle .c-header-collective,
.page-detalle .c-header-collective__bar,
.page-detalle .c-header-collective__main {
  position: static;
  top: auto;
}

.page-detalle .c-detalle__sidebar {
  position: static;
  top: auto;
}

.page-detalle .c-pkg-cms-bar {
  position: static;
  top: auto;
}

.page-detalle .c-pkg-nav,
.page-detalle .c-detalle-section-nav {
  position: static;
  top: auto;
  z-index: auto;
}

.page-detalle .c-header-collective__display--detalle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 12px;
  padding: 8px 0 10px;
  min-height: auto;
}

.page-detalle .c-detalle-section-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 14px 0 12px;
  background: transparent;
  border-bottom: 1px solid #e8edf2;
}

.page-detalle .c-detalle-section-nav a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

.page-detalle .c-detalle-section-nav a:hover {
  border-color: var(--s-color-brand-primary, #e85d04);
  color: var(--s-color-brand-primary, #e85d04);
  background: #fff7ed;
}

.page-detalle .c-user-menu--detalle {
  margin-left: auto;
  flex: 0 0 auto;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-detalle .c-user-menu--detalle .c-button--outline,
.page-detalle .c-user-menu--detalle .c-detalle-header-admin {
  border-color: rgba(255, 255, 255, 0.38);
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.page-detalle .c-user-menu--detalle .c-button--outline:hover,
.page-detalle .c-user-menu--detalle .c-detalle-header-admin:hover {
  border-color: #ffb454;
  color: #fff;
  background: rgba(232, 93, 4, 0.28);
}

.page-detalle .c-user-menu--detalle #link-admin-panel,
.page-detalle .c-user-menu--detalle #link-admin-panel-detalle {
  border-color: rgba(255, 255, 255, 0.38);
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
}

.page-detalle .c-detalle-section-nav,
.page-detalle .c-detalle__content,
.page-detalle .c-pkg-cms-bar .c-pkg-cms-bar__inner {
  width: 100%;
  max-width: var(--container-max, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.page-detalle .c-pkg-cms-bar {
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.c-detalle__hero {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin: 12px 0 24px;
  background: #1a1a1a;
}

.page-detalle .c-detalle__hero {
  margin: 0 0 24px;
  border-radius: 0;
  width: 100%;
}

.c-detalle__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-detalle__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.c-detalle__hero-text {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 48px 32px;
}

.c-detalle__hero-text h1 {
  margin: 0 0 8px;
  font-size: 32px;
}

.c-detalle__content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}

.c-detalle__sidebar {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: fit-content;
  align-self: start;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.c-detalle__sidebar strong.c-pkg-sidebar__price {
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.c-detalle__sidebar .c-pkg-sidebar__hero--simple strong.c-pkg-sidebar__price {
  color: var(--s-color-brand-primary, #e85d04);
}

.c-detalle__sidebar .c-pkg-sidebar__hero:not(.c-pkg-sidebar__hero--simple) strong.c-pkg-sidebar__price {
  color: #ffb454;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .c-resultados__layout {
    grid-template-columns: 1fr;
  }

  .c-resultados__filters {
    position: static;
  }

  .c-result-card {
    grid-template-columns: 1fr;
  }

  .c-result-card__img {
    min-height: 180px;
  }

  .c-result-card__price {
    padding: 0 16px 16px;
    text-align: left;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .c-detalle__content { grid-template-columns: 1fr; }
  .c-detalle__sidebar { position: static; }

  .page-detalle .c-header-collective__bar-inner--detalle {
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-detalle .c-user-menu--detalle {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .page-detalle .c-detalle-section-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding-bottom: 14px;
  }

  .page-detalle .c-detalle-section-nav::-webkit-scrollbar {
    display: none;
  }

  .page-detalle .c-detalle__hero--video {
    min-height: 0;
    height: auto;
  }

  .c-detalle-scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

.c-result-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--s-color-brand-primary, #e85d04);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.c-result-card__badge--featured {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.c-pkg-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
  position: sticky;
  top: 72px;
  z-index: 5;
  background: #f4f6f8;
  padding: 10px 0;
}

.c-pkg-nav a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

.c-pkg-nav a:hover {
  border-color: var(--s-color-brand-primary, #e85d04);
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-detalle__hero-region {
  margin: 8px 0 0;
  opacity: 0.9;
}

.c-detalle__hero--video {
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

.page-detalle .c-detalle__hero--video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
}

.page-detalle .c-detalle__hero-video-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-detalle__hero--video .c-detalle__hero-overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.28) 38%,
      rgba(0, 0, 0, 0.08) 62%,
      rgba(0, 0, 0, 0.02) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.12) 55%,
      transparent 100%
    );
}

.c-detalle__hero--video .c-detalle__hero-text {
  padding: 28px 32px 24px;
  max-width: min(640px, 92%);
  text-align: left;
}

.c-detalle__hero--video .c-detalle__hero-bg,
.c-detalle__hero--video .c-detalle__hero-poster {
  z-index: 0;
  opacity: 1;
  transition: opacity 0.8s ease;
  object-fit: cover;
  object-position: center center;
}

.page-detalle .c-detalle__hero--video .c-detalle__hero-bg,
.page-detalle .c-detalle__hero--video .c-detalle__hero-poster {
  object-fit: contain;
  object-position: center center;
  background: #111;
}

.c-detalle__hero-poster.is-hidden {
  opacity: 0;
}

.c-detalle__hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: #111;
}

.c-detalle__hero-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  border: 0;
  pointer-events: none;
}

.page-detalle .c-detalle__hero-youtube {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  transform: none;
  flex: 0 0 auto;
  filter: brightness(1.04) contrast(1.03) saturate(1.03);
}

.c-detalle__hero--video.is-playing .c-detalle__hero-youtube {
  z-index: 1;
}

.c-detalle__hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.c-pkg-main {
  min-width: 0;
}

.c-pkg-section {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.c-pkg-section h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: #0f172a;
}

.c-pkg-section__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef2f7;
}

.c-pkg-section__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: var(--s-color-brand-primary, #e85d04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.c-pkg-section__head-text {
  min-width: 0;
  flex: 1;
}

.c-pkg-section__head-text h2 {
  margin: 0 0 4px;
}

.c-pkg-section__head-text .c-pkg-section__intro {
  margin: 0;
}

.c-pkg-section__head--with-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 34%);
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: none;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #bae6fd;
  background: linear-gradient(90deg, #f0f9ff 0%, #fffbeb 55%, #fff 100%);
}

.c-pkg-section__head--bernina.c-pkg-section__head--with-cover {
  border-color: #bae6fd;
}

.c-pkg-section__head-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  padding: 16px 18px;
}

.c-pkg-section__head--with-cover .c-pkg-section__head-text h2 {
  margin: 0 0 4px;
}

.c-pkg-section__cover {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  border-left: 1px solid rgba(14, 116, 144, 0.12);
}

.c-pkg-section__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.c-pkg-section__head--bernina .c-pkg-section__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 249, 255, 0.92) 0%, rgba(255, 251, 235, 0.15) 38%, transparent 100%);
  pointer-events: none;
}

.c-pkg-section--grid .c-pkg-section__head {
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.c-pkg-section__intro,
.c-pkg-lead {
  color: #475569;
  line-height: 1.7;
  margin: 0 0 16px;
}

.c-pkg-section--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.c-pkg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-pkg-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 13px;
}

.c-pkg-highlights li i {
  font-size: 11px;
  opacity: 0.85;
}

.c-pkg-itinerary {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.c-pkg-itinerary::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e5e7eb;
}

.c-pkg-itinerary__day {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 18px;
}

.c-pkg-itinerary__day:last-child {
  padding-bottom: 0;
}

.c-pkg-itinerary__marker {
  position: relative;
  z-index: 1;
}

.c-pkg-itinerary__module {
  list-style: none;
  margin: 20px 0 12px;
  padding: 0;
}

.c-pkg-itinerary__module-banner {
  position: relative;
  min-height: 92px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.c-pkg-itinerary__module-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.82) 100%);
}

.c-pkg-itinerary__module-banner h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px 18px;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-pkg-itinerary__body {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.c-pkg-itinerary__thumb {
  min-height: 120px;
  overflow: hidden;
  background: #e8edf2;
}

.c-pkg-itinerary__thumb img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  display: block;
}

.c-pkg-itinerary__content {
  padding: 14px 16px;
}

.c-detalle__hero-subtitle {
  margin: 0 0 8px;
  font-size: 1.05rem;
  opacity: 0.92;
}

.c-detalle__hero-meta {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.95;
  max-width: 52ch;
}

.c-pkg-coordinadores {
  margin: 0 0 16px;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.c-pkg-coordinadores i {
  color: var(--s-color-brand-primary, #e85d04);
  margin-top: 3px;
}

.c-pkg-familia {
  background: linear-gradient(180deg, #fffbf5 0%, #fff7ed 100%);
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
}

.c-pkg-familia__intro {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.c-pkg-familia__footer {
  margin-top: 18px;
  text-align: center;
}

.c-pkg-familia__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(260px, 1.05fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.c-pkg-familia__media {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.c-pkg-familia__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.c-pkg-familia__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.c-pkg-familia__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.12);
  border: 1px solid rgba(232, 93, 4, 0.22);
  color: #c2410c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-pkg-familia__content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.25;
  color: #0f172a;
}

.c-pkg-familia__lead {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

.c-pkg-familia__lead strong {
  color: #0f172a;
  font-weight: 600;
}

.c-pkg-familia__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.c-pkg-familia__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 13px;
  font-weight: 600;
}

.c-pkg-familia__chips i {
  color: #ea580c;
}

.c-pkg-familia__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c2410c;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.c-pkg-familia__link:hover {
  color: #9a3412;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .c-pkg-familia__inner {
    grid-template-columns: 1fr;
  }
}

.c-pkg-pdf a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--s-color-brand-primary, #e85d04);
  font-weight: 600;
  text-decoration: none;
}

.c-pkg-modular {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.c-pkg-modular__card p {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.9rem;
}

.c-pkg-modular__card strong {
  display: block;
  font-size: 1.35rem;
  color: #0f172a;
}

.c-pkg-modular__card span {
  font-size: 12px;
  color: #64748b;
}

.c-pkg-section--pricing {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  border: 2px solid #fed7aa;
  box-shadow: 0 8px 28px rgba(154, 52, 18, 0.08);
}

.c-pkg-section--pricing .c-pkg-section__head {
  border-bottom-color: #fed7aa;
}

.c-pkg-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(154, 52, 18, 0.28);
  white-space: nowrap;
}

.c-pkg-price-badge--lg {
  min-width: 132px;
  padding: 12px 18px;
  font-size: 1.35rem;
}

.c-pkg-price-badge--secondary {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  box-shadow: 0 2px 8px rgba(51, 65, 85, 0.22);
}

.c-pkg-modular-table--occupancy th.c-pkg-modular-table__price-col,
.c-pkg-modular-table--occupancy .c-pkg-modular-table__price {
  min-width: 118px;
}

.c-pkg-modular-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.c-pkg-modular-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.c-pkg-modular-table th,
.c-pkg-modular-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
  color: #0f172a;
}

.c-pkg-modular-table tbody tr:last-child td {
  border-bottom: 0;
}

.c-pkg-modular-table tbody tr:nth-child(even) {
  background: #fffaf5;
}

.c-pkg-modular-table tbody tr:hover {
  background: #fff7ed;
}

.c-pkg-modular-table th {
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.c-pkg-modular-table th.c-pkg-modular-table__price-col,
.c-pkg-modular-table__price {
  text-align: center;
}

.c-pkg-modular-table td strong {
  color: #0f172a;
}

.c-pkg-modular-table__price {
  white-space: nowrap;
}

/* —— Hospedaje por destino (Grand Tour y paquetes con calendario) —— */
.c-pkg-section--hospedaje {
  overflow: hidden;
}

.c-pkg-hospedaje-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.c-pkg-hospedaje-summary__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e8edf2;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.c-pkg-hospedaje-summary__item > i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.1);
  color: var(--s-color-brand-primary, #e85d04);
  font-size: 15px;
}

.c-pkg-hospedaje-summary__item small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 2px;
}

.c-pkg-hospedaje-summary__item strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  line-height: 1.3;
}

.c-pkg-hospedaje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  counter-reset: hospedaje;
}

.c-pkg-hospedaje-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8edf2;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-pkg-hospedaje-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.c-pkg-hospedaje-card__media {
  position: relative;
  height: 132px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8edf2 0%, #dbeafe 100%);
}

.c-pkg-hospedaje-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.c-pkg-hospedaje-card:hover .c-pkg-hospedaje-card__media img {
  transform: scale(1.04);
}

.c-pkg-hospedaje-card__order {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.c-pkg-hospedaje-card__nights {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.c-pkg-hospedaje-card__nights i {
  color: var(--s-color-brand-primary, #e85d04);
  font-size: 11px;
}

.c-pkg-hospedaje-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.c-pkg-hospedaje-card__body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.c-pkg-hospedaje-card__country,
.c-pkg-hospedaje-card__dates {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}

.c-pkg-hospedaje-card__country i,
.c-pkg-hospedaje-card__dates i {
  margin-top: 2px;
  color: var(--s-color-brand-primary, #e85d04);
  flex-shrink: 0;
}

.c-pkg-hospedaje-card__bar {
  margin-top: auto;
  padding-top: 8px;
  height: 4px;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}

.c-pkg-hospedaje-card__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffb454 0%, var(--s-color-brand-primary, #e85d04) 100%);
}

.c-pkg-hospedaje-total {
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
  border: 1px solid #fed7aa;
}

.c-pkg-hospedaje-total > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.c-pkg-hospedaje-total strong {
  font-size: 1.05rem;
  color: #9a3412;
}

.c-pkg-hospedaje-total > div > span {
  font-size: 13px;
  color: #475569;
}

.c-pkg-hospedaje-total p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

.c-pkg-modular__card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 18px 18px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.c-pkg-modular__card--featured {
  border-color: #fdba74;
  box-shadow: 0 8px 24px rgba(194, 65, 12, 0.12);
}

.c-pkg-modular__card-head {
  margin: 0 -18px 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #9a3412;
  font-size: 1.2rem;
}

.c-pkg-modular__card-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.c-pkg-modular__card-note {
  font-size: 12px;
  color: #64748b;
}

.c-pkg-modular__card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0f172a;
}

.c-pkg-itinerary__marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  padding: 0;
  border-radius: 999px;
  background: #1e293b;
  color: #f8fafc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.16);
}

.c-pkg-itinerary__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
  margin-bottom: 6px;
}

.c-pkg-itinerary__head h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.c-pkg-itinerary__location {
  font-size: 13px;
  color: #64748b;
}

.c-pkg-itinerary__body p {
  margin: 0 0 10px;
  color: #374151;
  line-height: 1.65;
}

.c-pkg-itinerary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #64748b;
}

.c-pkg-itinerary__meta i {
  margin-right: 4px;
}

.c-pkg-proveedores {
  margin-top: 36px;
  padding: 28px 24px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.c-pkg-proveedores__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 22px;
}

.c-pkg-proveedores__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-pkg-proveedores__eyebrow i {
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-proveedores__head h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: #0f172a;
}

.c-pkg-proveedores__head p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.c-pkg-proveedores__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-pkg-proveedores__item {
  flex: 0 1 auto;
}

.c-pkg-proveedores__item a,
.c-pkg-proveedores__item img {
  display: block;
}

.c-pkg-proveedores__item a {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-pkg-proveedores__item a:hover {
  transform: translateY(-2px);
}

.c-pkg-proveedores__item img {
  max-width: 132px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  filter: grayscale(0.15);
  transition: filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.c-pkg-proveedores__item a:hover img,
.c-pkg-proveedores__item img:hover {
  filter: grayscale(0);
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.c-pkg-list {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.7;
}

.c-pkg-list li + li {
  margin-top: 6px;
}

.c-pkg-salidas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-pkg-salidas li {
  padding: 8px 14px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  color: #0f172a;
}

.c-pkg-sidebar__label,
.c-pkg-sidebar__note {
  color: #64748b;
  font-size: 13px;
}

.c-pkg-sidebar__hero {
  padding: 22px 22px 18px;
  background:
    linear-gradient(145deg, #0f2744 0%, #163a5f 52%, #1e4d72 100%);
  color: #fff;
}

.c-pkg-sidebar__hero--simple {
  background: linear-gradient(145deg, #fff7ed 0%, #fff 100%);
  color: #0f172a;
  border-bottom: 1px solid #eef2f7;
}

.c-pkg-sidebar__hero--simple .c-pkg-sidebar__from {
  color: #64748b;
}

.c-pkg-sidebar__hero--simple .c-pkg-sidebar__price {
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-sidebar__hero--simple .c-pkg-sidebar__note {
  color: #64748b;
}

.c-pkg-sidebar__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-pkg-sidebar__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.c-pkg-sidebar__from {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.c-pkg-sidebar__hero .c-pkg-sidebar__price {
  color: #ffb454;
}

.c-pkg-sidebar__hero .c-pkg-sidebar__note {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.c-pkg-sidebar__module-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.c-pkg-sidebar__module-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.c-pkg-sidebar__module-chip i {
  margin-top: 2px;
  color: #fdba74;
}

.c-pkg-sidebar__module-chip span {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.c-pkg-sidebar__ref-price {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.c-pkg-sidebar__ref-price small {
  grid-column: 1;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
}

.c-pkg-sidebar__ref-price strong {
  grid-column: 2;
  font-size: 1.05rem;
  color: #fff;
}

.c-pkg-sidebar__ref-price span {
  grid-column: 1 / -1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
}

.c-pkg-sidebar__panel {
  padding: 18px 18px 16px;
}

.c-pkg-sidebar__panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
}

.c-pkg-sidebar__panel-title i {
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-sidebar__timeline {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.c-pkg-sidebar__timeline-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.c-pkg-sidebar__timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #fff;
}

.c-pkg-sidebar__timeline-item--salida .c-pkg-sidebar__timeline-icon,
.c-pkg-sidebar__timeline-item--regreso .c-pkg-sidebar__timeline-icon {
  background: linear-gradient(145deg, #ea580c, #c2410c);
}

.c-pkg-sidebar__timeline-item--llegada .c-pkg-sidebar__timeline-icon {
  background: linear-gradient(145deg, #0284c7, #0369a1);
}

.c-pkg-sidebar__timeline-item--primera .c-pkg-sidebar__timeline-icon,
.c-pkg-sidebar__timeline-item--ultima .c-pkg-sidebar__timeline-icon {
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
}

.c-pkg-sidebar__timeline-item small {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-pkg-sidebar__timeline-item strong {
  display: block;
  color: #0f172a;
  font-size: 0.88rem;
  line-height: 1.35;
  text-transform: capitalize;
}

.c-pkg-sidebar__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.c-pkg-sidebar__stat {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 10px 8px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  text-align: center;
}

.c-pkg-sidebar__stat--wide {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  justify-items: start;
  align-items: center;
  column-gap: 10px;
  text-align: left;
}

.c-pkg-sidebar__stat--wide strong {
  font-size: 0.92rem;
  line-height: 1.3;
}

.c-pkg-sidebar__stat i {
  color: var(--s-color-brand-primary, #e85d04);
  font-size: 0.95rem;
}

.c-pkg-sidebar__stat strong {
  font-size: 1.15rem;
  color: #0f172a;
  line-height: 1;
}

.c-pkg-sidebar__stat small {
  color: #64748b;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.c-pkg-sidebar__actions {
  display: grid;
  gap: 10px;
  padding: 16px 18px 20px;
  border-top: 1px solid #eef2f7;
  background: #fcfcfd;
}

.c-pkg-sidebar__actions--cta {
  padding-top: 14px;
  background: linear-gradient(180deg, #fff7ed 0%, #fcfcfd 100%);
}

.c-pkg-sidebar__cta-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.c-pkg-sidebar__cta-hint i {
  color: #059669;
  flex-shrink: 0;
}

.c-pkg-sidebar__cta-whatsapp {
  position: relative;
  z-index: 0;
  overflow: visible;
  min-height: 50px;
  border: 0 !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  animation: c-pkg-cta-glow 2.6s ease-in-out infinite;
}

.c-pkg-sidebar__cta-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.5), rgba(18, 140, 126, 0));
  opacity: 0.85;
  animation: c-pkg-cta-ring 2.6s ease-in-out infinite;
}

.c-pkg-sidebar__cta-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: c-pkg-cta-shine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.c-pkg-sidebar__cta-whatsapp i {
  font-size: 1.25em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.c-pkg-sidebar__cta-whatsapp:hover,
.c-pkg-sidebar__cta-whatsapp:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, #2ee06a 0%, #0f7a6c 100%) !important;
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 14px 34px rgba(37, 211, 102, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.c-pkg-sidebar__cta-whatsapp:active {
  transform: translateY(0) scale(0.99);
}

@keyframes c-pkg-cta-glow {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(37, 211, 102, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  }
  50% {
    box-shadow:
      0 14px 36px rgba(37, 211, 102, 0.52),
      0 0 0 1px rgba(255, 255, 255, 0.28) inset;
  }
}

@keyframes c-pkg-cta-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes c-pkg-cta-shine {
  0%, 72%, 100% {
    transform: translateX(-120%);
  }
  88% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-pkg-sidebar__cta-whatsapp,
  .c-pkg-sidebar__cta-whatsapp::before,
  .c-pkg-sidebar__cta-whatsapp::after {
    animation: none;
  }
}

.c-pkg-sidebar__actions .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.c-pkg-sidebar__route-maps {
  padding: 16px 18px 20px;
  border-top: 1px solid #eef2f7;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-pkg-sidebar__route-maps-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-pkg-sidebar__route-maps-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c-pkg-sidebar__route-maps-title i {
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-sidebar__route-maps-head > span {
  font-size: 11px;
  color: #64748b;
  line-height: 1.45;
}

.c-pkg-sidebar__route-map-wrap {
  border-top: 1px solid #eef2f7;
  scroll-margin-top: 88px;
}

.c-pkg-sidebar__route-map-head {
  padding: 14px 16px 10px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.c-pkg-sidebar__route-map-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.c-pkg-sidebar__route-map-title i {
  color: #059669;
  font-size: 13px;
}

.c-pkg-sidebar__route-map-intro {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: #64748b;
}

.c-pkg-route-map--sidebar {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__layout {
  grid-template-columns: 1fr;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__map-col {
  border-bottom: 1px solid #e2e8f0;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__canvas,
.c-pkg-route-map--sidebar .c-pkg-route-map__canvas .leaflet-container {
  min-height: 190px;
  height: 190px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__toolbar {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 10px 12px;
}

.c-pkg-route-map__toolbar-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-pkg-route-map__expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  padding: 9px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.c-pkg-route-map__expand:hover,
.c-pkg-route-map__expand:focus-visible {
  background: #ecfdf5;
  border-color: #6ee7b7;
  outline: none;
}

.c-pkg-route-map__expand i {
  color: #059669;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__expand {
  width: 100%;
}

.c-route-map-modal {
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) 16px max(12px, env(safe-area-inset-bottom));
}

.c-route-map-modal .c-modal__wrapper {
  max-width: min(1100px, calc(100vw - 32px));
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.c-route-map-modal__container {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  min-height: 0;
  overflow: hidden;
}

.c-route-map-modal__close {
  z-index: 5;
}

.c-route-map-modal__head {
  flex-shrink: 0;
  padding: 16px 52px 10px 18px;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.c-route-map-modal__head h2 {
  margin: 0 0 4px;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: #0f172a;
}

.c-route-map-modal__head p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.c-route-map-modal__tabs-wrap {
  flex-shrink: 0;
  border-bottom: 1px solid #e2e8f0;
}

.c-route-map-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.c-route-map-modal__map-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid #e2e8f0;
}

.c-route-map-modal__canvas {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  position: relative;
}

.c-route-map-modal__canvas .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
}

.c-route-map-modal__toolbar {
  flex-shrink: 0;
  border-top: 1px solid #e2e8f0;
}

.c-route-map-modal__list-col {
  padding: 14px 14px 10px;
  background: #fcfcfd;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.c-route-map-modal__list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.c-route-map-modal__footer {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding: 10px 14px 12px;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}

body.is-route-map-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .c-route-map-modal {
    padding: 8px;
  }

  .c-route-map-modal .c-modal__wrapper,
  .c-route-map-modal__container {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }

  .c-route-map-modal__layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .c-route-map-modal__map-col {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    min-height: 0;
  }

  .c-route-map-modal__canvas {
    min-height: 200px;
  }

  .c-route-map-modal__list-col {
    max-height: min(34vh, 260px);
  }

  .c-route-map-modal__head {
    padding: 14px 48px 8px 14px;
  }
}

.c-pkg-route-map--sidebar .c-pkg-route-map__hint {
  font-size: 10px;
  text-align: center;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__gmaps {
  justify-content: center;
  font-size: 11px;
  padding: 8px 10px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__list-col {
  padding: 12px 12px 14px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__list-head h3 {
  font-size: 13px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__list-head p {
  font-size: 11px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__list {
  max-height: 210px;
  overflow-y: auto;
  gap: 6px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__city-btn {
  padding: 8px 10px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__city-num {
  width: 24px;
  height: 24px;
  font-size: 11px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__city-text strong {
  font-size: 12px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__city-text small {
  font-size: 10px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__tabs {
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 10px 12px 8px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__tab {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__tab span {
  font-size: 12px;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__tab small {
  font-size: 10px;
  text-align: right;
  max-width: 52%;
}

.c-route-map-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fcfcfd;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.c-route-map-card__head {
  padding: 12px 12px 10px;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.c-route-map-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--route-accent, #2563eb) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--route-accent, #2563eb) 28%, #fff);
  color: var(--route-accent, #2563eb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-route-map-card__head h4 {
  margin: 8px 0 2px;
  font-size: 14px;
  line-height: 1.3;
  color: #0f172a;
}

.c-route-map-card__head p {
  margin: 0;
  font-size: 11px;
  color: #64748b;
}

.c-route-map-card__stops {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.c-route-map-card__stops li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 10px;
  font-weight: 600;
  color: #475569;
  line-height: 1.3;
}

.c-route-map-card__stop-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #334155;
  font-size: 9px;
  font-weight: 800;
}

.c-route-map-card__stops li i {
  font-size: 8px;
  color: var(--s-color-brand-primary, #e85d04);
}

.c-route-map-card__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px 12px;
}

.c-route-map-card__expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.c-route-map-card__expand-btn:hover {
  background: #dbeafe;
}

.c-route-map-card__link {
  display: block;
  padding: 2px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  text-align: center;
}

.c-route-map-card__link:hover {
  text-decoration: underline;
}

.c-route-map-card__empty {
  margin: 0;
  padding: 16px 12px;
  font-size: 12px;
  color: #64748b;
}

.c-pkg-section--route-map-unified .c-pkg-section__head--featured .c-pkg-section__head-text h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.c-pkg-section--route-map-unified .c-pkg-section__head--featured .c-pkg-section__icon {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
}

.c-pkg-route-map--unified .c-pkg-route-map__headline {
  padding: 18px 20px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 45%, #fff 100%);
}

.c-pkg-route-map__headline-eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #047857;
}

.c-pkg-route-map__headline-eyebrow i {
  margin-right: 6px;
}

.c-pkg-route-map__headline-title {
  margin: 0 0 4px;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.c-pkg-route-map__headline-sub {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.c-pkg-route-map--unified .c-pkg-route-map__layout {
  border-top: none;
}

.c-pkg-route-map--unified .c-pkg-route-map__canvas,
.c-pkg-route-map--unified .c-pkg-route-map__canvas .leaflet-container {
  min-height: 420px;
}

.c-route-map-card--unified .c-route-map-card__badge {
  background: #059669;
}

.c-pkg-section--route-map {
  scroll-margin-top: 88px;
}

.c-pkg-route-map {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.c-pkg-route-map__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
}

.c-pkg-route-map__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px 13px;
  border: 2px solid #cbd5e1;
  border-top: 4px solid color-mix(in srgb, var(--route-accent, #2563eb) 70%, #94a3b8);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.c-pkg-route-map__tab:last-child {
  border-right: 2px solid #cbd5e1;
}

.c-pkg-route-map__tab span {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.c-pkg-route-map__tab small {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  line-height: 1.35;
}

.c-pkg-route-map__tab:hover:not(.is-active) {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--route-accent, #2563eb) 55%, #cbd5e1);
  border-top-color: var(--route-accent, #2563eb);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.c-pkg-route-map__tab.is-active {
  background: var(--route-accent, #2563eb);
  border-color: var(--route-accent, #2563eb);
  border-top-color: color-mix(in srgb, var(--route-accent, #2563eb) 85%, #000);
  box-shadow:
    0 12px 28px color-mix(in srgb, var(--route-accent, #2563eb) 42%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.c-pkg-route-map__tab.is-active span {
  color: #fff;
  font-size: 15px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.c-pkg-route-map__tab.is-active small {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.c-pkg-route-map__tab:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--route-accent, #2563eb) 55%, #fff);
  outline-offset: 2px;
}

.c-pkg-route-map__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: 0;
}

.c-pkg-route-map__map-col {
  min-width: 0;
  border-right: 1px solid #eef2f7;
}

.c-pkg-route-map__canvas {
  width: 100%;
  min-height: 520px;
  background: #eef2f7;
}

.c-pkg-route-map__canvas .leaflet-container {
  width: 100%;
  min-height: 520px;
  font-family: inherit;
}

.c-pkg-route-map__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid #eef2f7;
  background: #fcfcfd;
  flex-wrap: wrap;
}

.c-pkg-route-map__toolbar .c-pkg-route-map__toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.c-pkg-route-map--sidebar .c-pkg-route-map__toolbar .c-pkg-route-map__toolbar-actions {
  margin-left: 0;
  width: 100%;
}

.c-pkg-route-map__hint {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c-pkg-route-map__gmaps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.c-pkg-route-map__gmaps:hover {
  background: #f8fafc;
}

.c-pkg-route-map__list-col {
  padding: 18px 16px 20px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.c-pkg-route-map__list-head h3 {
  margin: 0;
  font-size: 15px;
  color: #0f172a;
}

.c-pkg-route-map__list-head p {
  margin: 6px 0 14px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

.c-pkg-route-map__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 430px;
  overflow: auto;
}

.c-pkg-route-map__list li {
  margin: 0;
}

.c-pkg-route-map__city-btn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.c-pkg-route-map__city-btn:hover,
.c-pkg-route-map__city-btn.is-active {
  border-color: color-mix(in srgb, var(--route-accent, #2563eb) 35%, #fff);
  background: color-mix(in srgb, var(--route-accent, #2563eb) 8%, #fff);
}

.c-pkg-route-map__city-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--route-accent, #2563eb);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.c-pkg-route-map__city-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-pkg-route-map__city-text strong {
  font-size: 14px;
  color: #0f172a;
}

.c-pkg-route-map__city-text small {
  font-size: 12px;
  color: #64748b;
}

.c-route-leaflet-marker {
  background: transparent;
  border: none;
}

.c-route-leaflet-marker__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--route-accent, #2563eb);
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}

.c-route-leaflet-marker__pin.is-edge {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

@media (max-width: 960px) {
  .c-pkg-route-map__tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .c-pkg-route-map__tab {
    border-right: 2px solid #cbd5e1;
    border-bottom: 2px solid #cbd5e1;
  }

  .c-pkg-route-map__layout {
    grid-template-columns: 1fr;
  }

  .c-pkg-route-map__map-col {
    border-right: none;
    border-bottom: 1px solid #eef2f7;
  }

  .c-pkg-route-map__canvas,
  .c-pkg-route-map__canvas .leaflet-container {
    min-height: 360px;
  }

  .c-pkg-route-map__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .c-pkg-route-map__gmaps {
    justify-content: center;
  }
}

.c-pkg-sidebar--premium .c-pkg-sidebar__hero {
  background:
    linear-gradient(145deg, #091a2d 0%, #12314f 45%, #e85d04 220%);
}

.c-pkg-sidebar__facts {
  display: grid;
  gap: 10px;
  margin: 12px 0 16px;
  padding: 12px 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.c-pkg-sidebar__facts small {
  display: block;
  color: #64748b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.c-pkg-sidebar__facts strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
}

.c-pkg-sidebar--modular .c-pkg-sidebar__price-block {
  margin-bottom: 4px;
}

.c-pkg-sidebar__hint {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  font-size: 12px;
  line-height: 1.55;
}

.c-pkg-sidebar__hint strong {
  color: #9a3412;
  font-weight: 700;
}

.c-pkg-sidebar__options {
  margin: 14px 0;
  padding: 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.c-pkg-sidebar__options-title,
.c-pkg-sidebar__facts-title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.c-pkg-sidebar__options ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.c-pkg-sidebar__option {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.c-pkg-sidebar__option--full {
  border-color: #fdba74;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.c-pkg-sidebar__option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.c-pkg-sidebar__option-head span {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}

.c-pkg-sidebar__option-head em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9a3412;
  background: #ffedd5;
  padding: 2px 6px;
  border-radius: 999px;
}

.c-pkg-sidebar__option strong {
  display: block;
  color: #9a3412;
  font-size: 1.05rem;
}

.c-pkg-sidebar__option--full strong {
  color: #0f172a;
  font-size: 1.15rem;
}

.c-pkg-sidebar__option small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 11px;
}

.c-pkg-sidebar__hint a {
  color: #9a3412;
  font-weight: 700;
  text-decoration: underline;
}

.c-pkg-empty {
  color: #64748b;
  margin: 0;
}

.c-detalle__hero-dates {
  margin: 10px 0 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.c-detalle__hero-dates i {
  margin-right: 6px;
}

.c-pkg-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.c-pkg-fact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;
}

.c-pkg-fact i {
  color: var(--s-color-brand-primary, #e85d04);
  font-size: 1.1rem;
  margin-top: 2px;
}

.c-pkg-fact small {
  display: block;
  color: #64748b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.c-pkg-fact strong {
  display: block;
  color: #0f172a;
  font-size: 0.92rem;
  line-height: 1.4;
  text-transform: capitalize;
}

.c-pkg-section--fechas-autor {
  padding: 0;
  border: none;
  background: transparent;
}

.c-pkg-section--fechas-autor .c-pkg-section-head {
  margin-bottom: 14px;
}

.c-pkg-section--ejecutivo-autor {
  padding: 0;
  border: none;
  background: transparent;
}

.c-pkg-section--ejecutivo-autor .c-pkg-section-head {
  margin-bottom: 14px;
}

.c-pkg-ejecutivo-autor {
  padding: 22px 24px 24px;
  border-radius: 14px;
  border: 1px solid #fed7aa;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.98) 0%, rgba(255, 255, 255, 0.98) 52%, rgba(254, 243, 199, 0.35) 100%);
  box-shadow: 0 10px 28px rgba(232, 93, 4, 0.08);
}

.c-pkg-ejecutivo-autor__lead {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 93, 4, 0.12);
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
}

.c-pkg-ejecutivo-autor__lead i {
  color: var(--s-color-brand-primary, #e85d04);
  margin-top: 4px;
  flex-shrink: 0;
}

.c-pkg-ejecutivo-autor__text {
  margin: 0 0 12px;
  color: #334155;
  line-height: 1.65;
  font-size: 0.98rem;
}

.c-pkg-ejecutivo-autor__text:last-of-type {
  margin-bottom: 16px;
}

.c-pkg-ejecutivo-autor__coord {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 93, 4, 0.12);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.c-pkg-ejecutivo-autor__coord-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ea580c, #c2410c);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.c-pkg-ejecutivo-autor__coord small {
  display: block;
  margin-bottom: 4px;
  color: #9a3412;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-pkg-ejecutivo-autor__coord strong {
  display: block;
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.4;
}

.c-pkg-ejecutivo-autor__modalidades {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.c-pkg-ejecutivo-autor__modalidades li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 93, 4, 0.12);
  color: #0f172a;
  line-height: 1.55;
  font-size: 0.95rem;
}

.c-pkg-ejecutivo-autor__modalidades li i {
  color: var(--s-color-brand-primary, #e85d04);
  margin-top: 3px;
  flex-shrink: 0;
}

.c-pkg-ejecutivo-autor__servicios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 14px;
}

.c-pkg-ejecutivo-autor__servicio {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 14px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 93, 4, 0.12);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.c-pkg-ejecutivo-autor__servicio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ea580c, #c2410c);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.c-pkg-ejecutivo-autor__servicio strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 0.95rem;
}

.c-pkg-ejecutivo-autor__servicio p {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .c-pkg-ejecutivo-autor__servicios {
    grid-template-columns: 1fr;
  }
}

.c-pkg-fechas-autor {
  padding: 22px 24px 24px;
  border-radius: 14px;
  border: 1px solid #fed7aa;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.98) 0%, rgba(255, 255, 255, 0.98) 52%, rgba(254, 243, 199, 0.35) 100%);
  box-shadow: 0 10px 28px rgba(232, 93, 4, 0.08);
}

.c-pkg-fechas-autor__lead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.08);
  color: #9a3412;
  font-size: 0.95rem;
  font-weight: 600;
}

.c-pkg-fechas-autor__lead i {
  color: var(--s-color-brand-primary, #e85d04);
  font-size: 1.1rem;
}

.c-pkg-fechas-autor__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.c-pkg-fechas-autor__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 93, 4, 0.12);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.c-pkg-fechas-autor__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.c-pkg-fechas-autor__item--salida .c-pkg-fechas-autor__marker,
.c-pkg-fechas-autor__item--regreso .c-pkg-fechas-autor__marker {
  background: linear-gradient(145deg, #ea580c, #c2410c);
}

.c-pkg-fechas-autor__item--llegada .c-pkg-fechas-autor__marker {
  background: linear-gradient(145deg, #0284c7, #0369a1);
}

.c-pkg-fechas-autor__item--primera .c-pkg-fechas-autor__marker,
.c-pkg-fechas-autor__item--ultima .c-pkg-fechas-autor__marker {
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
}

.c-pkg-fechas-autor__content small {
  display: block;
  margin-bottom: 4px;
  color: #9a3412;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-pkg-fechas-autor__content strong {
  display: block;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: capitalize;
}

.c-pkg-fechas-autor__timeline--row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.c-pkg-fechas-autor__timeline--row .c-pkg-fechas-autor__item {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 18px 14px;
}

.c-pkg-fechas-autor__timeline--row .c-pkg-fechas-autor__marker {
  margin-bottom: 4px;
}

.c-pkg-fechas-autor__timeline--row .c-pkg-fechas-autor__content small {
  min-height: 2.6em;
}

@media (min-width: 768px) {
  .c-pkg-fechas-autor__timeline:not(.c-pkg-fechas-autor__timeline--row) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .c-pkg-fechas-autor__timeline:not(.c-pkg-fechas-autor__timeline--row) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .c-pkg-fechas-autor__timeline--row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .c-pkg-fechas-autor__timeline--row .c-pkg-fechas-autor__item {
    padding: 14px 8px;
  }

  .c-pkg-fechas-autor__timeline--row .c-pkg-fechas-autor__marker {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .c-pkg-fechas-autor__timeline--row .c-pkg-fechas-autor__content small {
    font-size: 9px;
    letter-spacing: 0.04em;
    min-height: 3.2em;
  }

  .c-pkg-fechas-autor__timeline--row .c-pkg-fechas-autor__content strong {
    font-size: 0.78rem;
  }
}

.c-pkg-destinos-block {
  margin-top: 8px;
}

.c-pkg-destinos-block h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-pkg-destinos-block h3 i {
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-destinos--visual {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.c-pkg-destinos--visual li {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.c-pkg-destinos--visual li strong {
  display: block;
  padding: 10px 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.c-pkg-destinos__thumb {
  height: 110px;
  position: relative;
  overflow: hidden;
  background: #e8edf2;
}

.c-pkg-destinos__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-pkg-destinos__thumb span {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 22px;
  height: 22px;
}

.c-pkg-destinos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-pkg-destinos li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #1e293b;
}

.c-pkg-destinos li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--s-color-brand-primary, #e85d04);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.c-pkg-transport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.c-pkg-transport-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 13px;
  font-weight: 500;
}

/* —— Transportes incluidos (premium layout) —— */
.c-pkg-section--transportes {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%);
  border-radius: 20px;
  padding: 24px 22px 28px;
  border: 1px solid #e2e8f0;
}

.c-pkg-transport-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.c-pkg-transport-summary__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.c-pkg-transport-summary__item--flight {
  border-color: #bfdbfe;
  background: linear-gradient(135deg, #eff6ff, #fff);
}

.c-pkg-transport-summary__item--train {
  border-color: #fde68a;
  background: linear-gradient(135deg, #fffbeb, #fff);
}

.c-pkg-transport-summary__item--ferry {
  border-color: #a5f3fc;
  background: linear-gradient(135deg, #ecfeff, #fff);
}

.c-pkg-transport-summary__item--shuttle {
  border-color: #fed7aa;
  background: linear-gradient(135deg, #fff7ed, #fff);
}

.c-pkg-transport-summary__item--tag {
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.c-pkg-transport-summary__glyph {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.c-pkg-transport-summary__item--flight .c-pkg-transport-summary__glyph {
  background: #dbeafe;
  color: #1d4ed8;
}

.c-pkg-transport-summary__item--train .c-pkg-transport-summary__glyph {
  background: #fef3c7;
  color: #b45309;
}

.c-pkg-transport-summary__item--ferry .c-pkg-transport-summary__glyph {
  background: #cffafe;
  color: #0e7490;
}

.c-pkg-transport-summary__item--shuttle .c-pkg-transport-summary__glyph {
  background: #ffedd5;
  color: #c2410c;
}

.c-pkg-transport-summary__item strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
  color: #0f172a;
}

.c-pkg-transport-summary__item span {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.c-pkg-transport-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.c-pkg-transport-category {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
}

.c-pkg-transport-category__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}

.c-pkg-transport-category__head--with-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 34%);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.c-pkg-transport-category__head-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px 18px;
}

.c-pkg-transport-category__cover {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  border-left: 1px solid rgba(15, 23, 42, 0.06);
}

.c-pkg-transport-category__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.c-pkg-transport-category--shuttle .c-pkg-transport-category__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 247, 237, 0.92) 0%, rgba(255, 247, 237, 0.15) 38%, transparent 100%);
  pointer-events: none;
}

.c-pkg-transport-category--train .c-pkg-transport-category__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.92) 0%, rgba(255, 251, 235, 0.15) 38%, transparent 100%);
  pointer-events: none;
}

.c-pkg-transport-category--flight .c-pkg-transport-category__head {
  background: linear-gradient(90deg, #eff6ff 0%, #f8fafc 100%);
}

.c-pkg-transport-category--train .c-pkg-transport-category__head {
  background: linear-gradient(90deg, #fffbeb 0%, #f8fafc 100%);
}

.c-pkg-transport-category--shuttle .c-pkg-transport-category__head {
  background: linear-gradient(90deg, #fff7ed 0%, #f8fafc 100%);
}

.c-pkg-transport-category__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #fff;
}

.c-pkg-transport-category--flight .c-pkg-transport-category__icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.c-pkg-transport-category--train .c-pkg-transport-category__icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.22);
}

.c-pkg-transport-category--shuttle .c-pkg-transport-category__icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.22);
}

.c-pkg-transport-category__titles h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.c-pkg-transport-category__titles p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.c-pkg-transport-category__count {
  margin-left: auto;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-pkg-transport-routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  padding: 16px;
}

.c-pkg-transport-route {
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.c-pkg-transport-route:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.c-pkg-transport-route--flight {
  border-top: 3px solid #3b82f6;
}

.c-pkg-transport-route--train {
  border-top: 3px solid #f59e0b;
}

.c-pkg-transport-route__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-pkg-transport-route__badge--internacional {
  background: #1e3a8a;
  color: #fff;
}

.c-pkg-transport-route__badge--included {
  background: #eff6ff;
  color: #1d4ed8;
}

.c-pkg-transport-route__badge--panoramic {
  background: #fef3c7;
  color: #b45309;
}

.c-pkg-transport-route__badge--regional {
  background: #f1f5f9;
  color: #475569;
}

.c-pkg-transport-route__badge--ferry {
  background: #ecfeff;
  color: #0e7490;
}

.c-pkg-transport-route__path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin-bottom: 8px;
}

.c-pkg-transport-route__city {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  max-width: 100%;
}

.c-pkg-transport-route__connector {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #94a3b8;
  flex-shrink: 0;
}

.c-pkg-transport-route__line {
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #cbd5e1, #94a3b8);
  border-radius: 2px;
}

.c-pkg-transport-route__connector i {
  font-size: 11px;
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-transport-route--flight .c-pkg-transport-route__connector i {
  color: #2563eb;
}

.c-pkg-transport-route--train .c-pkg-transport-route__connector i {
  color: #d97706;
}

.c-pkg-transport-route__detail {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

.c-pkg-transport-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  padding: 16px;
}

.c-pkg-transport-service {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.c-pkg-transport-service--private {
  border-left: 3px solid #f97316;
}

.c-pkg-transport-service--ferry {
  border-left: 3px solid #06b6d4;
}

.c-pkg-transport-service__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.c-pkg-transport-service--private .c-pkg-transport-service__icon {
  background: #ffedd5;
  color: #c2410c;
}

.c-pkg-transport-service--ferry .c-pkg-transport-service__icon {
  background: #ecfeff;
  color: #0e7490;
}

.c-pkg-transport-service__body h4 {
  margin: 0 0 4px;
  font-size: 14px;
  color: #0f172a;
}

.c-pkg-transport-service__body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

/* —— Bernina Express · experiencia destacada —— */
.c-pkg-section--bernina {
  background: linear-gradient(165deg, #f0f9ff 0%, #fffbeb 38%, #ffffff 100%);
  border-radius: 20px;
  padding: 24px 22px 28px;
  border: 1px solid #bae6fd;
}

.c-pkg-bernina {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.c-pkg-bernina__media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-pkg-bernina__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #0f172a;
}

.c-pkg-bernina__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.c-pkg-bernina__yt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.c-pkg-bernina__yt-link:hover {
  background: #fef2f2;
}

.c-pkg-bernina__route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #fde68a;
}

.c-pkg-bernina__route-city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.c-pkg-bernina__route-city i {
  color: #d97706;
}

.c-pkg-bernina__route-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
}

.c-pkg-bernina__route-line span {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #fcd34d, #f59e0b);
  border-radius: 2px;
}

.c-pkg-bernina__route-line i {
  color: #d97706;
  font-size: 12px;
}

.c-pkg-bernina__season {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ecfeff, #f0f9ff);
  border: 1px solid #a5f3fc;
  color: #0e7490;
  font-size: 13px;
  line-height: 1.55;
}

.c-pkg-bernina__season i {
  margin-top: 2px;
  font-size: 1rem;
  flex-shrink: 0;
}

.c-pkg-bernina__season strong {
  color: #155e75;
}

.c-pkg-bernina__meta {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
}

.c-pkg-bernina__text {
  margin: 0 0 12px;
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
}

.c-pkg-bernina__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.c-pkg-bernina__chips li {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.c-pkg-logistica-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.c-pkg-logistica-block h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #0f172a;
}

.c-pkg-logistica-block h3 i {
  margin-right: 8px;
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-logistica-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-pkg-logistica-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
}

.c-pkg-logistica-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.c-pkg-logistica-list strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
}

.c-pkg-logistica-list p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.c-pkg-logistica-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.c-pkg-itinerary__marker em {
  display: block;
  margin-top: 6px;
  width: 100%;
  max-width: 92px;
  padding: 5px 6px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.c-pkg-itinerary__transport {
  color: #c2410c;
  font-weight: 600;
}

.c-pkg-itinerary__segment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.c-pkg-itinerary__destacados {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.c-pkg-itinerary__destacados li {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  color: #0e7490;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.c-pkg-itinerary + .c-pkg-itinerary {
  margin-top: 28px;
}

.c-pkg-salidas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.c-pkg-salida-card {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.c-pkg-salida-card > i {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.c-pkg-salida-card--out > i {
  color: #16a34a;
}

.c-pkg-salida-card--in > i {
  color: #2563eb;
}

.c-pkg-salida-card--out {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.c-pkg-salida-card--in {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.c-pkg-salida-card small {
  display: block;
  color: #64748b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.c-pkg-salida-card strong {
  display: block;
  margin-top: 4px;
  color: #0f172a;
  font-size: 1rem;
  text-transform: capitalize;
}

.c-pkg-empty-state {
  text-align: center;
  padding: 48px 24px;
}

.c-pkg-empty-state h2 {
  margin-bottom: 8px;
}

.c-pkg-empty-state p {
  color: #64748b;
  margin-bottom: 20px;
}

.c-pkg-empty-state p {
  color: #64748b;
  margin-bottom: 20px;
}

.c-pkg-concepto {
  margin: 16px 0 0;
  padding: 14px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  line-height: 1.6;
}

.c-pkg-modulos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.c-pkg-modulo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.c-pkg-modulo-card__hero {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: #1e293b;
}

.c-pkg-modulo-card__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.c-pkg-modulo-card__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.55) 100%);
  pointer-events: none;
}

.c-pkg-modulo-card__hero .c-pkg-modulo-card__badge {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.94);
}

.c-pkg-modulo-card__head {
  padding: 16px 18px 12px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.c-pkg-modulo-card__head h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.35;
  color: #0f172a;
}

.c-pkg-modulo-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: #c2410c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-pkg-modulo-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
  background: #f8fafc;
}

.c-pkg-modulo-ruta {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-pkg-modulo-ruta li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.c-pkg-modulo-ruta li i {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  color: #ea580c;
  font-size: 12px;
}

.c-pkg-modulo-ruta li span {
  flex: 1;
}

.c-pkg-modulo-card__desc {
  margin: auto 0 0;
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

.c-pkg-section--destinos .c-pkg-modulo-card {
  border-color: #fed7aa;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.08);
}

.c-pkg-section--destinos .c-pkg-modulo-card__hero .c-pkg-modulo-card__badge {
  background: linear-gradient(145deg, #ea580c, #c2410c);
  color: #fff;
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
}

.c-pkg-section--destinos .c-pkg-modulo-card__head {
  background: linear-gradient(180deg, #fff 0%, #fffbf7 100%);
}

.c-pkg-section--destinos .c-pkg-modulo-card__body {
  background: #fff;
}

.c-pkg-section--destinos .c-pkg-modulo-card__desc {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-weight: 500;
}

.c-pkg-autor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.c-pkg-autor-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: #f8fafc;
}

.c-pkg-autor-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  color: #c2410c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.c-pkg-autor-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0f172a;
}

.c-pkg-modulo-card__dias {
  margin: 0;
  font-weight: 700;
  color: #c2410c;
  font-size: 13px;
}

.c-pkg-modulo-card__dias i {
  margin-right: 4px;
}

.c-pkg-modulo-card__fechas {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.c-pkg-modulo-card__fechas i {
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-modulo-fechas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.c-pkg-modulo-card__head .c-pkg-modulo-fechas {
  padding-top: 2px;
}

.c-pkg-modulo-fechas__item {
  flex: 1 1 140px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.16);
}

.c-pkg-modulo-fechas__item small {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-pkg-modulo-fechas__item strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
}

.c-pkg-itinerary__module-banner .c-pkg-modulo-fechas {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 18px 16px;
  gap: 8px;
}

.c-pkg-itinerary__module-banner .c-pkg-modulo-fechas__item {
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.c-pkg-itinerary__module-banner .c-pkg-modulo-fechas__item small {
  color: rgba(255, 255, 255, 0.82);
}

.c-pkg-itinerary__module-banner .c-pkg-modulo-fechas__item strong {
  color: #fff;
}

.c-pkg-modular-table__destinos {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.c-pkg-modulo-card__body > p:last-child,
.c-pkg-autor-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

.c-pkg-modulo-card__pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #dbeafe;
  background: #f8fafc;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.c-pkg-modulo-card__pdf:hover {
  background: #eff6ff;
  border-color: #93c5fd;
}

.c-pkg-pdf-links {
  margin: 20px 0 0;
  padding: 0;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 48%);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.08);
}

.c-pkg-pdf-links__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #ffedd5;
  background: linear-gradient(90deg, #fff7ed 0%, #fffbeb 55%, #fff 100%);
}

.c-pkg-pdf-links__head-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.28);
}

.c-pkg-pdf-links__head-text h3 {
  margin: 0;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.c-pkg-pdf-links__head-text p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: #9a3412;
  line-height: 1.45;
}

.c-pkg-pdf-links__title {
  margin: 0 0 12px;
  font-weight: 700;
  color: #0f172a;
}

.c-pkg-pdf-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 16px 16px;
}

.c-pkg-pdf-links__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
}

.c-pkg-pdf-links__card strong {
  font-size: 14px;
}

.c-pkg-pdf-links__card span {
  font-size: 12px;
  color: #64748b;
}

.c-pkg-pdf-links__card:hover {
  border-color: #fdba74;
  background: #fff7ed;
}

.c-pkg-pdf-links--compact {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.c-pkg-pdf-links__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.c-pkg-pdf-links__item:hover {
  background: #f8fafc;
}

@media (max-width: 960px) {
  .c-pkg-pdf-links__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .c-pkg-modulos-grid {
    grid-template-columns: 1fr;
  }

  .c-pkg-section--transportes {
    padding: 18px 14px 22px;
  }

  .c-pkg-transport-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .c-pkg-transport-routes,
  .c-pkg-transport-services {
    grid-template-columns: 1fr;
  }

  .c-pkg-transport-category__head {
    flex-wrap: wrap;
  }

  .c-pkg-transport-category__head--with-cover {
    grid-template-columns: 1fr;
  }

  .c-pkg-transport-category__cover {
    min-height: 120px;
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    order: -1;
  }

  .c-pkg-transport-category--shuttle .c-pkg-transport-category__cover::after {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 247, 237, 0.35) 100%);
  }

  .c-pkg-transport-category--train .c-pkg-transport-category__cover::after {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 251, 235, 0.35) 100%);
  }

  .c-pkg-transport-category__count {
    margin-left: 0;
  }

  .c-pkg-bernina {
    grid-template-columns: 1fr;
  }

  .c-pkg-section__head--with-cover {
    grid-template-columns: 1fr;
  }

  .c-pkg-section__cover {
    min-height: 120px;
    border-left: none;
    border-top: 1px solid rgba(14, 116, 144, 0.12);
  }

  .c-pkg-section__head--bernina .c-pkg-section__cover::after {
    background: linear-gradient(180deg, rgba(240, 249, 255, 0.92) 0%, rgba(255, 251, 235, 0.15) 38%, transparent 100%);
  }
}

@media (min-width: 961px) and (max-width: 1200px) {
  .c-pkg-modulos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.c-pkg-section--contacto {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.c-pkg-section--respaldo-autor {
  padding-top: 8px;
}

.c-pkg-respaldo-autor {
  display: grid;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #fed7aa;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.c-pkg-respaldo-autor__contact {
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(180deg, #fffbf5 0%, #fff7ed 100%);
}

.c-pkg-respaldo-autor__eyebrow,
.c-pkg-respaldo-autor__legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-pkg-respaldo-autor__eyebrow {
  background: rgba(232, 93, 4, 0.12);
  border: 1px solid rgba(232, 93, 4, 0.22);
  color: #c2410c;
}

.c-pkg-respaldo-autor__legal-eyebrow {
  background: rgba(255, 180, 84, 0.14);
  border: 1px solid rgba(255, 180, 84, 0.28);
  color: #ffb454;
}

.c-pkg-respaldo-autor__contact h2,
.c-pkg-respaldo-autor__legal h3 {
  margin: 0 0 10px;
  color: #0f172a;
  line-height: 1.25;
}

.c-pkg-respaldo-autor__contact h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
}

.c-pkg-respaldo-autor__lead {
  margin: 0 0 18px;
  max-width: 640px;
  color: #475569;
  line-height: 1.6;
}

.c-pkg-respaldo-autor__channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.c-pkg-respaldo-autor__channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #fed7aa;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.c-pkg-respaldo-autor__channel:hover {
  border-color: #ea580c;
  color: #c2410c;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.12);
}

.c-pkg-respaldo-autor__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.1);
  color: #ea580c;
  flex-shrink: 0;
}

.c-pkg-respaldo-autor__channel-text {
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.c-pkg-respaldo-autor__legal {
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(135deg, #062a4a 0%, #0f172a 100%);
  color: #e2e8f0;
}

.c-pkg-respaldo-autor__legal h3 {
  color: #ffb454;
  font-size: 1.05rem;
}

.c-pkg-respaldo-autor__operators {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.c-pkg-respaldo-autor__operators li + li {
  margin-top: 8px;
}

.c-pkg-respaldo-autor__operators strong {
  color: #fff;
}

.c-pkg-respaldo-autor__legal-text,
.c-pkg-respaldo-autor__checkit {
  margin: 0 0 12px;
  color: #cbd5e1;
  line-height: 1.65;
}

.c-pkg-respaldo-autor__checkit strong {
  color: #ffb454;
}

.c-pkg-respaldo-autor__notas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.c-pkg-respaldo-autor__notas li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 600;
}

.c-pkg-respaldo-autor__notas i {
  color: #ffb454;
}

.c-pkg-respaldo-autor__note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-pkg-contacto {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.c-pkg-contacto__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}

.c-pkg-contacto__item:hover {
  border-color: var(--s-color-brand-primary, #e85d04);
  color: var(--s-color-brand-primary, #e85d04);
}

.c-pkg-modalidades {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.c-pkg-modalidades li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.5;
}

.c-pkg-modalidades li i {
  color: var(--s-color-brand-primary, #e85d04);
  margin-top: 3px;
}

.c-pkg-institucional {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.c-pkg-institucional__firma {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #0f172a;
}

.c-pkg-institucional__respaldo {
  margin: 0 0 12px;
  color: #475569;
}

.c-pkg-institucional__notas {
  margin: 0;
  padding-left: 1.2rem;
  color: #64748b;
}

.c-pkg-institucional__notas li + li {
  margin-top: 6px;
}

.c-pkg-list--check li::marker {
  content: '✓ ';
  color: #16a34a;
}

.c-pkg-list--cross li::marker {
  content: '✕ ';
  color: #dc2626;
}

@media (max-width: 900px) {
  .c-pkg-section--grid {
    grid-template-columns: 1fr;
  }

  .c-pkg-itinerary__day {
    grid-template-columns: 1fr;
  }

  .c-pkg-itinerary__body {
    grid-template-columns: 1fr;
  }

  .c-pkg-itinerary__thumb {
    min-height: 140px;
  }

  .c-pkg-itinerary::before {
    display: none;
  }

  .c-pkg-hospedaje-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .c-pkg-hospedaje-card__media {
    height: 108px;
  }
}

@media (max-width: 480px) {
  .c-pkg-hospedaje-summary {
    grid-template-columns: 1fr;
  }

  .c-pkg-hospedaje-grid {
    grid-template-columns: 1fr;
  }
}

.page-alojamiento-resultados .c-aloj-res__back {
  margin: 0 0 12px;
  font-size: 13px;
}

/* Editor CMS en ficha de detalle (admin / operations) */
.c-pkg-cms-bar {
  position: sticky;
  top: 0;
  z-index: 120;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-bottom: 1px solid #fed7aa;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.c-pkg-cms-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #9a3412;
}

.c-pkg-cms-bar__inner i {
  margin-right: 6px;
}

.c-pkg-cms-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-pkg-cms-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.45);
}

.c-pkg-cms-backdrop.is-hidden,
.c-pkg-cms-drawer.is-hidden {
  display: none;
}

.c-pkg-cms-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 210;
  width: min(560px, 100vw);
  height: 100vh;
  background: #f8fafc;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
}

.c-pkg-cms-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.c-pkg-cms-drawer__head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.c-pkg-cms-drawer__close {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
}

.c-pkg-cms-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 16px;
}

body.has-pkg-cms-open {
  overflow: hidden;
}

.c-pkg-cms-editor__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.c-pkg-cms-editor__head h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.c-pkg-cms-editor__head p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.c-pkg-cms-editor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.c-pkg-cms-msg {
  min-height: 1.4em;
  font-size: 13px;
  color: #047857;
  margin: 0 0 12px;
}

.c-pkg-cms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.c-pkg-cms-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}

.c-pkg-cms-card--wide {
  grid-column: 1 / -1;
}

.c-pkg-cms-card h3,
.c-pkg-cms-modulo-block h4 {
  margin: 0 0 12px;
  font-size: 14px;
  color: #0f172a;
}

.c-pkg-cms-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.c-pkg-cms-card input,
.c-pkg-cms-card textarea,
.c-pkg-cms-card select {
  font: inherit;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.c-pkg-cms-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 600;
  color: #c2410c;
  cursor: pointer;
}

.c-pkg-cms-upload--block {
  display: flex;
  margin-top: 8px;
}

.c-pkg-cms-media-row {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.c-pkg-cms-media-row__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
}

.c-pkg-cms-media-row input[type="url"] {
  flex: 1;
  min-width: 160px;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

.c-pkg-cms-preview {
  display: block;
  max-width: 100%;
  margin-top: 10px;
  border-radius: 8px;
  max-height: 160px;
  object-fit: cover;
}

.c-pkg-cms-preview--sm {
  max-height: 72px;
}

.c-pkg-cms-modulo-block {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.c-pkg-cms-modulo-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.is-hidden {
  display: none !important;
}

.page-alojamiento-resultados .c-aloj-res__back a {
  color: var(--s-color-brand-primary);
  text-decoration: none;
}

.page-alojamiento-resultados .c-aloj-res__sync {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--s-color-middle-gray);
}

.page-alojamiento-resultados .c-aloj-res__loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  color: var(--s-color-middle-gray);
  font-size: 14px;
}

.page-alojamiento-resultados .c-aloj-res__empty {
  padding: 32px 0;
  color: var(--s-color-middle-gray);
  text-align: center;
}

.page-alojamiento-resultados .c-aloj-res__noches {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--s-color-brand-primary);
}

.page-alojamiento-resultados .c-result-card__detail {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--s-color-middle-gray);
  line-height: 1.45;
}

.page-alojamiento-resultados .c-result-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-alojamiento-resultados .c-result-card__badge--ai {
  background: #e8f5ec;
  color: #1a7a3a;
}

.page-alojamiento-resultados .c-resultados__filters input[readonly] {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  background: #fafafa;
  color: #333;
}

/* Referencia interna operaciones (solo visible admin/operations) */
.c-pkg-ops-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto 12px;
  padding: 10px 16px;
  border: 1px dashed rgba(201, 149, 58, 0.45);
  border-radius: 10px;
  background: rgba(201, 149, 58, 0.08);
}

.c-pkg-ops-strip__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.c-pkg-ops-strip__copy strong {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #1a1408;
}

.c-pkg-ops-strip__copy span {
  font-size: 11px;
  color: #5c4a2a;
}

.c-pkg-share-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 16px;
  padding: 14px 16px;
  border: 1px solid rgba(14, 116, 144, 0.25);
  border-radius: 12px;
  background: linear-gradient(180deg, #f0f9fb 0%, #fff 80%);
}

.c-pkg-share-strip__copy {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.c-pkg-share-strip__copy strong {
  font-size: 14px;
  color: #0f172a;
}

.c-pkg-share-strip__copy span {
  font-size: 12px;
  color: #475569;
}

.c-pkg-share-strip__url {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  background: #fff;
}

.c-ally-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.c-ally-monogram--slate { background: linear-gradient(135deg, #475569, #1e293b); }
.c-ally-monogram--teal { background: linear-gradient(135deg, #0d9488, #115e59); }
.c-ally-monogram--amber { background: linear-gradient(135deg, #f59e0b, #b45309); }
.c-ally-monogram--green { background: linear-gradient(135deg, #16a34a, #14532d); }
.c-ally-monogram--coral { background: linear-gradient(135deg, #f97316, #c2410c); }
.c-ally-monogram--indigo { background: linear-gradient(135deg, #6366f1, #3730a3); }
.c-ally-monogram--rose { background: linear-gradient(135deg, #e11d48, #881337); }
.c-ally-monogram--bronze { background: linear-gradient(135deg, #a16207, #713f12); }
.c-ally-monogram--gold { background: linear-gradient(135deg, #e4bc5c, #c9953a); color: #1a1408; }

.c-vdv-preview-banner {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 100%);
  border-bottom: 1px solid #fcd34d;
  color: #92400e;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.c-vdv-preview-banner strong {
  color: #78350f;
}

.c-detalle--standard-ficha .c-detalle__hero-text h1 {
  letter-spacing: -0.02em;
}

.c-detalle--standard-ficha .c-pkg-section__head--featured .c-pkg-section__icon,
.c-detalle--standard-ficha .c-pkg-sidebar--premium .c-pkg-sidebar__hero {
  border-color: rgba(201, 149, 58, 0.35);
}
