@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease;
}
#page-loader img {
  animation: pulse-loader 1.2s ease-in-out infinite;
}
#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes pulse-loader {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.95); }
}
@keyframes spin-loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

:root {
  --primary100: #F8F0FF;
  --primary200: #E1C1FF;
  --primary400: #B464FF;
  --primary500: #A528FF;
  --primary600: #8629CC;
  --primary800: #431466;
  --secondary100: #FFFAE6;
  --secondary200: #FEE999;
  --secondary500: #FFC800;
  --secondary600: #A37F00;
  --tertiary-medium: #6E007D;
  --tertiary-light: #C599CB;
  --black500: #222222;
  --black400: #525252;
  --black300: #636363;
  --black200: #767676;
  --black100: #9F9F9F;
  --white100: #FFFFFF;
  --white200: #FAFAFA;
  --white300: #F5F5F5;
  --white400: #E9E9E9;
  --white500: #D0D0D0;
  --success500: #55B254;
  --error500: #E31600;
  --info500: #4B6DB6;
  --price-lowfare: #FF5A4B;
  --shadow-card: 0px 2px 8px rgba(0,0,0,0.08);
  --shadow-level1: 0px 1px 3px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 999px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--black500);
  background: var(--white200);
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; outline: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

header {
  display: flex;
  align-items: center;
  z-index: 102;
  position: fixed;
  top: 0; left: 0; right: 0;
  border-bottom: 1px solid var(--white400);
  background-color: var(--white100);
  min-height: 73px;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  justify-content: space-between;
}
.header-logo {
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
}
.header-logo img {
  width: 161px;
  height: 40px;
  object-fit: contain;
}
header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
header nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--black500);
  font-weight: 500;
  transition: color 0.2s;
}
header nav a:hover { color: var(--primary500); }
header nav a svg { width: 20px; height: 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 103;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black500);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.search-form-header {
  flex: 1;
  max-width: 884px;
  margin-left: 1.5rem;
  margin-right: 1rem;
}
.search-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr auto;
  grid-gap: 8px;
  width: 100%;
  align-items: center;
}
.search-form.five-cols {
  grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr auto;
}
.search-field {
  position: relative;
}
.input-wrap {
  position: relative;
  border: 1px solid var(--black300);
  border-radius: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  background: var(--white100);
  transition: border-color 0.2s;
}
.input-wrap:focus-within {
  border-color: var(--primary500);
}
.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: var(--black300);
  pointer-events: none;
  z-index: 1;
}
.input-icon svg { width: 18px; height: 18px; }
.search-field input {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 20px;
  padding: 0 12px 0 36px;
  font-size: 0.875rem;
  color: var(--black500);
  background: transparent;
}
.search-field input::placeholder { color: var(--black100); }
.search-field input[type="date"] { cursor: pointer; }

.invert-btn {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.invert-btn:hover { opacity: 0.85; }
.invert-btn svg { width: 36px; height: 36px; }

.btn-search {
  height: 40px;
  padding: 0 24px;
  background: var(--primary500);
  color: var(--white100);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-search:hover { background: var(--primary600); }
.btn-search svg { width: 18px; height: 18px; }

.hero-banner {
  position: relative;
  width: 100%;
  margin-top: 73px;
  overflow: hidden;
  min-height: 420px;
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-banner-bg .banner-mobile { display: none; }
.hero-banner-bg .banner-desktop { display: block; width: 100%; height: 100%; }
.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 24px 0;
}
.hero-overlay .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-overlay h1 {
  color: var(--white100);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.search-card {
  background: var(--white100);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.search-card .input-wrap {
  height: 48px;
}
.search-card .search-field input {
  height: 46px;
}
.search-card .btn-search {
  height: 48px;
  padding: 0 32px;
  font-size: 1rem;
}
.radio-group {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--black500);
  cursor: pointer;
}
.radio-group input[type="radio"] {
  accent-color: var(--primary500);
  width: 16px;
  height: 16px;
}
.field-label {
  display: block;
  font-size: 0.75rem;
  color: var(--black300);
  margin-bottom: 4px;
  padding-left: 4px;
}

.stepper-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 0;
  background: var(--white100);
  border-bottom: 1px solid var(--white400);
  margin-top: 73px;
}
.stepper-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--black100);
}
.stepper-item.active { color: var(--primary500); font-weight: 600; }
.stepper-item.done { color: var(--success500); }
.stepper-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--white500);
  color: var(--black100);
  background: var(--white100);
}
.stepper-item.active .stepper-num {
  border-color: var(--primary500);
  background: var(--primary500);
  color: var(--white100);
}
.stepper-item.done .stepper-num {
  border-color: var(--success500);
  background: var(--success500);
  color: var(--white100);
}
.stepper-divider {
  width: 48px;
  height: 1px;
  background: var(--white400);
  margin: 0 12px;
}

.week-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white100);
  border-bottom: 1px solid var(--white400);
  padding: 8px 16px;
  overflow-x: auto;
  justify-content: center;
}
.week-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--black300);
  border-radius: var(--radius-pill);
  font-weight: 500;
  white-space: nowrap;
  text-transform: capitalize;
  transition: all 0.2s;
  line-height: 1.3;
}
.week-tab:hover { color: var(--black500); background: var(--white300); }
.week-tab.active {
  background: var(--secondary500);
  color: var(--black500);
  font-weight: 600;
}

.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white200);
  padding: 12px 24px;
  font-size: 0.875rem;
}
.sort-bar .results-count {
  color: var(--black500);
}
.sort-options {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sort-options .sort-label {
  color: var(--black300);
  margin-right: 4px;
  font-size: 0.8125rem;
}
.sort-option {
  padding: 4px 10px;
  color: var(--black300);
  cursor: pointer;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 4px;
  border-right: 1px solid var(--white400);
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.sort-option:last-child { border-right: none; }
.sort-option.active { color: var(--black500); font-weight: 600; }
.sort-option svg { width: 14px; height: 14px; }

.results-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.filters-sidebar {
  background: var(--white200);
  padding: 16px 12px 0 12px;
  min-height: 400px;
}
.filter-group {
  margin-bottom: 20px;
}
.filter-group-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black500);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--white400);
  margin-bottom: 8px;
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.8125rem;
  color: var(--black400);
  cursor: pointer;
}
.filter-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary500);
  border-radius: 4px;
  cursor: pointer;
}

.results-list {
  display: flex;
  flex-direction: column;
  padding: 0 0 24px 0;
}
.trip-card {
  position: relative;
  padding: 20px 16px 0 16px;
  background: var(--white100);
  border-bottom: 1px solid var(--white400);
  font-size: 0.875rem;
  color: var(--black500);
}
.trip-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.trip-company {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 170px;
  flex-shrink: 0;
}
.trip-company img {
  width: 128px;
  height: 40px;
  object-fit: contain;
}
.trip-company .viaje-com {
  font-size: 0.6875rem;
  color: var(--black300);
  line-height: 1.2;
}
.trip-schedule {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 12px;
}
.trip-time {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 48px;
}
.trip-time .hour {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black500);
  line-height: 1;
}
.trip-time .station {
  font-size: 0.6875rem;
  color: var(--black300);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}
.trip-duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 60px;
}
.trip-duration .dur-text {
  font-size: 0.6875rem;
  color: var(--black500);
  font-weight: 600;
  white-space: nowrap;
}
.trip-duration .dur-line {
  width: 100%;
  height: 1px;
  background: var(--white500);
  position: relative;
}
.trip-duration .dur-line::before,
.trip-duration .dur-line::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white500);
  top: -2.5px;
}
.trip-duration .dur-line::before { left: 0; }
.trip-duration .dur-line::after { right: 0; }

.trip-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 68px 14px 16px;
  background: var(--white100);
  border: 1px solid var(--primary500);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  margin-bottom: 16px;
  min-height: 60px;
  position: relative;
  box-shadow: var(--shadow-level1);
  transition: 0.2s;
  cursor: pointer;
}
.trip-bottom:hover {
  box-shadow: 0 2px 8px rgba(165,40,255,0.15);
}
.trip-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.service-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.service-class {
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-class img {
  width: 32px;
  height: 32px;
}
.service-class span {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--black500);
}
.seat-recline {
  font-size: 0.6875rem;
  color: var(--black300);
  display: flex;
  align-items: center;
  gap: 4px;
}
.seat-recline img { width: 16px; height: 16px; }

.price-area {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.clickoferta-badge {
  display: flex;
  align-items: center;
}
.clickoferta-badge img {
  width: 94px;
  height: 34px;
}
.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.price-original {
  font-size: 0.75rem;
  color: var(--black500);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 2px;
}
.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black500);
  line-height: 1;
}
.price-current .currency {
  font-size: 0.8125rem;
  font-weight: 400;
}
.price-clube {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  color: var(--tertiary-medium);
  margin-top: 4px;
}
.price-clube a {
  text-decoration: underline;
  color: var(--tertiary-medium);
}

.select-arrow {
  width: 58px;
  height: 100%;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--primary500);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white100);
  cursor: pointer;
  position: absolute;
  right: -1px;
  top: -1px;
  bottom: -1px;
  transition: 0.2s;
}
.trip-bottom:hover .select-arrow {
  background: var(--primary600);
}
.select-arrow svg {
  width: 32px;
  height: 32px;
}

.trip-tags {
  display: flex;
  align-items: center;
  padding: 0 0 12px 0;
  gap: 8px;
  flex-wrap: wrap;
}
.trip-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  color: var(--black300);
  background: var(--white300);
  padding: 3px 10px;
  border-radius: 4px;
}
.trip-tag svg { width: 14px; height: 14px; color: var(--black100); }

.no-results {
  text-align: center;
  padding: 64px 24px;
  color: var(--black300);
}
.no-results svg { width: 64px; height: 64px; color: var(--black100); margin-bottom: 16px; }
.no-results h3 { font-size: 1.25rem; color: var(--black500); margin-bottom: 8px; }
.no-results p { font-size: 0.875rem; }

footer {
  background: #ffffff;
  color: #000000;
  margin-top: 0;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-links {
  padding: 48px 0 32px;
}
.footer-links .container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.footer-logo {
  flex-shrink: 0;
}
.footer-logo img {
  width: 141px;
  height: 32px;
}
.footer-columns {
  display: flex;
  gap: 32px;
  flex: 1;
}
.footer-col {
  flex: 1;
}
.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000000;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.8125rem;
  color: #000000;
  padding: 3px 0;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--primary500); }
.footer-divider .container {
  border-top: 1px solid #e0e0e0;
}
.footer-bottom-section {
  padding: 24px 0;
}
.footer-bottom-grid {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-bottom-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #000000;
}
.footer-bottom-title--sm {
  font-size: 0.8125rem;
}
.footer-apps {
  display: flex;
  gap: 8px;
}
.footer-apps img { height: 47px; }
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  display: flex;
  width: 40px;
  height: 40px;
}
.footer-social img {
  width: 40px;
  height: 40px;
  transition: opacity 0.2s;
}
.footer-social img:hover { opacity: 0.7; }
.footer-payments {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-payments img { height: 23px; }
.footer-cadastur { height: 22px; }
.footer-copyright {
  padding: 20px 0;
}
.footer-copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright span {
  font-size: 0.8125rem;
  color: #666;
}
.footer-copyright nav {
  display: flex;
  gap: 16px;
}
.footer-copyright nav a {
  font-size: 0.8125rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-copyright nav a:hover { color: var(--primary500); }
.footer-copyright p {
  font-size: 0.8125rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

.section-routes { padding: 48px 0; }
.section-routes .container { display: flex; flex-direction: column; }
.section-routes h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.route-card {
  background: var(--white100);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.route-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.route-icon {
  width: 44px; height: 44px;
  background: var(--primary100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary500);
  flex-shrink: 0;
}
.route-icon svg { width: 22px; height: 22px; }
.route-info h4 { font-size: 0.875rem; font-weight: 600; }
.route-info p { font-size: 0.75rem; color: var(--black100); }
.route-price {
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary500);
  white-space: nowrap;
}

.section-features { padding: 48px 0; background: var(--white100); }
.section-features .container { display: flex; flex-direction: column; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}
.feature-card { text-align: center; padding: 24px; }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--primary100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary500);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: var(--black300); line-height: 1.6; }

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white100);
  border: 1px solid var(--white400);
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 50;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.autocomplete-list.show { display: block; }
.autocomplete-item {
  padding: 10px 12px 10px 36px;
  font-size: 0.875rem;
  color: var(--black400);
  cursor: pointer;
  transition: background 0.1s;
}
.autocomplete-item:hover,
.autocomplete-item.selected { background: var(--primary100); color: var(--primary500); }

.section-faq { padding: 48px 0; }
.section-faq .container { display: flex; flex-direction: column; }
.section-faq h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--white400); padding: 16px 0; }
.faq-item summary {
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black500);
}
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--primary500); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { font-size: 0.875rem; color: var(--black300); padding-top: 8px; line-height: 1.6; }

.promo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--success500);
  color: var(--white100);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--black500);
  font-weight: 500;
  cursor: pointer;
}
.nav-dropdown-toggle .chevron {
  transition: transform 0.2s;
}
.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white100);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  min-width: 160px;
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--black500);
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--primary100);
  color: var(--primary500);
}
.nav-btn-login {
  background: var(--primary500);
  color: var(--white100) !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.nav-btn-login:hover {
  background: var(--primary600);
  color: var(--white100) !important;
}
.nav-btn-painel {
  border: 1px solid var(--primary500);
  color: var(--primary500) !important;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.nav-btn-painel:hover {
  background: var(--primary500);
  color: var(--white100) !important;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.section-subtitle {
  font-size: 0.875rem;
  color: var(--black300);
}

.section-ofertas {
  padding: 48px 0;
  background: var(--white100);
}
.ofertas-carousel {
  position: relative;
  display: flex;
  align-items: center;
}
.ofertas-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ofertas-track::-webkit-scrollbar { display: none; }
.oferta-card {
  flex: 0 0 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white100);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.oferta-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.oferta-img {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.oferta-img img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oferta-selo {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 80px;
  height: auto;
}
.oferta-info {
  padding: 12px;
}
.oferta-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black500);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.oferta-price {
  font-size: 0.75rem;
  color: var(--primary500);
  font-weight: 600;
}
.carousel-arrow {
  position: absolute;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white100);
  border: 1px solid var(--white400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-level1);
  transition: all 0.2s;
  color: var(--black500);
}
.carousel-arrow:hover {
  border-color: var(--primary500);
  color: var(--primary500);
}
.carousel-prev { left: -16px; }
.carousel-next { right: -16px; }

.section-promos {
  padding: 0 0 48px;
  background: var(--white100);
}
.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.promo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s;
}
.promo-card:hover { transform: translateY(-2px); }
.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.section-clube {
  padding: 48px 0;
  background: var(--white200);
}
.clube-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, var(--primary500) 0%, var(--tertiary-medium) 100%);
  border-radius: 20px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
  color: var(--white100);
}
.clube-images {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cupom-main {
  width: 129px;
  height: 129px;
}
.cupom-rotate {
  width: 80px;
  height: 80px;
  transform: rotate(-15deg);
  opacity: 0.85;
}
.clube-content {
  flex: 1;
}
.clube-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.clube-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.clube-content p {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 480px;
}
.btn-clube {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: var(--secondary500);
  color: var(--black500);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: background 0.2s;
}
.btn-clube:hover { background: #e6b400; }
.clube-coupon-icon {
  position: absolute;
  right: 32px;
  bottom: 20px;
  opacity: 0.15;
}
.clube-coupon-icon img { width: 96px; }

.section-destinos {
  padding: 48px 0;
  background: var(--white100);
}
.section-destinos h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.section-subtitle-text {
  font-size: 0.875rem;
  color: var(--black300);
  margin-bottom: 24px;
}
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.destino-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  display: block;
}
.destino-card.destino-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  height: 100%;
}
.destino-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.destino-card:hover img { transform: scale(1.05); }
.destino-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
}
.destino-overlay span {
  color: var(--white100);
  font-size: 0.875rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.section-viacoes {
  padding: 48px 0;
  background: var(--white200);
}
.section-viacoes h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.viacoes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.viacao-card {
  background: var(--white100);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  height: 80px;
  transition: box-shadow 0.2s;
}
.viacao-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.viacao-card img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}
.viacao-nome {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black400);
  text-align: center;
}
.viacoes-cta {
  text-align: center;
}
.btn-outline-purple {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  border: 2px solid var(--primary500);
  color: var(--primary500);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.btn-outline-purple:hover {
  background: var(--primary500);
  color: var(--white100);
}

.section-app-download {
  padding: 48px 0;
  background: var(--white100);
}
.app-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, #f0e6ff 0%, #faf5ff 100%);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.app-text {
  flex: 1;
}
.app-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black500);
  margin-bottom: 12px;
}
.app-text p {
  font-size: 0.9375rem;
  color: var(--black300);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 420px;
}
.app-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.app-qr img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--white400);
}
.app-qr-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-qr-text span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black500);
}
.app-qr-text small {
  font-size: 0.75rem;
  color: var(--black300);
}
.app-badges {
  display: flex;
  gap: 12px;
}
.app-badges img { height: 44px; }
.app-image {
  flex-shrink: 0;
}
.app-image img {
  width: 220px;
  height: auto;
}

.section-about {
  padding: 48px 0;
  background: var(--white200);
}
.section-about h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-about p {
  font-size: 0.9375rem;
  color: var(--black300);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 800px;
}
.link-purple {
  color: var(--primary500);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.link-purple:hover { color: var(--primary600); }

.seat-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.seat-modal.active {
  display: flex;
}
.seat-modal-content {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.seat-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #eee;
}
.seat-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
}
.seat-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #666;
  border-radius: 8px;
  transition: background 0.2s;
}
.seat-modal-close:hover {
  background: #f0f0f0;
}
.seat-modal-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.seat-bus-area {
  flex: 1;
  overflow: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bus-shape {
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  padding: 24px 32px 24px 80px;
  position: relative;
  width: fit-content;
  min-width: 500px;
}
.bus-steering {
  position: absolute;
  left: 20px;
  bottom: 24px;
}
.bus-wheel {
  width: 44px;
  height: 44px;
  background: #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #9ca3af;
}
.bus-wheel-inner {
  width: 28px;
  height: 28px;
  border: 3px solid #6b7280;
  border-radius: 50%;
  position: relative;
}
.bus-spoke {
  position: absolute;
  background: #6b7280;
  top: 50%;
  left: 50%;
}
.bus-spoke.s1 { width: 2px; height: 100%; transform: translate(-50%,-50%) rotate(45deg); }
.bus-spoke.s2 { width: 2px; height: 100%; transform: translate(-50%,-50%) rotate(-45deg); }
.bus-spoke.s3 { width: 100%; height: 2px; transform: translate(-50%,-50%); }
.seatmap-bus {
  display: grid;
  grid-template-rows: 38px 38px 16px 38px 38px;
  gap: 4px;
  width: fit-content;
}
.seatmap-item {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  border: 2px solid transparent;
}
.seat-number-label {
  font-size: 10px;
  font-weight: 700;
  font-family: 'Noto Sans', sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seatmap-item.seat-free {
  border-color: #a855f7;
  background: #fff;
  color: #a855f7;
}
.seatmap-item.seat-free:hover {
  background: #faf5ff;
  border-color: #9333ea;
}
.seatmap-item.seat-selected {
  border-color: #f1c40f;
  background: #f1c40f;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(241,196,15,0.3);
}
.seatmap-item.seat-occupied {
  border-color: #d1d5db;
  background: #fff;
  color: #9ca3af;
  cursor: not-allowed;
}
.seat-legend-h {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
}
.seat-legend-item-h {
  display: flex;
  align-items: center;
  gap: 8px;
}
.seat-leg-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seat-leg-box.leg-livre {
  border: 2px solid #a855f7;
  background: #fff;
}
.seat-leg-box.leg-selecionado {
  background: #f1c40f;
}
.seat-leg-box.leg-ocupado {
  border: 2px solid #d1d5db;
  background: #fff;
  color: #9ca3af;
}
.seat-summary-bar {
  border-top: 1px solid #e5e7eb;
  padding: 16px 24px;
  background: #fff;
}
.seat-summary-bar.hidden {
  display: none;
}
.seat-summary-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.seat-summary-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.seat-summary-type {
  font-size: 0.8125rem;
  color: #6b7280;
}
.seat-summary-detail {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.seat-summary-detail span:first-child {
  font-size: 0.875rem;
  color: #374151;
}
.seat-summary-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}
.seat-summary-continue {
  padding: 12px 32px;
  background: #A528FF;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: 'Noto Sans', sans-serif;
  white-space: nowrap;
}
.seat-summary-continue:hover {
  background: #8b1edb;
}
.seat-summary-continue:active {
  transform: scale(0.97);
}
@media (max-width: 768px) {
  .seat-modal { padding: 0; }
  .seat-modal-content { max-width: 100%; max-height: 100vh; border-radius: 0; height: 100vh; }
  .seat-modal-body { flex-direction: column; overflow-y: auto; }
  .seat-bus-area { padding: 16px; overflow: auto; align-items: center; }
  .bus-shape {
    min-width: unset;
    width: fit-content;
    max-width: 100%;
    border-radius: 40px;
    padding: 60px 20px 20px 20px;
  }
  .bus-steering {
    left: 50%;
    top: 14px;
    bottom: auto;
    transform: translateX(-50%);
  }
  .bus-wheel { width: 34px; height: 34px; border-width: 3px; }
  .bus-wheel-inner { width: 22px; height: 22px; border-width: 2px; }
  .seatmap-bus {
    width: fit-content;
  }
  .seatmap-item { width: 36px; height: 36px; }
  .seat-legend-h { justify-content: center; gap: 16px; font-size: 0.8125rem; }
  .seat-leg-box { width: 28px; height: 28px; }
  .seat-summary-bar { padding: 12px 16px; }
  .seat-summary-bar-inner { flex-direction: column; gap: 12px; }
  .seat-summary-continue { width: 100%; text-align: center; }
}

.volta-section {
  margin-top: 48px;
}
.volta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 16px 24px;
  background: var(--primary500);
  border-radius: 12px;
  color: #fff;
}
.volta-header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.volta-header h2 svg {
  fill: #fff;
}
.volta-header .volta-date {
  font-weight: 400;
  font-size: 0.875rem;
  opacity: 0.85;
  margin-left: 8px;
}
.volta-header .results-count {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .search-form, .search-form.five-cols { grid-template-columns: 1fr 1fr; gap: 8px; }
  .search-card .search-form { grid-template-columns: 1fr 1fr; }
  .results-layout { grid-template-columns: 1fr; }
  .filters-sidebar { display: none; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .search-form-header { display: none; }
  .destinos-grid { grid-template-columns: repeat(3, 1fr); }
  .destino-card.destino-large { grid-column: 1 / 3; }
  .viacoes-grid { grid-template-columns: repeat(4, 1fr); }
  .promos-grid { grid-template-columns: repeat(3, 1fr); }
  .clube-card { padding: 32px; gap: 24px; }
  .app-card { padding: 32px; gap: 32px; }
}
@media (max-width: 768px) {
  .search-form, .search-card .search-form { grid-template-columns: 1fr; }
  .invert-btn { display: none; }
  .hero-banner { min-height: 580px; }
  .hero-overlay { min-height: 580px; justify-content: center; padding: 200px 0 16px; }
  .hero-overlay h1 { font-size: 1.25rem; margin-bottom: 16px; }
  .hero-banner-bg .banner-mobile { display: block; width: 100%; height: 100%; }
  .hero-banner-bg .banner-desktop { display: none; }
  .search-card { padding: 20px 16px; border-radius: 12px; }
  .trip-top { flex-direction: column; align-items: flex-start; }
  .trip-company { width: auto; flex-direction: row; align-items: center; gap: 8px; }
  .trip-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .price-block { align-items: flex-start; }
  .routes-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .week-tabs { justify-content: flex-start; }
  .oferta-card { flex: 0 0 160px; }
  .promos-grid { grid-template-columns: 1fr; }
  .clube-card { flex-direction: column; text-align: center; padding: 24px; }
  .clube-content h2 { font-size: 1.25rem; }
  .clube-content p { max-width: 100%; }
  .destinos-grid { grid-template-columns: 1fr 1fr; }
  .destino-card.destino-large { grid-column: 1 / -1; grid-row: auto; height: 200px; }
  .viacoes-grid { grid-template-columns: repeat(3, 1fr); }
  .app-card { flex-direction: column; text-align: center; padding: 24px; }
  .app-text p { max-width: 100%; }
  .app-qr { flex-direction: column; }
  .app-badges { justify-content: center; }
  .app-image img { width: 180px; }
  .section-header { flex-direction: column; gap: 4px; }
  header nav { 
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white100);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    z-index: 101;
    overflow-y: auto;
  }
  .menu-open header nav { display: flex; }
  header nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--white400);
    font-size: 1rem;
    width: 100%;
  }
  header nav .nav-btn-login,
  header nav .nav-btn-painel {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }
  .hamburger { display: flex; }
  .nav-btn-login, .nav-btn-painel { padding: 10px 16px; font-size: 0.875rem; }
  .nav-dropdown { border-bottom: 1px solid var(--white400); }
  .nav-dropdown-toggle { padding: 14px 0; font-size: 1rem; width: 100%; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 8px 20px; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: 10px 0; border: none; font-size: 0.95rem; }
  .footer-links .container { flex-direction: column; gap: 24px; }
  .footer-columns { flex-direction: column; gap: 16px; }
  .footer-col h3 { cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
  .footer-bottom-grid { flex-direction: column; align-items: flex-start; }
  .footer-copyright .container { flex-direction: column; align-items: flex-start; }
}
