:root {
    --blue: #0052a5;
    --blue-light: #1a72d4;
    --blue-dark: #003580;
    --blue-glow: rgba(0, 82, 165, 0.35);
    --yellow: #ffd600;
    --dark: #070c14;
    --dark2: #0c1420;
    --dark3: #101a28;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f0ede8;
    --muted: #8898b0;
    --card-bg: rgba(0, 82, 165, 0.05);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    pointer-events: none;
    z-index: 9999;
}

/* ---- Globais ---- */
.fg-amarelo {
    color: var(--yellow);
}

/* ---- NAV ---- */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.nav-mgp-logo {
    height: 22px;
    width: auto;
    display: block;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 5vw;
    height: 64px;
    background: rgba(7, 12, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-logo img {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-links li a {
    padding: 0 18px;
}
.nav-sep {
    color: rgba(240, 237, 232, 0.2);
    font-size: 0.9rem;
    line-height: 1;
    user-select: none;
}
.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--blue-light);
}

/* ---- HERO ---- */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 5vw 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 82, 165, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 214, 0, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #070c14 0%, #0c1420 100%);
    z-index: 0;
}
.speed-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.speed-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 165, 0.4), transparent);
    transform-origin: left center;
    animation: speedLine 3s linear infinite;
}
@keyframes speedLine {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to {
        transform: scaleX(1);
        opacity: 0;
    }
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.6s 0.3s forwards;
}
.hero-logo-img {
    max-width: min(600px, 85vw);
    height: auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
    filter: brightness(1.15) drop-shadow(0 0 30px rgba(0, 82, 165, 0.4));
}
.hero-location {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--muted);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.7s 0.7s forwards;
}
.alert-banner {
    margin: 40px auto 0;
    max-width: 700px;
    padding: 18px 28px;
    border: 1px solid rgba(0, 82, 165, 0.5);
    border-left: 4px solid var(--blue);
    background: rgba(0, 82, 165, 0.08);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.7s 0.9s forwards;
}
.alert-banner strong {
    color: var(--blue-light);
}

.countdown {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.7s 1.1s forwards;
}
.count-block {
    text-align: center;
    min-width: 70px;
}
.count-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--text);
    display: block;
}
.count-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}
.count-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--blue-light);
    align-self: flex-start;
    padding-top: 4px;
}
.lang-strip {
    margin-top: 48px;
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.7s 1.3s forwards;
}
.lang-item {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(0, 82, 165, 0.06);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.lang-item:last-child {
    border-right: none;
}
.lang-item .flag {
    font-size: 1.2rem;
}
.lang-item .go {
    color: var(--yellow);
}
.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 48px;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.7s 1.5s forwards;
}
.cta-btn {
    padding: 16px 12px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}
.cta-btn:hover {
    border-color: var(--blue);
    background: rgba(0, 82, 165, 0.15);
    color: #fff;
    transform: translateY(-2px);
}
.cta-btn.primary {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.cta-btn.primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

/* ---- HERO HEADLINE & IMAGE ---- */
.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
    margin-bottom: 4px;
}
.hero-headline .rmtc-word {
    color: var(--yellow);
}
.hero-headline .motogp-word {
    color: var(--blue-light);
}
.hero-desc {
    max-width: 720px;
    text-align: center;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 500;
    line-height: 1.7;
    color: rgba(240, 237, 232, 0.75);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.7s 0.65s forwards;
    margin-top: 20px;
    padding: 0 16px;
}
.hero-main-img {
    width: min(900px, 92vw);
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 82, 165, 0.18);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
    margin-top: 8px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- SECTIONS ---- */
section {
    padding: 80px 5vw;
}
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.section-sub {
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 48px;
}
.divider {
    width: 60px;
    height: 3px;
    background: var(--blue);
    margin: 20px 0 40px;
}

/* ---- LINES SECTION ---- */
#como-chegar {
    background: var(--dark2);
}
.lines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.line-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    background: var(--card-bg);
    transition: all 0.25s;
}
.line-card:hover {
    border-color: rgba(0, 82, 165, 0.5);
    transform: translateY(-3px);
    background: rgba(0, 82, 165, 0.08);
}
.line-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--blue);
    border-radius: 50%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.line-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.line-detail {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}
.line-detail strong {
    color: var(--text);
}

.terminals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
}
.terminal-card {
    padding: 28px;
    border: 1px solid var(--yellow);
    border-radius: 8px;
    background: rgba(255, 214, 0, 0.03);
}
.terminal-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 12px;
}
.terminal-detail {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
}
.terminal-detail strong {
    color: var(--text);
    font-size: 1.1rem;
}

.schedule-strip {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 32px;
}
.sched-item {
    flex: 1;
    padding: 20px;
    border-right: 1px solid var(--border);
    text-align: center;
}
.sched-item:last-child {
    border-right: none;
}
.sched-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--blue-light);
}
.sched-lbl {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ---- BOLSOES ---- */
#bolsoes {
    background: var(--dark);
}
.bolsao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.bolsao-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}
.bolsao-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 82, 165, 0.2);
}
.bolsao-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    background: var(--dark3);
}
.bolsao-body {
    padding: 20px;
}
.bolsao-code {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--blue-light);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.bolsao-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.bolsao-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.bstat {
    display: flex;
    flex-direction: column;
}
.bstat-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}
.bstat-lbl {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.bolsao-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--blue);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-light);
    margin-bottom: 12px;
}
.maps-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
}
.maps-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ---- LINHA HOTELEIRA ---- */
#hoteleira {
    background: var(--dark3);
}
.hotel-banner {
    border: 1px solid var(--border);
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    padding: 28px 32px;
    background: rgba(255, 214, 0, 0.03);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hotel-icon {
    font-size: 2.5rem;
}
.hotel-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
}
.hotel-banner strong {
    color: var(--yellow);
}
.route-map {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--dark2);
}
.route-header {
    background: var(--yellow);
    color: #000;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.route-stops {
    padding: 24px;
}
.stop {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.stop:last-child {
    border-bottom: none;
}
.stop-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    margin-top: 4px;
    flex-shrink: 0;
}
.stop-dot.active {
    background: var(--yellow);
}
.stop-dot.end {
    background: var(--blue);
    border-color: var(--blue);
}
.stop-info {
    font-size: 0.95rem;
    line-height: 1.4;
}
.stop-info small {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ---- PORTOES ---- */
#portoes {
    background: var(--dark2);
}
.portao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.portao-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    background: var(--card-bg);
    transition: all 0.25s;
}
.portao-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}
.portao-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.portao-type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--blue-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.portao-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}
.portao-info {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
}
.portao-info strong {
    color: var(--text);
    font-size: 1.2rem;
}
.portao-note {
    margin-top: 20px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 214, 0, 0.3);
    border-radius: 6px;
    background: rgba(255, 214, 0, 0.04);
    font-size: 0.9rem;
    color: var(--yellow);
    font-weight: 600;
}

/* ---- VACUO ---- */
#vacuo {
    background: var(--dark);
}
.vacuo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.checkpoints {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.checkpoint {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: var(--card-bg);
    transition: all 0.25s;
}
.checkpoint:hover {
    border-color: var(--blue);
    background: rgba(0, 82, 165, 0.08);
}
.checkpoint-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--blue-light);
}
.checkpoint-label {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 4px;
}
.access-list {
    list-style: none;
}
.access-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.access-list li:last-child {
    border-bottom: none;
}
.access-list li .ico {
    font-size: 1.3rem;
}
.access-list li.allowed {
    color: #4caf50;
}
.access-list li.blocked {
    color: #ef5350;
}
.schedule-times {
    margin-top: 24px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card-bg);
}
.sched-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.sched-row:last-child {
    border-bottom: none;
}
.sched-row .time {
    color: var(--yellow);
    font-weight: 700;
}

/* ---- CARTAO ---- */
#cartao {
    background: var(--dark3);
}
.cartao-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.cartao-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 82, 165, 0.2);
}
.cartao-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.cartao-info-list {
    list-style: none;
}
.cartao-info-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
}
.cartao-info-list li:last-child {
    border-bottom: none;
}
.cartao-info-list li .ico {
    font-size: 1.3rem;
}
.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #4caf50;
    letter-spacing: 1px;
}

/* ---- FAQ ---- */
#faq {
    background: var(--dark2);
}
.lang-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}
.lang-tab {
    padding: 10px 24px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    color: var(--muted);
    border: none;
    border-right: 1px solid var(--border);
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.2s;
}
.lang-tab:last-child {
    border-right: none;
}
.lang-tab.active {
    background: var(--blue);
    color: #fff;
}
.faq-list {
    display: none;
}
.faq-list.active {
    display: block;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: var(--card-bg);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-q:hover {
    background: rgba(0, 82, 165, 0.1);
}
.faq-q .faq-arrow {
    color: var(--blue-light);
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s;
}
.faq-q.open .arrow {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s;
    padding: 0 24px;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}
.faq-a.open {
    max-height: fit-content;
    padding: 16px 24px 20px;
}
.faq-a strong {
    color: var(--yellow);
}
.faq-a p {
    margin-bottom: 8px;
}

/* ---- FOOTER ---- */
footer {
    background: #040810;
    border-top: 1px solid var(--border);
    padding: 56px 5vw;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.footer-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-logos img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
}
.footer-logos .sep {
    width: 1px;
    height: 48px;
    background: var(--border);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--text);
}
.footer-sep {
    color: rgba(240, 237, 232, 0.3);
    margin: 0 6px;
}
.footer-note {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
}

.app-cta {
    margin: 48px auto 0;
    max-width: 600px;
    padding: 28px 32px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--card-bg);
    text-align: center;
}
.app-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.app-cta p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 20px;
}

/* ---- LANG SWITCHER NAV ---- */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.nav-lang-btn {
    padding: 6px 10px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--border);
    color: var(--muted);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}
.nav-lang-btn:last-child {
    border-right: none;
}
.nav-lang-btn.active {
    background: var(--blue);
    color: #fff;
}
.nav-lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

/* ── INFO GERAL ── */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}
.info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.info-card.info-blocked {
    border-left: 4px solid #ef5350;
}
.info-card.info-blocked h3 {
    color: #ef5350;
}
.info-card.info-allowed {
    border-left: 4px solid #66bb6a;
}
.info-card.info-allowed h3 {
    color: #66bb6a;
}
.info-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.info-tip {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(0, 82, 165, 0.1);
    border: 1px solid rgba(0, 82, 165, 0.3);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
}
.tip-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.parada-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}
.parada-list-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 18px 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 214, 0, 0.25);
}
.parada-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}
.parada-num {
    background: var(--blue);
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ── CR ACCORDION ── */
.cr-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}
.cr-acc-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--yellow);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.cr-acc-item:hover {
    border-color: var(--blue);
    border-left-color: var(--blue);
}
.cr-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.cr-acc-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 24px;
    overflow: hidden;
    text-align: center;
}
.cr-acc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--text);
    flex: 1;
}
.cr-acc-arrow {
    font-size: 0.8rem;
    color: var(--yellow);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.cr-acc-item.open .cr-acc-arrow {
    transform: rotate(180deg);
}
.cr-acc-body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s;
    padding: 0 22px;
}
.cr-acc-item.open .cr-acc-body {
    max-height: 1000px;
    padding: 0 22px 20px;
}
.cr-acc-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.cr-map-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mapa-portoes {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
.mapa-caption {
    font-size: 0.75rem;
    color: rgba(240, 237, 232, 0.4);
    line-height: 1.55;
    margin: 0;
}

/* ── LINHAS ── */
.linhas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
.linha-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s;
}
.linha-card:hover {
    border-color: var(--blue);
}
.linha-card-destaque {
    border-left: 4px solid var(--yellow);
}
.linha-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.linha-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    background: var(--blue);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    flex-shrink: 0;
}
.linha-nome {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2px;
}
.linha-horario {
    font-size: 0.78rem;
    color: var(--yellow);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.linha-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 10px;
}
.linha-obs {
    font-size: 0.82rem;
    color: rgba(240, 237, 232, 0.5);
    line-height: 1.5;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 10px;
}
/* ── EMBARQUES ── */
.embarque-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.embarque-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.embarque-card.embarque-destaque {
    border-left: 4px solid var(--yellow);
}
.embarque-linha-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--blue-light);
}
.embarque-nome {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
}
.embarque-tipo {
    font-size: 0.8rem;
    color: var(--yellow);
    font-weight: 600;
}
.embarque-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    flex: 1;
}
/* ── COMO PAGAR ── */
.pagar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.pagar-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}
.pagar-card.pagar-destaque {
    border-left: 4px solid var(--blue-light);
}
.pagar-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.pagar-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 14px;
}
.pagar-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pagar-list li {
    font-size: 0.9rem;
    color: var(--muted);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}

/* ── LINHAS ACCORDION ── */
.linhas-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.la-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-bg);
    transition: border-color 0.2s;
}
.la-item:hover {
    border-color: var(--blue);
}
.la-item {
    border-left: 4px solid var(--yellow);
    transition: border-color 0.2s;
}
.la-item:hover {
    border-left-color: var(--blue);
}
.la-item.open {
    border-color: var(--blue-light);
}
.la-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 16px;
    transition: background 0.2s;
}
.la-header:hover {
    background: rgba(0, 82, 165, 0.08);
}
.la-item.open .la-header {
    background: rgba(0, 82, 165, 0.12);
}
.la-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.la-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.la-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    background: var(--blue);
    color: white;
    padding: 5px 14px;
    border-radius: 6px;
    flex-shrink: 0;
}
.la-nome {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
}
.la-horario {
    font-size: 0.8rem;
    color: var(--yellow);
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.la-arrow {
    font-size: 0.8rem;
    color: var(--muted);
    transition: transform 0.3s;
    display: inline-block;
}
.la-item.open .la-arrow {
    transform: rotate(180deg);
    color: var(--blue-light);
}
.la-body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.3s;
    padding: 0 24px;
}

.la-btn-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}
.la-info-origem .la-info-label {
    color: var(--blue-light);
}

.la-body {
    display: flex;
    flex-direction: column;
}

.la-item.open .la-body {
    max-height: 2000px;
    padding: 0 24px 20px;
}
.la-item .la-maps-btn-new {
    display: none;
    align-self: flex-end;
}
.la-item.open .la-maps-btn-new {
    display: inline-flex;
    margin-left: auto;
}

/* ── INFO INTRO ── */
.info-intro {
    margin-top: 28px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.info-intro-text {
    font-size: 0.95rem;
    color: rgba(240, 237, 232, 0.75);
    line-height: 1.75;
    margin: 0;
}
.info-intro-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--yellow);
    margin: 0;
}
.info-intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 3px solid var(--blue);
    padding-left: 20px;
}
.info-intro-list li {
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.7);
    line-height: 1.6;
    position: relative;
}
.info-intro-list li::before {
    content: '▸';
    color: var(--blue-light);
    margin-right: 8px;
}
.info-intro-list li strong {
    color: var(--text);
}
.info-intro-highlight {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    background: rgba(0, 140, 255, 0.07);
    border: 1px solid rgba(0, 140, 255, 0.2);
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0;
}
.info-intro-highlight strong {
    color: var(--yellow);
}

/* ── COMO PAGAR V3 ── */
.pagar-cards-v3 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}
.pagar-card-v3 {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-top: 4px solid var(--yellow);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.pagar-card-v3:hover {
    border-color: var(--blue);
    border-top-color: var(--blue);
}
.pagar-card-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}
.pagar-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text);
    margin: 0 0 4px;
}
.pagar-card-sub {
    font-size: 0.75rem;
    color: var(--blue-light);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 0;
    opacity: 0.8;
}
.pagar-card-table {
    display: flex;
    flex-direction: column;
}
.pagar-table-head {
    display: grid;
    grid-template-columns: 2fr 1.2fr 2fr 2.5fr;
    gap: 0;
    padding: 10px 24px;
    background: rgba(0, 140, 255, 0.07);
    border-bottom: 1px solid var(--border);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--blue-light);
}
.pagar-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 2fr 2.5fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.pagar-row:last-child {
    border-bottom: none;
}
.pagar-row:hover {
    background: rgba(255, 255, 255, 0.03);
}
.pagar-row-destaque {
    background: rgba(0, 140, 255, 0.05);
}
.pagar-row-left,
.pagar-row-right {
    display: contents;
}
.pagar-produto,
.pagar-valor,
.pagar-como,
.pagar-caract,
.pagar-forma {
    padding: 13px 14px 13px 24px;
    font-size: 0.82rem;
    line-height: 1.45;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
}
.pagar-caract {
    border-right: none;
    padding-right: 20px;
}
.pagar-produto {
    font-weight: 700;
    color: var(--text);
}
.pagar-valor {
    color: var(--yellow);
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
}
.pagar-como {
    color: rgba(240, 237, 232, 0.7);
}
.pagar-caract {
    color: rgba(240, 237, 232, 0.5);
    font-size: 0.77rem;
}

/* emb info rows — single column */
.emb-info-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.emb-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 12px;
    border-bottom: 1px solid var(--border);
    gap: 10px;
}
.emb-info-row:last-child {
    border-bottom: none;
}
.emb-info-label {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-light);
    white-space: nowrap;
    flex-shrink: 0;
}
.emb-info-value {
    font-size: 0.8rem;
    color: var(--text);
    text-align: right;
    line-height: 1.35;
}

/* ── EMBARQUE CARDS v4 ── */
.emb-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}
.emb-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.emb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--blue);
}
.emb-card {
    border-top: 4px solid var(--yellow);
}

/* Name band — colored header before image */
.emb-card-nameband {
    background: linear-gradient(135deg, #0a1628 0%, #0d2040 100%);
    padding: 16px 18px 14px;
    position: relative;
    border-bottom: 1px solid rgba(0, 140, 255, 0.2);
}

.emb-card-dist-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--yellow);
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 2px 10px;
    border-radius: 20px;
}
.emb-card-nome {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.15;
    padding-right: 70px;
}
.emb-card-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Image */
.emb-card-img-wrap {
    flex-shrink: 0;
}
.emb-card-img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
}

/* Body */
.emb-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Linhas badge — highlighted */
.emb-linhas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 140, 255, 0.12);
    border: 1px solid rgba(0, 140, 255, 0.35);
    border-radius: 6px;
    padding: 7px 14px;
}
.emb-linhas-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    opacity: 0.7;
}
.emb-linhas-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--blue-light);
}

/* Info grid */
.emb-card-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.emb-card-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}
.emb-card-item:last-child {
    border-bottom: none;
}
.emb-card-label {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-light);
    white-space: nowrap;
    flex-shrink: 0;
}
.emb-card-value {
    font-size: 0.8rem;
    color: var(--text);
    text-align: right;
    line-height: 1.3;
}
.emb-card-obs {
    font-size: 0.77rem;
    color: rgba(240, 237, 232, 0.45);
    line-height: 1.5;
    margin: 0;
}
.emb-card .la-maps-btn-new {
    margin-top: auto;
    align-self: flex-start;
}

.la-info-full {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.parada-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.parada-pill {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(0, 140, 255, 0.1);
    border: 1px solid rgba(0, 140, 255, 0.25);
    color: var(--blue-light);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.parada-pill:hover {
    background: rgba(0, 217, 255, 0.705);
    border-color: rgba(0, 140, 255, 0.35);
    color: var(--blue);
}

/* ── EMBARQUE IMAGE ── */
.emb-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    display: block;
}

/* ── MAPS BUTTON NEW ── */
.la-maps-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 9px 18px 9px 14px;
    background: transparent;
    border: 1px solid rgba(240, 237, 232, 0.2);
    color: var(--text);
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}
.la-maps-btn-new:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255, 204, 0, 0.05);
}
.la-maps-btn-new::before {
    content: '📍';
    font-size: 1rem;
    line-height: 1;
}

.la-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--blue-light);
    color: var(--blue-light);
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
}
.la-maps-btn:hover {
    background: var(--blue-light);
    color: #000;
}

/* ── LA INFO GRID ── */
.la-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.la-info-item {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.la-info-item:nth-child(even) {
    border-right: none;
}
.la-info-item:nth-last-child(-n + 2) {
    border-bottom: none;
}
.la-info-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 4px;
}
.la-info-value {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
}

.la-itinerary {
    display: block;
    font-size: 0.78rem;
    color: var(--blue-light);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 3px;
    opacity: 0.85;
}
.la-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
}
.la-obs {
    font-size: 0.87rem;
    color: rgba(240, 237, 232, 0.55);
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

@media (max-width: 960px) {
    .emb-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
    }
    .terminals {
        grid-template-columns: 1fr;
    }
    .portao-grid {
        grid-template-columns: 1fr;
    }
    .vacuo-layout {
        grid-template-columns: 1fr;
    }
    .cartao-layout {
        grid-template-columns: 1fr;
    }
    .lang-strip {
        flex-direction: column;
    }
    .lang-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .info-grid,
    .chegada-retorno,
    .linhas-grid,
    .pagar-grid {
        grid-template-columns: 1fr;
    }
    .embarque-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pagar-table-head {
        display: none;
    }
    .pagar-row {
        grid-template-columns: 1fr 1fr;
    }
    .pagar-produto {
        border-right: none;
    }
    .pagar-caract {
        border-right: none;
    }
}

@media (max-width: 500px) {
    .nav-logo-text {
        display: none;
    }
    .nav-lang-btn > span {
        display: none;
    }
    .parada-item {
        flex-direction: column;
        align-items: start;
    }
    .cta-grid {
        grid-template-columns: 1fr;
    }
    .embarque-grid {
        grid-template-columns: 1fr;
    }
    .la-info-grid {
        grid-template-columns: 1fr;
    }
    .la-info-item {
        border-right: none;
    }
    .la-info-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }
    .la-info-item:last-child {
        border-bottom: none;
    }
    .la-header {
        padding: 14px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .la-horario {
        display: none;
    }
    .la-item.open > .la-header {
        margin-bottom: 16px;
    }
    .la-left {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        max-width: calc(100% - 30px);
    }
    .emb-cards-grid {
        grid-template-columns: 1fr;
    }
    .pagar-como,
    .pagar-caract {
        border-top: 1px solid var(--border);
    }
    .pagar-valor {
        border-right: none;
    }
}

/* ---- MOBILE HAMBURGER MENU ---- */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
}

.nav-lang-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: block;
    }
    .nav-links {
        display: flex;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(7, 12, 20, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        padding: 20px;
        box-sizing: border-box;
        border-top: 1px solid var(--border);
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-links li {
        margin: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 20px;
        display: block;
        text-align: center;
    }
    .nav-sep {
        display: none;
    }
    .nav-lang-mobile {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }
}

/* ---- ROUTE MAP LIGHTBOX ---- */
.map-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2000;
}
.map-lightbox.open {
    display: flex;
}
.map-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}
.map-lightbox__panel {
    position: relative;
    width: min(900px, 100%);
    height: min(600px, 85vh);
    background: rgba(15, 18, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
.map-lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 2;
}
.map-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.15);
}
.map-lightbox__map {
    width: 100%;
    height: 100%;
}
