/* ============================================================
   YETU EXPRESS — LIGHT FUTURISTIC GLASSMORPHISM OVERRIDES
   v1.19 — Unificado: todos os elementos com o estilo do header
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS — Fonte única de verdade
   ============================================================ */
:root {
    --bg-color: #080a0f;
    --primary-color: #ff7a00;
    --secondary-color: #ffb400;
    --accent-color: #ffd700;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-color: rgba(255, 122, 0, 0.25);

    /* === TOKEN ÚNICO DE VIDRO (igual ao header nav) === */
    --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.08) 100%);
    --glass-blur: blur(20px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.12);
    --glass-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   BASE
   ============================================================ */
body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: transparent !important;
    color: var(--text-main);
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#inicio,
#solucoes,
#destinos,
#aluguer,
#contato {
    scroll-margin-top: 100px;
}

html {
    scrollbar-color: var(--primary-color) rgba(245, 247, 252, 0.6);
    background-color: var(--bg-color);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: rgba(245, 247, 252, 0.6);
}

::-webkit-scrollbar-thumb {
    background: #ff7a00;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c00;
}

/* Slideshow e secções transparentes */
.slideshow-container {
    background-color: var(--bg-color) !important;
}

/* Overlay escuro subtil sobre o fundo (5px blur + tint leve) */
.slide {
    filter: blur(2.8px) !important;
    transform: scale(1.00) !important;
    /* evita bordas brancas do blur */
    -webkit-filter: blur(2.8px) !important;
}

.slideshow-container::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.18) !important;
    /* tint escuro muito subtil */
    z-index: 1 !important;
    display: block !important;
    pointer-events: none !important;
}

section,
.mesh-glow-section,
.particles-interactive-section,
.download-app-section,
#aluguer,
#mapa-rotas,
.digital-ticket-section {
    background: transparent !important;
    background-color: transparent !important;
}

/* ============================================================
   SECTIONS & LAYOUT UNIFICATION
   ============================================================ */
.section-uniforme {
    background: transparent !important;
    padding: 3rem 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
}

/* Ensure no hero pseudo-elements cause visual background differences */
.section-uniforme::before,
.section-uniforme::after {
    display: none !important;
}

/* ============================================================
   VIDRO UNIFICADO — Exactamente igual ao header nav
   Aplicado a TODOS os elementos de superfície
   ============================================================ */
nav,
nav.scrolled,
.glass,
.search-bar,
.search-bar.glass,
.route-card,
.option-item,
.option-item.glass,
.boarding-pass.glass,
.modal-content.glass,
.bottom-nav,
.stats-card,
.map-sidebar,
.map-layout,
.dest-card,
.hotel-card,
.resto-card,
.select-options,
.input-box,
.flatpickr-calendar,
.search-container .search-bar {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    box-shadow: var(--glass-shadow) !important;
}

/* ============================================================
   NAV — border-radius e bordas laterais específicas do header
   ============================================================ */
nav,
nav.scrolled {
    border-top: none !important;
    border-bottom: var(--glass-border) !important;
    border-left: var(--glass-border) !important;
    border-right: var(--glass-border) !important;
    border-radius: 0 0 25px 25px !important;
    padding: 1rem 0 !important;
}

nav .nav-links a {
    color: rgba(255, 255, 255, 0.75) !important;
}

nav .nav-links a:hover,
nav .nav-links a.active {
    color: var(--primary-color) !important;
}

/* ============================================================
   SEARCH BAR — border-radius arredondado (diferente do nav)
   ============================================================ */
.search-bar,
.search-bar.glass,
.search-container .search-bar {
    border-radius: 30px !important;
}

/* Inputs dentro da search bar — campo limpo sobre o vidro */
.search-bar .input-box,
.search-bar.glass .input-box {
    background: rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08) !important;
}

/* Focus state nos campos da search bar */
.search-bar .input-box:focus-within,
.search-bar.glass .input-box:focus-within {
    background: rgba(255, 122, 0, 0.06) !important;
    border-color: rgba(255, 122, 0, 0.65) !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.10), 0 0 14px rgba(255, 122, 0, 0.22) !important;
}

/* ============================================================
   INPUT BOXES — glass + focus state
   ============================================================ */
.input-box {
    transition: var(--transition) !important;
}

.input-box:focus-within {
    border-color: rgba(255, 122, 0, 0.75) !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 0 15px rgba(255, 122, 0, 0.22) !important;
}

/* Inputs e selects dentro de qualquer input-box — sempre transparentes */
.input-box select,
.input-box input,
.custom-select,
.input-box select:focus,
.input-box input:focus {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--text-main) !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* ============================================================
   HOVER — Todos os cards interactivos
   ============================================================ */
.route-card:hover,
.option-item.glass:hover,
.dest-card:hover,
.hotel-card:hover,
.resto-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.12) 100%) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.22), 0 15px 45px rgba(255, 122, 0, 0.22) !important;
}

.route-card:hover {
    transform: translateY(-3px) scale(1.01);
}

.option-item.glass:hover {
    transform: translateY(-5px);
}

/* ============================================================
   FALLBACK — Browsers sem backdrop-filter (Firefox antigo)
   ============================================================ */
@supports not (backdrop-filter: blur(1px)) {

    nav,
    nav.scrolled,
    .glass,
    .search-bar,
    .search-bar.glass,
    .route-card,
    .option-item.glass,
    .boarding-pass.glass,
    .modal-content.glass,
    .bottom-nav,
    .map-sidebar,
    .stats-card,
    .dest-card,
    .hotel-card,
    .resto-card,
    .select-options,
    .input-box,
    .flatpickr-calendar {
        background: rgba(15, 20, 35, 0.92) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* ============================================================
   TIPOGRAFIA — Hero, textos sobre vidro
   ============================================================ */
.hero h1 {
    color: #ffffff !important;
}

.hero p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Texto branco em todos os containers de vidro */
.glass h1,
.glass h2,
.glass h3,
.glass h4,
.glass p,
.glass span,
.glass strong,
.glass small,
.glass label,
.glass li,
.route-card h1,
.route-card h2,
.route-card h3,
.route-card h4,
.route-card p,
.route-card span,
.route-card strong,
.route-card small,
.route-card label,
.route-card li,
.option-item h3,
.option-item p,
.boarding-pass.glass h1,
.boarding-pass.glass h2,
.boarding-pass.glass h3,
.boarding-pass.glass h4,
.boarding-pass.glass p,
.boarding-pass.glass span,
.boarding-pass.glass label,
.modal-content.glass h1,
.modal-content.glass h2,
.modal-content.glass h3,
.modal-content.glass h4,
.modal-content.glass p,
.modal-content.glass span,
.modal-content.glass label,
.search-bar label,
.search-bar span,
.stats-card span,
.stats-card strong,
.map-sidebar h1,
.map-sidebar h2,
.map-sidebar h3,
.map-sidebar h4,
.map-sidebar p,
.map-sidebar span,
.map-sidebar label,
.dest-card h3,
.dest-card p,
.dest-card span,
.hotel-card h3,
.hotel-card p,
.hotel-card span,
.resto-card h3,
.resto-card p,
.resto-card span,
.bottom-nav a,
.bottom-nav span {
    color: var(--text-main) !important;
}

/* Texto muted nas descrições */
.glass .text-muted,
.route-card .text-muted,
.option-item .text-muted,
.map-sidebar small,
.dest-card .text-muted,
.hotel-card .text-muted,
.resto-card .text-muted,
.option-item p,
.card-features span {
    color: var(--text-muted) !important;
}

/* Cores de destaque — laranja */
.price-tag,
.gradient-text,
.bottom-nav-item.active,
.bottom-nav-item.active i,
.rating,
.rating span,
.rating i,
.bp-status,
.card-features i,
.card-cuisine i,
.star-icon {
    color: var(--primary-color) !important;
    fill: var(--primary-color) !important;
}

/* ============================================================
   SECÇÃO ALUGUER — Card com contorno premium
   ============================================================ */
.hire-cta-card {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    border-radius: 28px;
    /* Glassmorphism background */
    background: linear-gradient(135deg,
            rgba(255, 122, 0, 0.07) 0%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 180, 0, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Animated gradient border via outline + box-shadow layering */
    border: 1px solid rgba(255, 122, 0, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 122, 0, 0.10),
        0 0 40px rgba(255, 122, 0, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.hire-cta-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 29px;
    background: linear-gradient(135deg,
            rgba(255, 122, 0, 0.45) 0%,
            rgba(255, 180, 0, 0.20) 40%,
            rgba(255, 215, 0, 0.15) 70%,
            rgba(255, 122, 0, 0.30) 100%);
    z-index: -1;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.hire-cta-card:hover {
    border-color: rgba(255, 122, 0, 0.55);
    box-shadow:
        0 0 0 1px rgba(255, 122, 0, 0.20),
        0 0 60px rgba(255, 122, 0, 0.20),
        0 25px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.hire-cta-card:hover::before {
    opacity: 1;
}

/* ============================================================
   BOTÃO ENTRAR — Pulse laranja, sem rotação
   ============================================================ */
#btn-login-trigger {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 122, 0, 0.05) 100%) !important;
    border: 1px solid rgba(255, 122, 0, 0.35) !important;
    animation: pulse 2s infinite !important;
    box-shadow: none !important;
}

#btn-login-trigger::before,
#btn-login-trigger::after {
    display: none !important;
    animation: none !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }
}

/* ============================================================
   BOTÕES — Orange-glass, igual ao estilo do header
   ============================================================ */
.btn-primary,
.btn-swap,
.btn-search,
.btn-outline,
.btn-card-booking,
.btn-store,
.footer-wa-btn,
.btn-slide {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 122, 0, 0.05) 100%) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: 1px solid rgba(255, 122, 0, 0.35) !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 8px 20px rgba(255, 122, 0, 0.08) !important;
    color: var(--primary-color) !important;
    transition: var(--transition) !important;
}

.btn-primary:hover,
.btn-swap:hover,
.btn-search:hover,
.btn-outline:hover,
.btn-card-booking:hover,
.btn-store:hover,
.footer-wa-btn:hover,
.btn-slide:hover {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.28) 0%, rgba(255, 122, 0, 0.10) 100%) !important;
    border-color: rgba(255, 122, 0, 0.60) !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.20), 0 12px 25px rgba(255, 122, 0, 0.28) !important;
    transform: translateY(-2px) scale(1.02);
}

/* Botão login spinning border */
.btn-spin-border::after {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 122, 0, 0.05) 100%) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-spin-border .btn-content {
    color: var(--primary-color) !important;
}

.btn-spin-border:hover .btn-content {
    color: #ffffff !important;
}

/* ============================================================
   DROPDOWN (select-options)
   ============================================================ */
.select-options,
#map-origin-options {
    background: rgba(10, 15, 26, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

.select-options li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.select-options li:hover,
.select-options li.active {
    background: rgba(255, 122, 0, 0.18) !important;
    color: #ffffff !important;
}

/* ============================================================
   CARDS — Ajustes de tamanho
   ============================================================ */
.route-card {
    transition: var(--transition);
}

/* Uma Solução Completa */
.option-item {
    padding: 1.5rem 1.2rem !important;
}

.option-icon-wrapper {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 96px !important;
    height: 96px !important;
    margin: 0 auto 1.5rem !important;
    position: relative;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.option-item h3 {
    min-height: auto !important;
    margin-bottom: 0.5rem !important;
    font-size: 1.25rem !important;
}

.option-item p {
    min-height: auto !important;
    font-size: 0.95rem !important;
}

.option-item.glass {
    transition: var(--transition);
}

/* ============================================================
   PREMIUM SVG ICON STYLING & MICRO-ANIMATIONS
   ============================================================ */
.premium-card-icon {
    width: 80px !important;
    height: 80px !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: visible;
}

.option-item:hover .premium-card-icon {
    transform: translateY(-5px) scale(1.08);
}

/* Glass reflection shine effect */
.option-item svg path[stroke="#ffffff"] {
    transition: opacity 0.3s ease;
}

/* 1. Radar scan rotation for Search Icon */
.option-item:hover .premium-card-icon circle[stroke-dasharray="4 8"] {
    animation: radarRotate 12s linear infinite;
    transform-origin: 36px 36px;
}

@keyframes radarRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 2. Barcode scan reflection shimmer for Ticket Icon */
.option-item:hover .premium-card-icon circle[stroke="url(#t-accent)"] {
    animation: ticketCheckPulse 1.2s ease-in-out infinite alternate;
    transform-origin: 40px 51px;
}

@keyframes ticketCheckPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(255, 122, 0, 0));
    }

    100% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 4px rgba(255, 122, 0, 0.6));
    }
}

/* 3. Central transit vehicle float & node pulsing for Connected Transport */
.option-item:hover .premium-card-icon rect[stroke="url(#b-stroke)"] {
    animation: vehicleFloat 2s ease-in-out infinite alternate;
    transform-origin: 40px 40px;
}

.option-item:hover .premium-card-icon circle[fill="#ffd700"],
.option-item:hover .premium-card-icon circle[fill="#ffb400"],
.option-item:hover .premium-card-icon circle[fill="#ff7a00"] {
    animation: nodePulse 1.5s ease-in-out infinite alternate;
}

@keyframes vehicleFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-3px);
    }
}

@keyframes nodePulse {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* 4. Shield dashboard rotating protection ring */
.option-item:hover .premium-card-icon circle[stroke-dasharray="3 3"] {
    animation: shieldProtectRotate 8s linear infinite;
    transform-origin: 40px 38px;
}

@keyframes shieldProtectRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Destinos */
.card-image-wrapper {
    height: 170px !important;
}

.card-info {
    padding: 1.20rem !important;
}

.card-info p {
    margin-bottom: 1rem !important;
}

/* Misc card text */
.trip-details strong {
    color: var(--text-main) !important;
}

.company-logo {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(29, 43, 58, 0.06) !important;
}

/* ============================================================
   BILHETE DIGITAL (boarding pass)
   ============================================================ */
.ticket-container-card {
    padding: 3.5rem 3rem !important;
    border-radius: 28px !important;
    border: 1.5px solid rgba(255, 122, 0, 0.28) !important;
    box-shadow: 0 0 40px rgba(255, 122, 0, 0.08), var(--glass-shadow) !important;
    margin-bottom: 2rem;
}

.boarding-pass.glass {
    border: none !important;
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.15), 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    max-width: 330px !important;
    padding: 0.75rem 1rem !important;
}

/* Compact layout overrides to reduce vertical height */
.boarding-pass.glass .bp-header,
.boarding-pass.glass .bp-route,
.boarding-pass.glass .bp-details,
.boarding-pass.glass .bp-divider {
    margin-bottom: 0.5rem !important;
}

.boarding-pass.glass .bp-logo img {
    height: 38px !important;
}

.boarding-pass.glass .bp-city strong {
    font-size: 1.5rem !important;
}

.boarding-pass.glass .bp-qr {
    margin-bottom: 0.4rem !important;
    padding: 0.3rem !important;
}

.boarding-pass.glass .bp-qr svg {
    width: 60px !important;
    height: 60px !important;
}

.boarding-pass.glass .bp-scan-text {
    font-size: 0.7rem !important;
}

.bp-city strong,
.bp-detail-item strong,
.bp-footer {
    color: var(--text-main) !important;
}

.bp-scan-text {
    color: var(--text-muted) !important;
}

.bp-logo img {
    filter: none !important;
}

/* ============================================================
   MAPA INTERACTIVO
   ============================================================ */
.map-sidebar {
    border-right: var(--glass-border) !important;
    border-top: none !important;
    border-left: none !important;
    border-bottom: none !important;
    padding: 1.5rem !important;
}

.stats-card {
    border: var(--glass-border) !important;
}

#google-map {
    min-height: 400px !important;
}

.stat-item span,
.timeline-item span {
    color: var(--text-muted) !important;
}

.timeline-item strong {
    color: var(--text-main) !important;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-content.glass,
.modal-content.glass h1,
.modal-content.glass h2,
.modal-content.glass h3,
.modal-content.glass p,
.modal-content.glass span,
.modal-content.glass label,
.modal-header h3,
.modal-body p {
    color: #ffffff !important;
}

.modal-body input {
    color: var(--text-main) !important;
}

/* ============================================================
   FOOTER PREMIUM — Equal to Header Glass Design
   ============================================================ */
.footer-premium {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border-top: var(--glass-border) !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    box-shadow: var(--glass-shadow) !important;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: auto !important;
    margin-bottom: -50px !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2.2fr 1.2fr 1.2fr 1.6fr !important;
    gap: 1.5rem !important;
    padding: 1.2rem 0 0.8rem !important;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
    max-width: 320px;
    margin: 0;
}

.footer-logo-link img {
    height: 44px !important;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover img {
    transform: scale(1.03);
}

/* Social icons - Premium circular glass design */
.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.25rem;
}

.footer-social a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.footer-social a svg {
    width: 18px !important;
    height: 18px !important;
    stroke: rgba(255, 255, 255, 0.6) !important;
}

.footer-social a:hover {
    background: rgba(255, 122, 0, 0.12) !important;
    border-color: rgba(255, 122, 0, 0.5) !important;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.25) !important;
    transform: translateY(-3px) !important;
}

.footer-social a:hover svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

/* Columns header styling */
.footer-col h4 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-top: 0;
    margin-bottom: 0.6rem !important;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 0.35rem;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 35px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.88rem !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
}

.footer-col ul a:hover {
    color: var(--primary-color) !important;
    transform: translateX(4px);
}

/* Contact information items */
.footer-contact p {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.88rem !important;
    margin: 0 0 0.4rem 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--primary-color) !important;
    width: 16px;
    height: 16px;
}

/* WhatsApp button styling */
.footer-wa-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0.04) 100%) !important;
    border: 1px solid rgba(37, 211, 102, 0.3) !important;
    color: #25d366 !important;
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.footer-wa-btn:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.22) 0%, rgba(37, 211, 102, 0.08) 100%) !important;
    border-color: rgba(37, 211, 102, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 0.6rem 0 40px 0 !important;
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.8rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   FLATPICKR CALENDÁRIO — vidro igual ao header
   ============================================================ */
.flatpickr-calendar {
    border-radius: 16px !important;
    color: #ffffff !important;
    overflow: hidden;
}

.flatpickr-months {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    border-radius: 16px 16px 0 0 !important;
    color: #ffffff !important;
    padding: 0.5rem 0 !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
}

.flatpickr-current-month,
.flatpickr-current-month select,
.flatpickr-current-month input {
    color: #ffffff !important;
}

.flatpickr-weekdays {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

span.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    background: transparent !important;
}

.flatpickr-day {
    color: #ffffff !important;
    border-radius: 8px !important;
    margin: 2px !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: rgba(255, 122, 0, 0.15) !important;
    border-color: transparent !important;
    color: var(--primary-color) !important;
}

.flatpickr-day.today {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.flatpickr-day.today:hover {
    background: rgba(255, 122, 0, 0.15) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3) !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(255, 255, 255, 0.25) !important;
}

/* ============================================================
   BOTTOM NAV MOBILE
   ============================================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(65px + env(safe-area-inset-bottom));
    border-top: var(--glass-border) !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-radius: 20px 20px 0 0 !important;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 9999;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted) !important;
    font-size: 0.68rem;
    font-weight: 600;
    gap: 4px;
    height: 100%;
    flex: 1;
    min-height: 48px;
    transition: var(--transition);
}

.bottom-nav-item i {
    width: 20px;
    height: 20px;
    color: var(--text-muted) !important;
    transition: var(--transition);
}

.bottom-nav-item span {
    color: var(--text-muted) !important;
    transition: var(--transition);
}

.bottom-nav-item:active {
    transform: scale(0.92);
    opacity: 0.65;
}

.bottom-nav-item:hover,
.bottom-nav-item:hover i,
.bottom-nav-item:hover span {
    color: var(--text-main) !important;
}

.bottom-nav-item:hover i {
    transform: translateY(-3px) scale(1.08);
}

.bottom-nav-item.active,
.bottom-nav-item.active i,
.bottom-nav-item.active span {
    color: var(--primary-color) !important;
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
}

/* ============================================================
   MEDIA QUERIES — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem !important;
    }

    nav .nav-links {
        display: none !important;
    }

    #navbar-auth-section {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
    }

    /* Hide only the user greeting text span on mobile */
    #navbar-auth-section>span {
        display: none !important;
    }

    /* Keep btn-content and icon visible */
    #navbar-auth-section .btn-content {
        display: flex !important;
        align-items: center;
        gap: 6px;
    }

    /* Hide button text label on mobile, keep icon only */
    #navbar-auth-section .btn-content>span {
        display: none !important;
    }

    #navbar-auth-section .btn-content i {
        display: block !important;
        width: 18px !important;
        height: 18px !important;
    }

    #navbar-auth-section .btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
        height: 36px !important;
        min-height: unset !important;
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    body {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .footer-premium {
        margin-bottom: -50px !important;
        padding-bottom: 0 !important;
    }

    .whatsapp-float {
        bottom: calc(95px + env(safe-area-inset-bottom)) !important;
    }

    .bottom-nav {
        display: flex;
    }

    /* Redesenho do Footer no Mobile — Layout Limpo em Coluna Única */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 1rem 0 0.8rem !important;
    }

    .footer-brand {
        grid-column: span 2 !important;
        gap: 0.4rem !important;
    }

    .footer-col.footer-contact {
        grid-column: span 2 !important;
    }

    .footer-brand p {
        font-size: 0.82rem !important;
        line-height: 1.6 !important;
        max-width: 100%;
    }

    .footer-logo-link img {
        height: 48px !important;
    }

    .footer-col h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }

    .footer-col ul {
        gap: 0.3rem !important;
    }

    .footer-col ul a,
    .footer-contact p {
        font-size: 0.82rem !important;
    }

    .footer-wa-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 0.8rem !important;
        text-align: center !important;
        padding: 0.6rem 0 calc(60px + env(safe-area-inset-bottom)) !important;
        font-size: 0.76rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    /* ── Tighter section spacing on mobile ── */
    section,
    .section-uniforme,
    .mesh-glow-section,
    .particles-interactive-section,
    .digital-ticket-section,
    .download-app-section,
    #aluguer,
    #mapa-rotas {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .search-bar {
        margin-top: -60px !important;
        border-radius: 20px !important;
        padding: 1.2rem !important;
        gap: 1rem !important;
    }

    .btn-swap {
        margin-top: 0 !important;
        align-self: center !important;
    }

    .btn-search {
        width: 100% !important;
        margin-top: 1rem !important;
        justify-content: center !important;
    }

    .route-card {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 0.8rem !important;
        padding: 1rem !important;
    }

    .price-section {
        text-align: center !important;
    }

    #navbar-auth-section .btn-spin-border {
        width: auto !important;
        padding: 0.5rem 1.1rem !important;
        font-size: 0.85rem !important;
        height: 38px !important;
        min-height: unset !important;
        border-radius: 10px !important;
        display: inline-flex !important;
        justify-content: center !important;
    }

    /* Reduce h2 margin on mobile */
    h2[style*="margin-bottom: 3rem"],
    h2[style*="margin-bottom: 3.5rem"] {
        margin-bottom: 1.8rem !important;
    }

    /* Icon size on mobile */
    .premium-card-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .option-icon-wrapper {
        width: 80px !important;
        height: 80px !important;
    }

    /* Hire CTA card — mobile padding */
    .hire-cta-card {
        padding: 2rem 1.4rem !important;
        border-radius: 20px !important;
        margin: 0 0.5rem !important;
    }

    .hire-cta-card::before {
        border-radius: 21px !important;
    }

    /* Ticket showcase card — mobile padding */
    .ticket-container-card {
        padding: 2rem 1.2rem !important;
        border-radius: 20px !important;
        margin: 0 0.5rem !important;
    }

    /* Boarding pass responsive adjustments */
    .boarding-pass.glass {
        width: 100% !important;
        max-width: 320px !important;
        transform: none !important;
        /* Remove 3D rotation on mobile to prevent overflow */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
        margin: 0 auto !important;
    }

    /* Hide the digital ticket section entirely on mobile devices */
    #bilhetes {
        display: none !important;
    }

    .hide-on-mobile {
        display: none !important;
    }

    /* Force visibility of reveal elements on mobile to guarantee texts and ticket appear */
    .reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Styling for Search Result Company Filter Dropdown & Options in Light Theme */
#company-filter {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
}

#company-filter option {
    background-color: #0f172a !important;
    color: #ffffff !important;
    font-size: 0.9rem !important;
    padding: 12px 16px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Force static background image hero_opt.jpg */
html {
    background-image: radial-gradient(circle at center, rgba(8, 10, 15, 0.25) 0%, rgba(8, 10, 15, 0.45) 100%), url('../assets/hero_opt.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.slideshow-container,
.auth-slideshow {
    background: transparent !important;
}

.slideshow-container .slide,
.auth-slideshow .slide {
    display: none !important;
}