:root {
  --brand-yellow: #ffca20;
  --brand-black: #000000;
  --brand-charcoal: #222222;
  --brand-deep: #252525;
  --text-main: #555555;
  --text-light: #ffffff;
  --text-muted: #9d9d9d;
  --border-light: #e2e2e2;
  --bg-light: #f8f8f8;
  --bg-page: #f6f6f6;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.16);
  --radius-card: 14px;
  --container-max: 1440px;
  --font-title: "Maven Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-page);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.dura-container,
.theme-container,
.container-1440 {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-page {
  background: #fff;
  min-height: 100vh;
}

.section-space {
  padding: 56px 0;
}

.theme-breadcrumb-wrap {
  background: #ffffff;
}

.theme-breadcrumb {
  --bs-breadcrumb-divider: "|";
  margin: 0;
  padding: 14px 0;
  background: transparent;
  justify-content: flex-start;
}

.theme-breadcrumb .breadcrumb-item,
.theme-breadcrumb .breadcrumb-item a {
  color: #666666;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 400;
}

.theme-breadcrumb .breadcrumb-item a:hover {
  color: #000000;
}

.theme-breadcrumb .breadcrumb-item.active {
  color: #000000;
  font-weight: 500;
}

.theme-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #9f9f9f;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.2;
  color: var(--brand-black);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

.section-heading p {
  display: inline-block;
  margin: 12px 0 0;
  color: #555555;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 300;
  line-height: 1.25;
  border-bottom: 2px solid #ffca20;
  padding-bottom: 20px;
}

.home-section-heading {
  text-align: center;
}

.home-section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.main-heading {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.main-subtitle {
  font-family: var(--font-body);
  color: #555555;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.25;
  border-bottom: 2px solid #ffca20;
  padding-bottom: 20px;
}

.site-header {
  position: relative;
  z-index: 1100;
}

.header-top {
  background: #161616;
  color: var(--text-light);
  transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  max-height: 36px;
  opacity: 1;
  overflow: hidden;
  border-bottom: 1px solid #222;
}

.header-top-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-top-list,
.header-contact-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-top-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.header-top-list li span {
  white-space: nowrap;
}

.header-top-list li i {
  font-size: 12px;
}

.header-contact-list a {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.header-contact-list a:hover {
  background: #fff;
  color: #000;
}

.header-main-shell {
  background: #000;
  border-bottom: 1px solid #1f1f1f;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header-main {
  min-height: 96px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.header-brand {
  flex: 0 0 176px;
  display: flex;
  align-items: center;
  min-height: 96px;
}

.header-brand img {
  width: 150px;
}

.header-nav {
  flex: 1 1 auto;
}

.header-nav .navbar {
  padding: 0;
  position: static;
}

.header-nav .navbar-toggler-icon {
  filter: invert(1);
}

.header-nav .navbar-nav {
  margin-left: auto;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 10px;
}

.header-nav .nav-link {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  height: auto;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  padding: 10px 30px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav .nav-link:hover,
.header-nav .nav-item.show > .nav-link,
.header-nav .nav-link.active {
  color: var(--brand-yellow);
}

.header-nav .menu-accordion-item.desktop-open > .nav-link {
  color: var(--brand-yellow);
}

.header-search-nav-item .nav-link {
  min-width: 46px;
  justify-content: center;
}

.header-search-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-search-toggle .bi {
  font-size: 18px;
}

.header-search-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: clamp(150px, 18vw, 230px);
  background: rgba(0, 0, 0, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
  align-items: center;
  z-index: 25;
  padding: 10px 12px;
}

.header-search-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}

.header-search-input {
  min-height: 46px;
  border: 1px solid #5c5e62;
  border-radius: 8px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
}

.header-search-submit.btn-theme {
  min-height: 46px;
  padding: 0 16px;
}

.header-search-close {
  min-height: 46px;
  min-width: 46px;
  border: 1px solid #5c5e62;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.header-main.search-active .header-search-overlay {
  display: flex;
}

.header-main.search-active .header-nav .navbar-collapse,
.header-main.search-active .header-nav .navbar-nav,
.header-main.search-active .header-nav .navbar-toggler {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.header-main .header-nav .menu-destinos {
  position: static;
}

.header-main .header-nav .menu-destinos .dropdown-menu {
  position: absolute;
  top: 100%;
  border: 0;
  border-top: 1px solid var(--brand-yellow);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.94);
  padding: 0;
  margin-top: 0;
  width: auto;
  min-width: 0;
  left: 0;
  right: 0;
}

.header-main .header-nav .menu-accordion-item.desktop-open > .dropdown-menu {
  display: block;
}

.header-main .header-nav .menu-institucional {
  position: static;
}

.menu-accordion-toggle {
  display: none;
}

.header-main .header-nav .menu-institucional .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 0;
  border-top: 1px solid var(--brand-yellow);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.94);
  padding: 22px 24px;
  margin-top: 0;
}

.institutional-dropdown-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 22px;
}

.institutional-dropdown-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-family: var(--font-title);
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  transition: color 0.2s ease;
}

.institutional-dropdown-list a span {
  display: inline-block;
}

.institutional-dropdown-list a i {
  font-size: 13px;
  flex: 0 0 auto;
}

.institutional-dropdown-list a:hover,
.institutional-dropdown-list a.active {
  color: var(--brand-yellow);
}

.mega-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 340px;
}

.mega-col-left {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
}

.mega-col-right {
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.mega-regions,
.mega-states,
.mega-destinations {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-regions li {
  font-family: var(--font-title);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 4px;
  cursor: pointer;
}

.mega-regions li.active,
.mega-regions li:hover,
.mega-states li.active,
.mega-states li:hover {
  color: var(--brand-yellow);
}

.mega-states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.mega-states li {
  font-family: var(--font-title);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 6px;
}

.fake-flag {
  width: 28px;
  height: 18px;
  border-radius: 2px;
  display: inline-block;
  background: linear-gradient(120deg, #007a3d 0%, #fedf00 50%, #002776 100%);
}

.real-flag {
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.mega-destination-title {
  margin: 0 0 10px;
  color: var(--brand-yellow);
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 400;
}

.mega-destination-title a {
  color: inherit;
}

.mega-destinations {
  --mega-destination-cols: 3;
  display: grid;
  grid-template-columns: repeat(var(--mega-destination-cols), minmax(0, 1fr));
  gap: 8px 22px;
  align-content: start;
}

.mega-destinations li {
  margin: 0;
}

.mega-destinations a {
  font-family: var(--font-title);
  color: #fff;
  font-size: 13px;
}

.mega-destinations a:hover {
  color: var(--brand-yellow);
}

.site-header.header-scrolled .header-top {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
}

.site-header.header-scrolled .header-main-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.94);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  min-height: 560px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 0 52px;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-content p {
  margin: 12px 0 0;
  font-family: var(--font-title);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero.simple-hero {
  min-height: 420px;
}

.rev-slider-shell {
  position: relative;
  z-index: 1;
}

.rev-slider-shell .rev_slider[data-fallback="1"] > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative !important;
  height: auto !important;
  overflow: hidden !important;
}

.rev-slider-shell .rev_slider.rev-fallback-active,
.rev-slider-shell .rev_slider_wrapper.rev-fallback-active {
  height: auto !important;
  min-height: 420px !important;
}

.rev-slider-shell .rev_slider[data-fallback="1"] > ul > li {
  display: none !important;
  position: relative !important;
  visibility: visible !important;
  opacity: 1 !important;
  top: auto !important;
  left: auto !important;
}

.rev-slider-shell .rev_slider[data-fallback="1"] > ul > li.is-fallback-active {
  display: block !important;
}

.rev-slider-shell .rev_slider[data-fallback="1"] .rev-slidebg {
  width: 100%;
  height: auto;
}

.rev-slider-shell .rev_slider_wrapper {
  position: relative;
  min-height: 420px;
  background: #000;
}

.rev-slider-shell .rev_slider .tparrows {
  width: 56px !important;
  height: 56px !important;
  z-index: 35 !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: rgba(12, 12, 12, 0.68) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26) !important;
  transition: background 0.25s ease, transform 0.25s ease !important;
  opacity: 1 !important;
}

.rev-slider-shell .rev_slider .tparrows:hover {
  background: rgba(0, 0, 0, 0.9) !important;
  transform: translateY(-1px);
}

.rev-slider-shell .rev_slider .tparrows:before {
  font-family: var(--font-title) !important;
  font-size: 24px !important;
  line-height: 56px !important;
  color: #fff !important;
}

.rev-slider-shell .rev_slider .tp-leftarrow.tparrows:before {
  content: "\2039" !important;
}

.rev-slider-shell .rev_slider .tp-rightarrow.tparrows:before {
  content: "\203A" !important;
}

.rev-slider-shell .rev_slider .tparrows:hover:before {
  color: #fff !important;
}

.rev-slider-shell .rev-manual-arrows {
  position: absolute;
  inset: 0;
  z-index: 36;
  pointer-events: none;
}

.rev-slider-shell .rev-manual-arrows.is-hidden {
  display: none;
}

.rev-slider-shell .rev-manual-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 0;
  border: 0;
  background: rgba(12, 12, 12, 0.68);
  color: #fff;
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.rev-slider-shell .rev-manual-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  transform: translateY(calc(-50% - 1px));
}

.rev-slider-shell .rev-manual-arrow-prev {
  left: 20px;
}

.rev-slider-shell .rev-manual-arrow-next {
  right: 20px;
}

.rev-slider-shell .rev_slider .tp-bullets .tp-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.rev-slider-shell .rev_slider .tp-bullets .tp-bullet.selected,
.rev-slider-shell .rev_slider .tp-bullets .tp-bullet:hover {
  background: var(--brand-yellow) !important;
  border-color: #000 !important;
}

.content-text {
  color: #444;
  line-height: 1.7;
}

.content-text h2,
.content-text h3,
.content-text h4 {
  font-family: var(--font-title);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.content-text img {
  max-width: 100%;
  height: auto;
}

.content-text ul,
.content-text ol {
  padding-left: 20px;
}

.search-block {
  margin-top: -46px;
  position: relative;
  z-index: 12;
}

.search-panel {
  background: var(--brand-yellow);
  border: 1px solid var(--brand-black);
  border-radius: var(--radius-card);
  padding: 20px;
}

.search-panel-mobile-head {
  display: none;
}

.search-panel-toggle {
  width: 100%;
  border: 1px solid var(--brand-black);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  color: #000;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.search-panel-toggle-icon {
  font-size: 18px;
  line-height: 1;
}

.search-panel-toggle-minus {
  display: none;
}

.search-panel-body {
  overflow: visible;
}

.search-panel label {
  font-family: var(--font-title);
  color: var(--brand-black);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.search-panel .form-control,
.search-panel .form-select {
  border: 1px solid var(--brand-black);
  min-height: 44px;
  border-radius: 8px;
}

.btn-theme,
.btn-theme-dark {
  font-family: var(--font-title);
  min-height: 44px;
  border: 1px solid var(--brand-black);
  border-radius: 8px;
  background: var(--brand-black);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme-dark:hover,
.btn-theme-dark:focus {
  background: #fff;
  color: #000;
  border-color: #000;
}

.btn-theme-outline,
.btn-outline-dark {
  font-family: var(--font-title);
  min-height: 44px;
  border: 1px solid var(--brand-black);
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-theme-outline:hover,
.btn-theme-outline:focus,
.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--brand-yellow);
  color: #000;
  border-color: #000;
}

.btn-theme-yellow {
  font-family: var(--font-title);
  min-height: 44px;
  border: 1px solid var(--brand-black);
  border-radius: 8px;
  background: var(--brand-yellow);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-theme-yellow:hover,
.btn-theme-yellow:focus {
  background: #000;
  color: var(--brand-yellow);
  border-color: #000;
}

.card-theme {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  height: 100%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.card-theme .card-image {
  height: 240px;
  object-fit: cover;
}

.card-theme .card-body {
  padding: 18px;
}

.card-theme h3 {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--brand-black);
  margin: 0 0 10px;
  font-weight: 500;
}

.card-theme .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.card-theme .card-body > .btn,
.card-theme .card-body > .d-grid {
  margin-top: auto;
}

.home-featured-packages > [class*="col-"] {
  display: flex;
}

.home-featured-packages .card-theme {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.home-featured-packages .card-image {
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
}

.home-featured-packages .card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.home-featured-packages .card-body .btn.btn-theme.w-100 {
  background: var(--brand-yellow);
  color: #000;
  border-color: #000;
}

.home-featured-packages .card-body .btn.btn-theme.w-100:hover,
.home-featured-packages .card-body .btn.btn-theme.w-100:focus {
  background: #000;
  color: var(--brand-yellow);
  border-color: #000;
}

.badge-theme {
  background: var(--bg-light);
  color: #474d4b;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
}

.highlight-panel {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #fff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
}

.highlight-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.highlight-cta {
  padding: 24px;
  background: linear-gradient(160deg, #252525 0%, #000 100%);
  color: #fff;
  height: 100%;
}

.highlight-cta h3 {
  font-family: var(--font-title);
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.promo-grid .promo-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 220px;
}

.promo-grid .promo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-shell {
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.testimonial-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-item blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.newsletter-block {
  background: var(--brand-yellow);
  border-top: 1px solid var(--brand-black);
  border-bottom: 1px solid var(--brand-black);
  padding: 34px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 180px;
  gap: 16px;
  align-items: end;
}

.newsletter-grid h3 {
  margin: 0;
  font-family: var(--font-title);
  color: var(--brand-black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-grid p {
  margin: 8px 0 0;
  color: #333;
}

.newsletter-grid label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #333;
}

.newsletter-grid .form-control {
  border: 1px solid var(--brand-black);
  min-height: 42px;
}

.site-footer {
  background: #222;
  color: #fff;
  padding-top: 42px;
  font-weight: 300;
}

.footer-top {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-title {
  font-family: var(--font-title);
  color: var(--brand-yellow);
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.site-footer p,
.site-footer li,
.site-footer a {
  font-weight: 300;
}

.site-footer .footer-top p {
  margin: 0 0 6px;
  line-height: 1.4;
}

.site-footer .footer-top p:last-child {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  box-shadow: none;
}

.footer-social a:hover {
  color: var(--brand-yellow);
}

.footer-brand-logo {
  width: 143px;
  margin-left: auto;
}

.footer-sustainability-logo {
  width: 62px;
}

@media (max-width: 1000px) {
  .footer-brand-logo {
    margin-left: 0;
  }

  .site-footer .text-lg-end > .d-flex {
    justify-content: flex-start !important;
  }
}

.footer-bottom {
  padding: 16px 0 22px;
  color: var(--text-muted);
  font-size: 13px;
}

.institutional-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

.side-menu {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 18px;
  height: fit-content;
}

.side-menu h4 {
  margin: 0 0 14px;
  font-family: var(--font-title);
  text-transform: uppercase;
  color: var(--brand-black);
}

.content-panel h2,
.content-panel h3,
.destination-submenu h3,
.promo-list-item h3 {
  font-family: var(--font-title);
  font-weight: 500;
}

.side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-menu li + li {
  border-top: 1px solid var(--border-light);
}

.side-menu a {
  display: block;
  padding: 10px 0;
}

.side-menu a.active,
.side-menu a:hover {
  color: var(--brand-yellow);
}

.institutional-mobile-toggle-label {
  display: inline-block;
  max-width: calc(100% - 52px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.content-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 26px;
}

.destination-root-page .destination-featured-packages,
.destination-level-page .destination-featured-packages {
  margin-left: 0;
  margin-right: 0;
}

.destination-root-page .destination-featured-packages > [class*="col-"],
.destination-level-page .destination-featured-packages > [class*="col-"],
.destination-level-page .destination-local-cards > [class*="col-"] {
  display: flex;
}

.destination-root-page .destination-featured-packages .card-theme,
.destination-level-page .destination-featured-packages .card-theme,
.destination-level-page .destination-local-cards .card-theme {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.destination-root-page .destination-featured-packages .card-image,
.destination-level-page .destination-featured-packages .card-image,
.destination-level-page .destination-local-cards .card-image {
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
}

.destination-root-page .destination-featured-packages .card-body,
.destination-level-page .destination-featured-packages .card-body,
.destination-level-page .destination-local-cards .card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.destination-root-page .destination-featured-packages .card-body > .btn,
.destination-level-page .destination-featured-packages .card-body > .btn,
.destination-level-page .destination-local-cards .card-body > .btn {
  margin-top: auto;
}

.destination-level-page {
  background: #fff;
  padding: 0 0 56px;
}

.destination-dark-block {
  background: #000;
  padding: 44px 0 56px;
}

.destination-dark-block .destination-intro-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f3f3f3;
}

.destination-dark-block .destination-intro-panel .content-text,
.destination-dark-block .destination-intro-panel .content-text > * {
  color: #f3f3f3;
  background: transparent !important;
}

.section-heading.section-heading-light h2,
.section-heading.section-heading-light p {
  color: #fff;
}

.section-heading.section-heading-light p {
  border-bottom-color: var(--brand-yellow);
}

.destination-tabs-section {
  padding: 28px 0 32px;
  background: #fff;
}

.destination-tabs-nav {
  border-bottom: 0;
  gap: 12px;
  padding: 4px 0 14px;
}

.destination-tabs-nav .nav-link {
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  background: #1f1f1f;
  color: #fff;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 13px 24px;
  margin: 0;
}

.destination-tabs-nav .nav-link:hover {
  background: #121212;
  color: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.destination-tabs-nav .nav-link.active {
  background: #000;
  color: var(--brand-yellow);
  border-color: var(--brand-yellow);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.destination-tab-panel {
  border: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-top: 8px;
}

.destination-tab-title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 22px;
}

.destination-tab-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.destination-tab-links a {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 9px 10px;
  text-transform: uppercase;
  font-size: 12px;
}

.destination-tab-links a:hover {
  border-color: var(--brand-yellow);
  color: #000;
}

.destination-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.destination-related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
}

.destination-related-list a span {
  font-weight: 600;
}

.destination-related-list a strong {
  color: #444;
  font-size: 13px;
}

.destination-related-list a:hover {
  border-color: var(--brand-yellow);
}

.destination-legacy-section {
  padding: 28px 0 38px;
}

.destination-legacy-nav-wrap {
  margin-bottom: 0;
}

.destination-legacy-nav {
  border-bottom: 0;
  gap: 12px;
  padding: 4px 0 14px;
}

.destination-legacy-nav .nav-link {
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  background: #1f1f1f;
  color: #fff;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 13px 24px;
  margin: 0;
}

.destination-legacy-nav .nav-link:hover {
  background: #121212;
  color: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.destination-legacy-nav .nav-link.active {
  background: #000;
  color: var(--brand-yellow);
  border-color: var(--brand-yellow);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.destination-packages-panel {
  border-top: 0;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.destination-locals-nav {
  flex-wrap: wrap;
  overflow: visible;
  row-gap: 10px;
}

.destination-locals-nav::-webkit-scrollbar {
  display: none;
}

.destination-locals-nav .nav-link {
  white-space: nowrap;
}

.destination-tab-panel-legacy {
  padding: 24px;
}

.destination-local-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  margin-bottom: 24px;
}

.destination-local-hero-media {
  border-radius: 12px;
  overflow: hidden;
  background: #e9e9e9;
  min-height: 260px;
}

.destination-local-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.destination-local-hero-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 24px;
  color: #111;
}

.destination-local-hero-content h4 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #4b4b4b;
}

.destination-local-hero-content p {
  margin: 0 0 16px;
  color: #555;
  line-height: 1.6;
}

.destination-local-packages {
  margin-top: 8px;
}

.exp-menu-carousel .carousel-inner {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.experience-menu-carousel {
  width: 100%;
}

.experience-menu-viewport {
  overflow-x: auto;
  scrollbar-width: none;
}

.experience-menu-viewport::-webkit-scrollbar {
  display: none;
}

.experience-menu-track {
  min-width: max-content;
}

.exp-menu-item {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.experience-mobile-nav {
  background: #111;
  border: 1px solid #2d2d2d;
  border-radius: var(--radius-card);
  padding: 10px;
}

.experience-mobile-nav .mobile-filter-toggle {
  background: #181818;
  border-color: #303030;
  color: #fff;
}

.experience-mobile-nav .mobile-filter-toggle-icon {
  color: var(--brand-yellow);
}

.experience-mobile-toggle-label {
  display: inline-block;
  max-width: calc(100% - 52px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.experience-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.experience-mobile-link {
  display: block;
  border: 1px solid #343434;
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.experience-mobile-link:hover,
.experience-mobile-link:focus {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
}

.experience-mobile-link.active {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #000;
  font-weight: 600;
}

.exp-menu-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: #111;
  padding: 12px;
}

.exp-menu-strip a {
  display: block;
  border: 1px solid #333;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  font-size: 13px;
  text-transform: uppercase;
}

.exp-menu-strip a.active,
.exp-menu-strip a:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
}

.filter-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 16px;
}

.mobile-filter-head {
  display: none;
}

.mobile-filter-toggle {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  background: #fff;
  color: #000;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mobile-filter-toggle-icon {
  font-size: 18px;
  line-height: 1;
}

.mobile-filter-toggle-minus {
  display: none;
}

.mobile-filter-body {
  overflow: visible;
}

.promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.promo-list-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 16px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
}

.promo-list-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.destination-submenu {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 14px;
}

.destination-submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.destination-submenu a {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 9px 10px;
  text-transform: uppercase;
  font-size: 12px;
}

.destination-submenu a:hover,
.destination-submenu a.active {
  border-color: var(--brand-yellow);
  color: #000;
}

.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-box {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.best-season-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.best-season-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid #d9d9d9;
  background: #efefef;
  color: #444;
  font-family: var(--font-title);
  font-size: 12px;
  text-transform: uppercase;
}

.best-season-pill.is-active {
  background: #1ec000;
  border-color: #1ec000;
  color: #fff;
}

.best-season-pill.is-partial {
  background: #ffca20;
  border-color: #e0b319;
  color: #111;
}

.best-season-pill.is-off {
  background: #444;
  border-color: #444;
  color: #fff;
}

.contact-stack .contact-line {
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.2;
  color: #111;
}

.contact-stack .contact-info-block p {
  margin-bottom: 10px;
}

.contact-stack .form-label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.package-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 1fr);
  gap: 24px;
}

.package-gallery {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 14px;
}

.package-gallery-main {
  margin: 0 0 10px;
  border-radius: 12px;
  overflow: hidden;
}

.package-gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.package-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.package-gallery-thumbs button {
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.package-gallery-thumbs button.active,
.package-gallery-thumbs button:hover {
  border-color: #000;
}

.package-gallery-thumbs img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.package-summary {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 24px;
}

.package-summary h2 {
  margin-top: 0;
  font-family: var(--font-title);
  text-transform: uppercase;
  color: #111;
}

.package-facts {
  margin: 18px 0;
  display: grid;
  gap: 8px;
}

.package-facts li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.package-facts i {
  color: #000;
}

.highlight-icon-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px;
  height: 100%;
}

.highlight-icon-card i {
  font-size: 24px;
  color: #000;
}

.highlight-icon-card h3 {
  margin: 8px 0;
  font-family: var(--font-title);
  font-size: 18px;
  text-transform: uppercase;
  color: #111;
}

.highlight-icon-card p {
  margin: 0;
}

.difficulty-highlight {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px;
}

.difficulty-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.difficulty-title-row h3 {
  margin: 0;
  font-family: var(--font-title);
  text-transform: uppercase;
  color: #111;
}

.difficulty-label {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 5px 10px;
}

.difficulty-bars {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.difficulty-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #d4d4d4;
}

.difficulty-bars span.is-active {
  background: var(--brand-yellow);
}

.package-tabs-section {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.package-tabs-nav {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid var(--border-light);
  background: #f8f8f8;
}

.package-tabs-nav .nav-link {
  white-space: nowrap;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  border: 0;
  border-radius: 0;
  padding: 14px 16px;
}

.package-tabs-nav .nav-link.active {
  background: #fff;
  color: #000;
  border-bottom: 2px solid var(--brand-yellow);
}

.package-tabs-content {
  padding: 22px;
}

.package-tabs-content h3 {
  margin-top: 0;
  font-family: var(--font-title);
  text-transform: uppercase;
  color: #111;
}

.package-accordion-trigger {
  display: none;
}

.package-accordion-body {
  max-height: none;
  opacity: 1;
  overflow: visible;
}

.package-day-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.package-price-table {
  margin-bottom: 10px;
}

.package-price-table th {
  border: 0;
  background: #000;
  color: var(--brand-yellow);
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.package-price-table td {
  border-color: #e4e4e4;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #dedede;
  background: #fff;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.status-chip.status-saida-garantida {
  color: #009cee;
}

.status-chip.status-ha-vagas {
  color: #1ec000;
}

.status-chip.status-ultimas-vagas {
  color: #ed0000;
}

.status-chip.status-cancelado {
  color: #8f8f8f;
}

.status-chip.status-disponivel {
  color: #1ec000;
}

.package-list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.package-list-check li {
  position: relative;
  padding-left: 24px;
}

.package-list-check li::before {
  content: "\\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
}

.guide-card {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
}

.guide-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.guide-card h4 {
  margin: 0 0 6px;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 17px;
  color: #111;
}

.guide-card p {
  margin: 0;
}

.reservation-form .form-label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reservation-form .form-control,
.reservation-form .form-select {
  min-height: 42px;
}

.departure-months-wrap {
  position: relative;
  z-index: 1050;
}

.departure-months {
  position: sticky;
  top: 96px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #fff;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.departure-months.is-stuck {
  background: rgba(52, 52, 52, 0.96);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.departure-months.is-fixed {
  position: fixed;
  top: var(--departure-top-offset, 96px);
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container-max), calc(100% - 48px));
  z-index: 1110;
}

.departure-months-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(88px, 1fr));
}

.departure-months-list li {
  border-right: 1px solid var(--border-light);
}

.departure-months-list li:last-child {
  border-right: 0;
}

.departure-months-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 74px;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.05;
  color: #2a2a2a;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease;
}

.departure-months-list a strong {
  font-size: 12px;
  margin-top: 4px;
  color: #666;
  font-weight: 500;
}

.departure-months-list a:hover,
.departure-months-list a.active {
  background: var(--brand-yellow);
  color: #000;
}

.departure-months-list a:hover strong,
.departure-months-list a.active strong {
  color: #000;
}

.departure-months.is-stuck .departure-months-list li {
  border-right-color: rgba(255, 255, 255, 0.14);
}

.departure-months.is-stuck .departure-months-list a {
  color: #fff;
}

.departure-months.is-stuck .departure-months-list a strong {
  color: #c6c6c6;
}

.departure-months-mobile {
  background: #111;
  border: 1px solid #2d2d2d;
  border-radius: var(--radius-card);
  padding: 10px;
}

.departure-months-mobile .mobile-filter-toggle {
  background: #181818;
  border-color: #303030;
  color: #fff;
}

.departure-months-mobile .mobile-filter-toggle-icon {
  color: var(--brand-yellow);
}

.departure-months-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.departure-months-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #343434;
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.departure-months-mobile-link strong {
  font-weight: 600;
  color: #d6d6d6;
}

.departure-months-mobile-link:hover,
.departure-months-mobile-link:focus {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
}

.departure-months-mobile-link.active {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #000;
}

.departure-months-mobile-link.active strong {
  color: #000;
}

.departure-filters .form-label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #222;
}

.departure-guaranteed-check {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  gap: 8px;
}

.departure-guaranteed-check .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  border-color: #444;
}

.departure-guaranteed-check .form-check-label {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #111;
}

.departure-card .card-image {
  height: 220px;
}

.departure-card-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.departure-holiday-badge {
  margin: 0;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #f4f4f4;
  color: #1b1b1b;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #e8e8e8;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.departure-date,
.departure-status {
  margin: 0;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.departure-date {
  background: #000;
  color: var(--brand-yellow);
  font-weight: 600;
}

.departure-status {
  background: #fff;
  font-weight: 700;
}

.departure-status.status-saida-garantida {
  color: #009cee;
}

.departure-status.status-ha-vagas {
  color: #1ec000;
}

.departure-status.status-ultimas-vagas {
  color: #ed0000;
}

.departure-status.status-cancelado {
  color: #8f8f8f;
}

@media (max-width: 1199px) {
  .newsletter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .package-intro-grid {
    grid-template-columns: 1fr;
  }

  .mega-grid {
    grid-template-columns: 240px 1fr;
  }

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

@media (max-width: 991px) {
  .header-top-inner {
    padding-top: 3px;
    padding-bottom: 3px;
    gap: 8px;
  }

  .header-top-list li {
    font-size: 11px;
  }

  .header-top-list li i {
    font-size: 11px;
  }

  .header-main {
    align-items: center;
    justify-content: center;
    min-height: 82px;
    position: relative;
  }

  .header-brand {
    flex: 0 0 auto;
    min-height: 82px;
    margin: 0 auto;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .header-brand img {
    width: 132px;
  }

  .header-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 20;
  }

  .header-nav .navbar {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .header-nav .navbar-toggler,
  .header-nav .navbar-collapse {
    pointer-events: auto;
  }

  .header-nav .navbar-toggler {
    width: 40px;
    height: 40px;
    margin-left: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav .navbar-toggler:focus {
    box-shadow: none;
  }

  .header-nav .navbar-toggler-icon {
    width: 22px;
    height: 2px;
    display: block;
    background-image: none;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
    filter: none;
  }

  .header-nav .nav-link {
    min-height: 48px;
    padding: 12px 4px;
    width: 100%;
    justify-content: space-between;
    color: #fff;
  }

  .header-nav .nav-link:hover,
  .header-nav .nav-link.active,
  .header-nav .nav-item.show > .nav-link {
    color: #fff;
  }

  .header-nav .navbar-nav {
    padding-bottom: 0;
    gap: 0;
    align-items: stretch;
  }

  .header-nav .navbar-nav .nav-item {
    border-bottom: 1px solid #2a2a2a;
  }

  .header-nav .navbar-nav .nav-item:last-child {
    border-bottom: 0;
  }

  .header-nav .navbar-collapse {
    background: #000;
    border: 1px solid #2a2a2a;
    border-radius: 0;
    padding: 8px 12px 12px;
    margin-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 30;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .header-nav .navbar-collapse.show,
  .header-nav .navbar-collapse.collapsing {
    opacity: 1;
    transform: translateY(0);
  }

  .header-search-overlay {
    left: 0;
    padding: 8px 10px;
  }

  .header-search-form {
    grid-template-columns: 1fr auto;
  }

  .header-search-close {
    grid-column: 2;
    grid-row: 1;
  }

  .header-search-submit.btn-theme {
    grid-column: 1 / -1;
  }

  .header-nav .menu-accordion-item > .nav-link.dropdown-toggle::after {
    display: none;
  }

  .header-nav .menu-accordion-item {
    position: relative;
  }

  .header-nav .menu-accordion-item > .nav-link {
    width: 100%;
    position: relative;
    justify-content: flex-start;
    padding-right: 36px;
  }

  .header-nav .menu-accordion-item > .nav-link::before {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
  }

  .header-nav .menu-accordion-item.mobile-open > .nav-link::before {
    content: "-";
  }

  .header-nav .menu-accordion-toggle {
    display: none !important;
  }

  .header-main .header-nav .menu-accordion-item > .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    border: 1px solid #2a2a2a;
    border-radius: 0;
    background: #0a0a0a;
    margin: 0;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 12px;
    transform: translateY(-6px);
    transition: max-height 0.32s ease, opacity 0.22s ease, transform 0.22s ease, margin 0.22s ease, padding 0.22s ease;
  }

  .header-main .header-nav .menu-accordion-item.mobile-open > .dropdown-menu {
    max-height: 65vh;
    opacity: 1;
    overflow-y: auto;
    padding: 8px 12px 10px;
    margin: 0 0 10px;
    transform: translateY(0);
  }

  .header-main .header-nav .menu-institucional > .dropdown-menu {
    min-width: 100%;
  }

  .institutional-dropdown-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .institutional-dropdown-list a {
    font-size: 15px;
    line-height: 1.3;
  }

  .departure-months {
    top: 82px;
  }

  .departure-months-list {
    grid-template-columns: repeat(6, minmax(96px, 1fr));
  }

  .mega-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mega-col-left {
    border-right: 0;
    border-bottom: 1px solid #2a2a2a;
    padding: 16px;
  }

  .mega-col-right {
    padding: 16px;
    gap: 14px;
  }

  .mega-regions li,
  .mega-states li,
  .mega-destinations a,
  .mega-destination-title {
    color: #fff;
  }

  .mega-regions li.active,
  .mega-regions li:hover,
  .mega-states li.active,
  .mega-states li:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
  }

  .mega-destinations {
    grid-template-columns: 1fr;
    gap: 8px 0;
  }

  .mega-destination-title {
    font-size: 16px;
  }

  .hero {
    min-height: 460px;
  }

  .search-block {
    margin-top: 20px;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .institutional-layout {
    grid-template-columns: 1fr;
  }

  .exp-menu-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .destination-tab-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .destination-local-hero {
    grid-template-columns: 1fr;
  }

  .destination-local-hero-media,
  .destination-local-hero-media img {
    min-height: 220px;
  }

  .promo-list-item {
    grid-template-columns: 1fr;
  }

  .testimonial-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .dura-container,
  .theme-container,
  .container-1440 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-top {
    max-height: 34px;
  }

  .header-top-list,
  .header-contact-list {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .header-top-list li span {
    font-size: 10px;
  }

  .header-search-nav-item {
    display: none;
  }

  .header-brand {
    flex: 0 0 auto;
    min-height: 76px;
  }

  .header-brand img {
    width: 120px;
  }

  .header-nav .navbar-toggler {
    width: 40px;
    height: 40px;
  }

  .package-gallery-main img {
    height: 280px;
  }

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

  .guide-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guide-card img {
    margin: 0 auto;
  }

  .hero {
    min-height: 380px;
  }

  .rev-slider-shell .rev_slider .tparrows {
    width: 42px !important;
    height: 42px !important;
  }

  .rev-slider-shell .rev_slider .tparrows:before {
    line-height: 42px !important;
    font-size: 22px !important;
  }

  .rev-slider-shell .rev-manual-arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .rev-slider-shell .rev-manual-arrow-prev {
    left: 14px;
  }

  .rev-slider-shell .rev-manual-arrow-next {
    right: 14px;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .section-space {
    padding: 40px 0;
  }

  .package-tabs-section.mobile-accordion .package-tabs-nav {
    display: none;
  }

  .package-tabs-section.mobile-accordion .package-tabs-content {
    padding: 0;
  }

  .package-tabs-section.mobile-accordion .package-tabs-content .tab-pane {
    display: block !important;
    opacity: 1 !important;
    border-top: 1px solid var(--border-light);
    margin: 0;
    padding: 0;
  }

  .package-tabs-section.mobile-accordion .package-tabs-content .tab-pane:first-child {
    border-top: 0;
  }

  .package-tabs-section.mobile-accordion .package-accordion-trigger {
    width: 100%;
    min-height: 48px;
    border: 0;
    background: #f8f8f8;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: left;
  }

  .package-tabs-section.mobile-accordion .package-accordion-trigger::after {
    content: "+";
    font-size: 20px;
    line-height: 1;
    color: #111;
    flex: 0 0 auto;
  }

  .package-tabs-section.mobile-accordion .tab-pane.accordion-open .package-accordion-trigger {
    background: var(--brand-yellow);
    color: #000;
  }

  .package-tabs-section.mobile-accordion .tab-pane.accordion-open .package-accordion-trigger::after {
    content: "-";
    color: #000;
  }

  .package-tabs-section.mobile-accordion .package-accordion-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 14px;
    transition: max-height 0.32s ease, opacity 0.22s ease, padding 0.22s ease;
  }

  .package-tabs-section.mobile-accordion .tab-pane.accordion-open .package-accordion-body {
    max-height: 400vh;
    opacity: 1;
    padding: 12px 14px 16px;
  }

  .search-panel {
    padding: 12px;
  }

  .search-panel-mobile-head {
    display: block;
  }

  .search-panel-body {
    max-height: 1400px;
    opacity: 1;
    overflow: hidden;
    margin-top: 10px;
    transition: max-height 0.35s ease, opacity 0.22s ease, margin 0.22s ease;
  }

  .search-panel.mobile-collapsed .search-panel-body {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    pointer-events: none;
  }

  .search-panel.mobile-expanded .search-panel-toggle-plus {
    display: none;
  }

  .search-panel.mobile-expanded .search-panel-toggle-minus {
    display: inline;
  }

  .mobile-filter-head {
    display: block;
  }

  .mobile-filter-body {
    max-height: 1400px;
    opacity: 1;
    overflow: hidden;
    margin-top: 10px;
    transition: max-height 0.35s ease, opacity 0.22s ease, margin 0.22s ease;
  }

  .mobile-filter-panel.mobile-collapsed .mobile-filter-body {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    pointer-events: none;
  }

  .mobile-filter-panel.mobile-expanded .mobile-filter-toggle-plus {
    display: none;
  }

  .mobile-filter-panel.mobile-expanded .mobile-filter-toggle-minus {
    display: inline;
  }

  .institutional-mobile-menu {
    padding: 12px;
  }

  .institutional-mobile-menu .mobile-filter-body h4 {
    display: none;
  }

  .theme-breadcrumb {
    padding: 10px 0;
  }

  .destination-dark-block {
    padding: 34px 0 44px;
  }

  .destination-tabs-section {
    padding: 20px 0 28px;
  }

  .destination-tab-panel {
    padding: 16px;
  }

  .promo-grid,
  .info-split {
    grid-template-columns: 1fr;
  }

  .destination-submenu ul,
  .exp-menu-strip,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .destination-tab-links {
    grid-template-columns: 1fr;
  }

  .destination-legacy-nav .nav-link,
  .destination-tabs-nav .nav-link {
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .destination-locals-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    row-gap: 0;
    scrollbar-width: none;
  }

  .destination-related-list a {
    flex-direction: column;
    align-items: flex-start;
  }

  .departure-months {
    top: 82px;
    overflow-x: auto;
  }

  .departure-months.is-fixed {
    width: calc(100% - 28px);
  }

  .departure-months-list {
    min-width: 780px;
    grid-template-columns: repeat(12, minmax(60px, 1fr));
  }

  .departure-guaranteed-check {
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .card-theme .card-image {
    height: 190px;
  }

  .highlight-grid img {
    height: 112px;
  }
}
