/**
 * Transfer Jeri — component library (home, header, cards)
 * Depende de tokens.css
 */

/* ============================================================
   Home – Skyscanner-style layout
   ============================================================ */
.home-page {
  background: var(--surface-canvas, #f1f5f9);
}

.home-page > header {
  background: var(--header-bg, var(--brand));
  box-shadow: none;
}

.home-main .home-section-header {
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: static;
  z-index: auto;
}

.home-section-header-band {
  background: var(--surface-canvas);
  width: 100%;
  padding: 3.6rem 0 2.4rem;
}

.home-section-header-band .home-section-header {
  background: transparent;
}

.home-main {
  overflow-x: hidden;
  padding-bottom: 2.4rem;
}

.home-hero {
  background: var(--header-bg, var(--brand));
  padding: 3.2rem 0 7.2rem;
  position: relative;
}

.home-hero-inner {
  max-width: 920px;
}

.home-hero-title {
  margin: 0 0 1rem;
  color: var(--header-text, #f8fafc);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.home-hero-subtitle {
  margin: 0;
  max-width: 52rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
  line-height: 1.45;
}

.home-hero-badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.home-hero-badge__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 1 auto;
  min-width: 0;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 250, 252, 0.92);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.home-hero-badge__icon {
  flex: 0 0 auto;
  font-size: 1.5rem;
  line-height: 1;
}

.home-hero-badge__item strong {
  font-weight: 700;
  color: #fff;
}

.home-search-wrap {
  margin-top: -4.8rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2.4rem;
}

.home-page .home-search-wrap .tj-search-card {
  box-shadow: 0 16px 40px rgba(5, 32, 60, 0.12), 0 4px 12px rgba(5, 32, 60, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.home-trust {
  padding: 1.6rem 0 0;
  margin-bottom: 2.4rem;
}

.home-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.home-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(5, 32, 60, 0.06);
}

.home-trust-icon {
  flex: 0 0 auto;
  display: inline-flex;
  color: var(--accent);
}

.home-trust-text {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-section {
  padding: 4.8rem 0;
}

.home-section.container {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

.home-trust + .home-section.container {
  padding-top: 5.6rem !important;
}

.home-section--routes {
  background: transparent;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  border: none;
}

.home-section--routes .home-section-header--routes {
  margin-bottom: 0;
}

.home-section--routes > .container {
  max-width: 127.8rem !important;
  padding: 0 1.5rem 2.4rem !important;
}

.home-section-header-band > .container {
  max-width: 127.8rem !important;
  padding: 0 1.5rem !important;
}

.home-section--muted {
  background: var(--surface-canvas);
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.home-section--muted > .container {
  max-width: 127.8rem !important;
  margin: 0 auto;
  padding: 0 1.5rem !important;
}

.home-section-header {
  margin-bottom: 2.4rem;
}

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

.home-section-title {
  margin: 0 0 0.6rem;
  color: var(--brand);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-section-desc {
  margin: 0;
  max-width: 56rem;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1.5;
}

.home-routes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.home-route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.8rem 2rem;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.home-route-card:hover {
  background: transparent;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(7, 112, 227, 0.12);
  transform: translateY(-2px);
}

.home-route-card-label {
  display: block;
  color: var(--brand);
  font-size: 1.7rem;
  font-weight: 700;
}

.home-route-card-desc {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 1.35rem;
}

.home-route-card-arrow {
  flex: 0 0 auto;
  color: var(--accent);
}

.home-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: none;
  width: 100%;
}

.home-live-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 12px;
}

.home-live-grid .home-live-card,
.home-live-grid .proxima-saida-card {
  max-width: none;
  flex: none;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.home-live-route {
  margin-bottom: 1.2rem;
}

.home-live-badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(7, 112, 227, 0.1);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-live-label {
  margin: 0;
  color: var(--brand);
  font-size: 1.8rem;
  font-weight: 700;
}

.home-live-countdown {
  margin: 0 0 0.8rem;
}

.home-live-countdown .proxima-saida-time {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
}

.home-live-next {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.4rem;
}

.home-live-next strong {
  color: var(--accent);
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-step {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 12px;
}

.home-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
}

.home-step-title {
  margin: 0 0 0.6rem;
  color: var(--brand);
  font-size: 1.7rem;
  font-weight: 700;
}

.home-step-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1.5;
}

.home-partners {
  padding-top: 0;
}

.home-section-header--center .home-section-desc {
  margin: 0 auto;
}

.home-partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-partners-grid:empty {
  display: none;
}

.home-partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 19rem;
  height: 10.4rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(5, 32, 60, 0.05);
}

.home-partners-logo {
  display: block;
  width: 15.6rem;
  height: 6.8rem;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 992px) {
  .home-trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .home-field {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-default);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .home-field--pax {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .home-swap-btn {
    align-self: flex-end;
    margin: -0.8rem 0 0.4rem;
  }

  .home-search-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 0.4rem;
  }

  .home-search-btn-text {
    display: none;
  }

  .home-search-btn-icon {
    display: block;
  }

  .home-routes-grid,
  .home-live-grid,
  .home-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-hero {
    padding: 3.6rem 0 6.4rem;
  }

  .home-hero-badge {
    gap: 0.6rem;
  }

  .home-hero-badge__item {
    font-size: 1.2rem;
    padding: 0.5rem 0.9rem;
  }


  .home-search-wrap {
    margin-top: -4rem;
  }

  .home-search-tabs {
    padding: 1rem 1rem 0;
  }

  .home-search-form {
    padding: 1.2rem;
  }

  .home-trust-inner {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 3.6rem 1.5rem;
  }

  .home-section.container {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }

  .home-trust + .home-section.container {
    padding-top: 4.8rem !important;
  }
}
/* ============================================================
   Header UX — tj-site-header
   ============================================================ */
.tj-site-header {
  position: sticky;
  top: 0;
  z-index: 400;
  padding: 1rem 0 0.6rem;
  background: var(--header-bg, var(--brand));
  border-bottom: none;
  color: var(--header-text, #f8fafc);
  transition: box-shadow 0.2s ease;
}

.tj-site-header.is-scrolled {
  box-shadow: none;
}

.tj-site-header .navbar-desktop {
  min-height: 6.4rem;
  gap: 1.6rem;
  align-items: center;
}

.tj-site-header .brand-transfer,
.tj-site-header .logo img,
.tj-site-header .tj-header-brand img,
.tj-checkout-header__brand img,
.tj-checkout-header__logo {
  max-height: 3.8rem;
  max-width: 15rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.tj-header-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
  margin-right: 0.8rem;
}

.tj-header-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  color: var(--text-secondary, #475569);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.tj-header-nav-link:hover,
.tj-header-nav-link.is-active {
  background: var(--accent-soft, #dbeafe);
  color: var(--accent, var(--accent));
}

.tj-site-header .btn-header-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  margin-left: auto;
}

.tj-site-header .lang-selector,
.tj-site-header .account-dropdown,
.tj-site-header .icon-help,
.tj-site-header .icon-cart {
  margin-right: 0;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.tj-site-header .lang-selector-toggle,
.tj-site-header .account-dropdown-trigger {
  min-height: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--header-text, #f8fafc);
  font-size: 1.3rem;
  font-weight: 600;
  box-sizing: border-box;
}

.tj-site-header .lang-selector-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.2rem;
  white-space: nowrap;
}

.tj-site-header .lang-selector-toggle:hover,
.tj-site-header .account-dropdown-trigger:hover,
.tj-site-header .lang-selector.is-open .lang-selector-toggle,
.tj-site-header .account-dropdown.is-open .account-dropdown-trigger {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.tj-site-header .account-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  min-width: 4rem;
  padding: 0 1.2rem 0 0.9rem;
}

.tj-site-header .account-dropdown-trigger .fa-user-circle {
  font-size: 1.6rem;
  color: var(--header-text, #f8fafc);
  flex-shrink: 0;
  line-height: 1;
}

.tj-site-header .account-dropdown-trigger .account-dropdown-chevron {
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-left: 0.1rem;
}

.tj-site-header .account-dropdown-trigger-text {
  display: none;
  white-space: nowrap;
}

@media (min-width: 1291px) {
  .tj-site-header .account-dropdown-trigger-text {
    display: inline;
  }
}

.tj-site-header .icon-help a,
.tj-site-header .icon-cart a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--header-text, #f8fafc) !important;
  box-sizing: border-box;
  flex-shrink: 0;
}

.tj-site-header .icon-help a:hover,
.tj-site-header .icon-cart a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.tj-site-header .icon-help i,
.tj-site-header .icon-cart i {
  font-size: 1.7rem;
}

.tj-site-header .icon-cart {
  position: relative;
  max-width: none;
  width: auto;
}

.tj-site-header .icon-cart::before {
  content: attr(data-item-count);
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent, var(--accent));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid var(--header-bg, var(--brand));
}

.tj-site-header .icon-cart[data-item-count="0"]::before,
.tj-site-header .icon-cart:not([data-item-count])::before,
.tj-site-header .icon-cart[data-item-count=""]::before {
  display: none;
}

.tj-header-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.tj-header-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 4.4rem;
  min-height: 4.4rem;
  padding: 0.55rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--header-text, #f8fafc);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.tj-header-icon-btn:hover {
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0.85;
}

.tj-header-icon-btn i {
  font-size: 2.1rem;
  line-height: 1;
}

.tj-header-icon-btn--cart::after {
  content: attr(data-item-count);
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent, var(--accent));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid var(--header-bg, var(--brand));
}

.tj-header-icon-btn--cart[data-item-count="0"]::after,
.tj-header-icon-btn--cart:not([data-item-count])::after,
.tj-header-icon-btn--cart[data-item-count=""]::after {
  display: none;
}

/* Language modal (mobile — ícone planeta) */
html.tj-lang-modal-open,
body.tj-lang-modal-open {
  overflow: hidden;
}

.tj-lang-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  pointer-events: none;
  visibility: hidden;
}

.tj-lang-modal[hidden]:not(.is-open) {
  display: none;
}

.tj-lang-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.tj-lang-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tj-lang-modal.is-open .tj-lang-modal__backdrop {
  opacity: 1;
}

.tj-lang-modal__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 34rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.tj-lang-modal.is-open .tj-lang-modal__sheet {
  transform: scale(1);
  opacity: 1;
}

.tj-lang-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid var(--border-default);
}

.tj-lang-modal__title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tj-lang-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--surface-elevated);
  color: var(--text-secondary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tj-lang-modal__close:hover,
.tj-lang-modal__close:focus {
  background: var(--surface-subtle);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.tj-lang-modal__options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem 1.6rem 1.6rem;
}

.tj-lang-modal__option {
  display: flex;
  align-items: center;
  min-height: 5rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--surface-elevated);
  color: var(--text-primary);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tj-lang-modal__option:hover,
.tj-lang-modal__option:focus {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.tj-lang-modal__option.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

@media (min-width: 1291px) {
  .tj-lang-modal {
    display: none !important;
  }
}

.tj-site-header .bx {
  border: none;
  background: transparent;
  color: var(--header-text, #f8fafc);
}

.tj-site-header .bx::after,
.tj-site-header .bx::before {
  background-color: currentColor;
}

header .active-menu-mobile {
  background: #fff;
  padding-top: 7rem;
}

header .active-menu-mobile .nav-link-mobile {
  font-size: 1.8rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border-default, #e2e8f0);
  border-radius: 12px;
  background: #fff;
}

header .active-menu-mobile .nav-link-mobile:hover,
header .active-menu-mobile .nav-link-mobile.is-active {
  background: var(--accent-soft, #dbeafe);
  color: var(--accent, var(--accent));
}

header .active-menu-mobile .menu-mobile__cart-badge[data-count="0"] {
  display: none;
}

@media (max-width: 1290px) {
  .tj-header-mobile-actions {
    display: flex;
  }

  .tj-site-header .navbar-mobile {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 1rem;
    min-height: 5.6rem;
  }

  .tj-site-header .navbar-mobile .logo {
    justify-self: start;
  }

  .tj-site-header .navbar-mobile .logo img,
  body.tj-checkout-page .tj-checkout-header__brand img,
  body.tj-checkout-page .tj-checkout-header__logo {
    max-height: 3.2rem;
    max-width: 13rem;
  }

  .tj-site-header .navbar-mobile .tj-header-mobile-actions {
    justify-self: end;
  }
}

/* Dark header — sobrescreve regras legadas e transfer-funnel.css */
body.tj-funnel .tj-site-header .lang-selector-toggle,
body.tj-funnel .tj-site-header .lang-selector-label,
body.tj-funnel .tj-site-header .lang-selector-chevron,
body.tj-funnel .tj-site-header .account-dropdown-trigger,
body.tj-funnel .tj-site-header .account-dropdown-trigger-text,
body.tj-funnel .tj-site-header .account-dropdown-trigger-label,
body.tj-funnel .tj-site-header .account-dropdown-trigger .fa-user-circle,
body.tj-funnel .tj-site-header .account-dropdown-chevron,
body.tj-funnel .tj-site-header .icon-help a,
body.tj-funnel .tj-site-header .icon-cart a,
body.tj-funnel .tj-site-header .icon-help i,
body.tj-funnel .tj-site-header .icon-cart i,
body.tj-funnel .tj-site-header .tj-header-icon-btn,
body.tj-funnel .tj-site-header .tj-header-icon-btn i,
body.tj-funnel .tj-site-header .bx {
  color: var(--header-text, #f8fafc);
}

body.tj-funnel .tj-site-header .lang-selector-toggle,
body.tj-funnel .tj-site-header .account-dropdown-trigger,
body.tj-funnel .tj-site-header .icon-help a,
body.tj-funnel .tj-site-header .icon-cart a {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

body.tj-funnel .tj-site-header .tj-header-icon-btn {
  border: none;
  background: transparent;
}

body.tj-funnel .tj-site-header .icon-help a,
body.tj-funnel .tj-site-header .icon-cart a {
  color: var(--header-text, #f8fafc) !important;
}

body.tj-funnel .tj-site-header .lang-selector-toggle:hover,
body.tj-funnel .tj-site-header .account-dropdown-trigger:hover,
body.tj-funnel .tj-site-header .lang-selector.is-open .lang-selector-toggle,
body.tj-funnel .tj-site-header .account-dropdown.is-open .account-dropdown-trigger,
body.tj-funnel .tj-site-header .icon-help a:hover,
body.tj-funnel .tj-site-header .icon-cart a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

body.tj-funnel .tj-site-header .tj-header-icon-btn:hover {
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0.85;
}

body.tj-funnel .tj-site-header .icon-help a:hover,
body.tj-funnel .tj-site-header .icon-cart a:hover {
  color: #fff !important;
}

body.tj-funnel .tj-site-header .lang-selector.is-open .lang-selector-toggle,
body.tj-funnel .tj-site-header .account-dropdown.is-open .account-dropdown-trigger {
  color: #fff;
}

body.tj-funnel .btn-primary {
  border: 2px solid var(--surface-muted);
  background: var(--surface-muted);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  margin-right: 3.2rem;
  padding: 0.8rem 2.5rem;
  text-decoration: none;
  transition: 0.1s linear;
  width: 100%;
}

.mySwiperTours .swiper-slide { margin: 0 !important; }
.mySwiperTours .swiper-wrapper { gap: 10px; }
.tours-content-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tours-content-img {
  max-height: 147.68px;
  height: 100vh;
  overflow: hidden;
}
.tours .tours-content .tours-box-slide .tours-container__info .tours-content-info h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tours .tours-content .tours-box-slide .tours-container__info .tours-content-info .t-location-container {
  gap: 10px;
}
.t-location-container {
  display: flex;
  flex-direction: column;
}
.mybtn {
  display: inline-block;
  white-space: nowrap;
}
.br-passeios-card .br-passeios-img-content {
  max-height: 250px;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 530px) {
  .swiper-slide { overflow: hidden; border-radius: 8px; }
  .rodape-container .rodape-content-card img.logo {
    left: initial;
    transform: initial;
  }
  .tours-box-slide { max-width: 384px !important; }
}

/* Transfer detail — compact search */
.transfer-page-search {
  padding: 1.6rem 0 2rem;
  background: var(--surface-canvas);
}

.transfer-page-search .tj-search-wrap {
  max-width: var(--tj-container);
  margin: 0 auto;
}
