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

:root {
    --bg-color: #080a0f;
    --primary-color: #ff7a00;
    --secondary-color: #ffb400;
    --accent-color: #ffd700;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Premium Thin Orange Scrollbar */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: rgba(8, 10, 15, 0.8);
}

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

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

/* Firefox compatibility */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(8, 10, 15, 0.8);
    background-color: var(--bg-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Glassmorphism Utility */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 3rem 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.slideshow-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.slideshow-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(8, 10, 15, 0.12) 0%, rgba(5, 7, 12, 0.3) 100%);
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(8, 10, 15, 0.05) 0%, rgba(8, 10, 15, 0.15) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin-top: 5%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-top: 4rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

/* Horizontal Search Bar - Lowered Position */
.search-container {
    width: 100%;
    margin-top: 5rem;
    z-index: 5;
    position: relative;
}

.search-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.search-field {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-field label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 0.5rem;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(8, 10, 15, 0.8);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.input-box:focus-within {
    border-color: var(--primary-color);
    background: rgba(8, 10, 15, 0.95);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.25);
}

.input-box select,
.input-box input,
.custom-select {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.8rem 1rem 0.8rem 3rem;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-height: 46px;
    display: flex;
    align-items: center;
}

/* Custom Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    z-index: 10;
}

.select-options {
    position: absolute;
    bottom: calc(100% + 10px);
    top: auto;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 0.5rem;
    max-height: 259px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
}

#map-origin-options {
    top: calc(100% + 10px);
    bottom: auto;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-10px);
}

.custom-select-wrapper.open #map-origin-options {
    transform: translateY(0);
}

/* Custom Flatpickr Translucent Styling */
.flatpickr-calendar {
    background: rgba(8, 10, 15, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    border-radius: 16px !important;
    overflow: hidden;
    /* To ensure the orange header is rounded */
}

/* Orange Flatpickr Header */
.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    background: var(--primary-color) !important;
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-current-month .numInputWrapper span.arrowDown {
    background: transparent !important;
    color: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option {
    background: #0f172a !important;
    color: #fff !important;
}

.flatpickr-current-month .numInputWrapper input.cur-year {
    color: #fff !important;
    background: transparent !important;
}

.flatpickr-current-month .numInputWrapper input.cur-year:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    outline: none !important;
}

.flatpickr-weekdays {
    background: var(--primary-color) !important;
}

span.flatpickr-weekday {
    background: var(--primary-color) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

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

.flatpickr-calendar::before,
.flatpickr-calendar::after {
    display: none !important;
}

/* Spinning Border Button */
.btn-spin-border {
    position: relative;
    background: transparent;
    color: var(--text-main);
    border: none;
    border-radius: 12px;
    padding: 0.9rem 1.8rem;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.btn-spin-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 40%, var(--primary-color) 70%, var(--secondary-color) 90%, var(--accent-color) 100%);
    animation: spin-conic 3s linear infinite;
    z-index: 0;
}

.btn-spin-border::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: rgba(10, 14, 23, 0.94);
    backdrop-filter: blur(10px);
    border-radius: 11px;
    z-index: 1;
    transition: var(--transition);
}

.btn-spin-border:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4), 0 0 30px rgba(255, 180, 0, 0.2);
}

.btn-spin-border:hover::after {
    background: rgba(15, 22, 36, 0.88);
}

.btn-spin-border:hover::before {
    animation-duration: 1.2s; /* Speed up spin dynamically on hover */
}

.btn-spin-border .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    transition: var(--transition);
}

.btn-spin-border .btn-content i {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-spin-border:hover .btn-content i {
    color: var(--accent-color);
    transform: rotate(-10deg) scale(1.15);
}

@keyframes spin-conic {
    100% {
        transform: rotate(360deg);
    }
}

.select-options::-webkit-scrollbar {
    width: 6px;
}

.select-options::-webkit-scrollbar-track {
    background: transparent;
}

.select-options::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.high-z-index {
    z-index: 999 !important;
}

.custom-select-wrapper.open .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-options li {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.select-options li:hover,
.select-options li.active {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary-color);
}

/* Custom Arrow for Select */
.custom-select-wrapper::after {
    content: '\25BC';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--primary-color);
    pointer-events: none;
    transition: var(--transition);
    z-index: 3;
}

.custom-select-wrapper.open::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Date Picker Customization */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 5;
}

.input-box i {
    position: absolute;
    left: calc(1.25rem + 4px);
    font-size: 1.1rem;
    color: var(--primary-color);
    z-index: 4;
    pointer-events: none;
}

.input-box select:focus,
.input-box input:focus {
    border-color: var(--primary-color);
    background: rgba(8, 10, 15, 0.9);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
}

.btn-swap {
    background: var(--primary-color);
    color: var(--bg-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 10px 15px rgba(255, 122, 0, 0.2);
}

.btn-swap:hover {
    transform: rotate(180deg) scale(1.1);
}

.btn-search {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    align-self: flex-end;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
}

/* Results Container */
.results-container {
    margin-top: 3rem;
    margin-bottom: 6rem;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    opacity: 0;
    transform: translateY(30px);
}

.results-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.route-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 180px;
    align-items: center;
    padding: 1rem 1.8rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    gap: 1.2rem;
    text-align: left;
}

.route-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.company-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.company-logo {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    overflow: hidden;
    flex-shrink: 0;
}

.company-logo:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.trip-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trip-details span {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trip-details strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

.price-section {
    text-align: right;
}

.price-tag {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--accent-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 222, 195, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-main);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--glass-border);
    border-color: var(--primary-color);
}

/* Interactive Showcase Layout V2 - Horizontal Edge-to-Edge with BG Canvas */
.particles-interactive-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    /* Fully transparent background so the background slideshow images are completely visible in 100% clarity */
    background: transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.section-particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

.particles-interactive-section .relative-content {
    position: relative;
    z-index: 5; /* Forces selection of text and cursor trigger hover */
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

/* Horizontal Options Grid Container (Options placed in the same row/line) */
.options-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    transition: var(--transition);
}

.option-item.glass {
    background: var(--card-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: none !important;
}

.option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 3rem 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    user-select: text;
    position: relative;
    border-radius: 30px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
}

.option-item:hover,
.option-item.active {
    border-color: rgba(255, 122, 0, 0.8) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px rgba(255, 122, 0, 0.15) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-radius: 30px !important;
}

.option-item:hover .option-text,
.option-item.active .option-text {
    transform: translateY(8px);
}

.option-icon-wrapper {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    box-shadow: none;
}

.option-item:hover .option-icon-wrapper,
.option-item.active .option-icon-wrapper {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: scale(1.08);
}

.option-icon-wrapper i {
    display: none;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
    text-align: center;
    transition: var(--transition);
}

.option-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-main) !important;
    font-weight: 700;
    -webkit-text-fill-color: initial !important;
    background: none !important;
    background-clip: initial !important;
    transition: var(--transition);
    min-height: 3.6rem; /* keeps perfect line alignment across all title blocks */
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-item:hover h3,
.option-item.active h3 {
    color: var(--primary-color) !important; /* premium glowing orange hover text to match constellation */
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.option-item p {
    color: var(--text-muted) !important; /* pure white, removing off-white / dirty gray shades */
    font-size: 1.1rem;
    line-height: 1.6;
    transition: var(--transition);
    margin: 0;
    min-height: 4.8rem; /* guarantees identical height and line wrap layout for all descriptions */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.option-item:hover p,
.option-item.active p {
    color: #ffffff !important; /* stays pure white under selection */
}

/* Responsiveness for Options Row */
@media (max-width: 992px) {
    .options-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

@media (max-width: 600px) {
    .options-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .option-item {
        padding: 2.2rem 1.5rem;
    }
}

#antigravity-canvas {
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

.canvas-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 10, 15, 0.8);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.canvas-hint i {
    color: var(--primary-color);
    animation: pulse-hint 1.5s infinite;
}

@keyframes pulse-hint {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ==========================================
   DIGITAL TICKET SECTION
   ========================================== */
.digital-ticket-section {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(255, 122, 0, 0.03), transparent);
}

#aluguer .boarding-pass.glass {
    max-width: 540px !important;
}

#aluguer .container-fluid {
    max-width: 1450px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #aluguer .boarding-pass.glass {
        max-width: 100% !important;
    }
}

.ticket-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .ticket-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ticket-features {
        align-items: center;
    }
}

.boarding-pass {
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(255, 122, 0, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.boarding-pass:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.boarding-pass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.bp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.bp-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.bp-logo span {
    color: var(--primary-color);
}

.bp-status {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bp-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.bp-city {
    display: flex;
    flex-direction: column;
}

.text-right {
    text-align: right;
}

.bp-city span {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.bp-city strong {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.bp-city small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.bp-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.bp-detail-item {
    display: flex;
    flex-direction: column;
}

.bp-detail-item span {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.bp-detail-item strong {
    font-size: 1rem;
    color: #fff;
}

.bp-divider {
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
    margin: 0 -1.5rem 1.2rem;
    position: relative;
}

.bp-divider::before, .bp-divider::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background: var(--bg-main);
    border-radius: 50%;
}

.bp-divider::before { left: -10px; }
.bp-divider::after { right: -10px; }

.bp-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bp-qr {
    background: #fff;
    padding: 0.4rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    color: #000;
}

.bp-qr svg {
    width: 80px;
    height: 80px;
    display: block;
}

.bp-scan-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ==========================================
   DESTINOS, HOTÉIS E RESTAURANTES GRIDS & CARDS
   ========================================== */

/* Section Layout */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 4.5rem;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .container-fluid {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 1.5rem;
    }
}

/* Grids */
.dest-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.dest-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 2rem;
}

.dest-slider-track .dest-card {
    flex: 0 0 calc(50% - 1rem);
    width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
}

@media (max-width: 768px) {
    .dest-slider-track .dest-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn-slide {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-slide:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.hotel-grid,
.resto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}

/* Cards Base */
.dest-card,
.hotel-card,
.resto-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.dest-card:hover,
.hotel-card:hover,
.resto-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 122, 0, 0.35);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px -15px rgba(255, 122, 0, 0.25), 0 0 30px rgba(255, 122, 0, 0.08);
}

/* Image Div Size (Enlarged slightly for awesome visual depth) */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px; /* Generous height for stunning landscapes/interiors */
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-card:hover .card-img,
.hotel-card:hover .card-img,
.resto-card:hover .card-img {
    transform: scale(1.08);
}

/* Glassmorphic Badge */
.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(8, 10, 15, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 122, 0, 0.4);
    color: var(--primary-color);
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
    z-index: 5;
}

/* Card Info & Typography */
.card-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
}

.card-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.location {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.location i {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: var(--secondary-color);
}

.star-icon {
    width: 14px;
    height: 14px;
    fill: var(--secondary-color);
    color: var(--secondary-color);
}

.card-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Features List (Hotels specific) */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-features span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.card-features i {
    width: 13px;
    height: 13px;
    color: var(--primary-color);
}

/* Cuisine Info (Restaurants specific) */
.card-cuisine {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-cuisine span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-cuisine i {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

/* Booking & Action Buttons */
.card-action {
    margin-top: auto;
    width: 100%;
}

.btn-card-booking {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
    font-size: 0.9rem;
    border-radius: 12px;
    background: rgba(255, 122, 0, 0.06);
    border: 1px solid rgba(255, 122, 0, 0.35);
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-card-booking:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25);
}

/* App Download Section */
.download-app-section {
    position: relative;
    z-index: 10;
}

.btn-store {
    display: flex;
    align-items: center;
    background: rgba(10, 15, 25, 0.8);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-store:hover {
    background: rgba(15, 20, 30, 0.95);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.2);
}

/* Premium Footer */
.footer-premium {
    padding: 0;
    border: none;
    text-align: left;
    background: rgba(5, 7, 12, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin-top: auto !important;
    margin-bottom: -50px !important;
}

.footer-gradient-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1.2rem 0 0.8rem;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-logo-link {
    font-size: 1.6rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a svg, 
.footer-social a i {
    width: 22px !important;
    height: 22px !important;
    stroke: var(--text-muted);
    stroke-width: 2px;
    fill: none;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-social a:hover svg,
.footer-social a:hover i {
    stroke: #ffffff;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    position: relative;
    padding-bottom: 0.25rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

/* Footer Contact */
.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact i {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    background: rgba(255, 122, 0, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-wa-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0 35px 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer Mobile */
@media (max-width: 768px) {
    body { margin-bottom: 0 !important; padding-bottom: 0 !important; }
    .footer-premium { margin-bottom: -50px !important; padding-bottom: 0 !important; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 1rem 0 0.8rem !important;
    }
    .footer-brand {
        grid-column: span 2 !important;
    }
    .footer-col.footer-contact {
        grid-column: span 2 !important;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        padding: 0.6rem 0 35px 0 !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(8, 10, 15, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.5);
    animation: wa-pulse 2.5s infinite;
    transition: var(--transition);
    font-size: 0;
    /* hide the ✓ entity */
}

.whatsapp-float:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
    animation: none;
}

.whatsapp-float svg {
    fill: currentColor;
}

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

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

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
}

    .search-bar {
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
        align-items: stretch;
    }

    .search-field {
        width: 100%;
        min-width: 100%;
    }

    .btn-swap {
        margin: 0.5rem auto;
        transform: rotate(90deg);
    }

    .btn-swap:hover {
        transform: rotate(270deg) scale(1.1);
    }

    .btn-search {
        margin-top: 1rem;
        align-self: stretch;
    }

    .route-card {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .price-section {
        text-align: left;
    }
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85); /* Fundo mais escuro */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0 35px 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer Mobile */
@media (max-width: 768px) {
    body { margin-bottom: 0 !important; padding-bottom: 0 !important; }
    .footer-premium { margin-bottom: -50px !important; padding-bottom: 0 !important; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 1rem 0 0.8rem !important;
    }
    .footer-brand {
        grid-column: span 2 !important;
    }
    .footer-col.footer-contact {
        grid-column: span 2 !important;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        padding: 0.6rem 0 35px 0 !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(8, 10, 15, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.5);
    animation: wa-pulse 2.5s infinite;
    transition: var(--transition);
    font-size: 0;
    /* hide the ✓ entity */
}

.whatsapp-float:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
    animation: none;
}

.whatsapp-float svg {
    fill: currentColor;
}

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

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

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
}

    .search-bar {
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
        align-items: stretch;
    }

    .search-field {
        width: 100%;
        min-width: 100%;
    }

    .btn-swap {
        margin: 0.5rem auto;
        transform: rotate(90deg);
    }

    .btn-swap:hover {
        transform: rotate(270deg) scale(1.1);
    }

    .btn-search {
        margin-top: 1rem;
        align-self: stretch;
    }

    .route-card {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .price-section {
        text-align: left;
    }
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85); /* Fundo mais escuro */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 450px;
    padding: 2.5rem;
    text-align: center;
    border-radius: 24px;
    background: #0f172a !important; /* Fundo sólido escuro */
    border: 1px solid rgba(255, 122, 0, 0.2) !important;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.open .modal-content {
    transform: scale(1) translateY(0);
}

/* Enhancements for Bus Hire Modal Fields & Interactive Focus Glow */
#hire-modal .input-box {
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#hire-modal .input-box:focus-within {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.18) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

#hire-modal select:focus {
    outline: none;
}

#hire-modal select option {
    background-color: #0f172a;
    color: #ffffff;
    padding: 10px;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.modal-icon {
    width: 56px;
    height: 56px;
    color: #ffffff !important;
    background: rgba(255, 122, 0, 0.15);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 122, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 122, 0, 0.4);
    }
}

.modal-header h3 {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
}

.modal-body {
    margin-bottom: 2rem;
}

.modal-body p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

#modal-close-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25);
}

#modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.4);
}

/* Responsive adjustments for travel showcase grids and cards */
@media (max-width: 768px) {
    .dest-grid,
    .hotel-grid,
    .resto-grid {
        gap: 1.75rem;
    }

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

    .card-info {
        padding: 1.35rem;
    }
    
    .card-features {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .card-features span {
        font-size: 0.75rem;
        padding: 0.25rem 0.55rem;
    }
}

/* ==========================================
   Map Section Styles
   ========================================== */
#mapa-rotas {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.map-layout {
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    overflow: visible; /* Alterado de hidden para permitir sobreposição de selects fora do container */
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.map-sidebar {
    width: 350px;
    padding: 2rem;
    background: rgba(8, 10, 15, 0.85);
    border-right: 1px solid var(--glass-border);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-radius: 12px 0 0 12px; /* Cantos arredondados na esquerda */
}

.map-view {
    flex-grow: 1;
    position: relative;
    background: #000;
}

/* Dark Mode Filter for Leaflet Map to match the site's dark aesthetic */
.leaflet-layer,
.leaflet-control-zoom-in,
.leaflet-control-zoom-out,
.leaflet-control-attribution {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

@media (max-width: 768px) {
    .map-layout {
        flex-direction: column;
    }
    .map-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        border-radius: 12px 12px 0 0 !important; /* Cantos arredondados em cima no mobile */
    }
    .map-view {
        height: 400px;
    }
    #google-map, #leaflet-internal-map {
        border-radius: 0 0 12px 12px !important;
    }
}

/* ==========================================
   ELEMENTOS DE COMPOSIÇÃO DO MAPA HÍBRIDO E TIMELINE
   ========================================== */

#google-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 0 12px 12px 0;
    position: relative;
    overflow: hidden;
}

/* Fallback Overlay do Leaflet */
.map-fallback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(15, 23, 42, 0.95);
    z-index: 1000;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.map-fallback-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.map-fallback-overlay p {
    color: var(--text-muted);
    max-width: 450px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Alerta em Banner no Topo da Barra Lateral */
.banner-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 122, 0, 0.15);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    color: #ffd8a8;
    position: relative;
    text-align: left;
}

.banner-alert.warning {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.banner-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    padding-left: 0.5rem;
}

/* Cartão de Estatísticas Moderno */
.stats-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 16px;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
}

/* TIMELINE COM CONTENÇÃO DE SCROLL (MOBILE-OPTIMIZED) */
.route-timeline {
    position: relative;
    padding-left: 28px;
    max-height: 280px;
    overflow-y: auto;
    margin-top: 1rem;
    text-align: left;
    
    /* PREVENÇÃO DE CONFLITO MOBILE */
    overscroll-behavior: contain; /* Impede a propagação de scroll (scroll chaining) */
    touch-action: pan-y; /* Permite apenas arrastamento vertical interno */
    -webkit-overflow-scrolling: touch; /* Scroll suave inercial no iOS */
}

/* Prevenção extra de gestos no ecrã touch */
.route-timeline:active {
    pointer-events: auto;
}

.route-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, #2ecc71 0%, #ffb400 50%, #ff2a2a 100%);
    box-shadow: 0 0 8px rgba(255, 122, 0, 0.3);
}

.timeline-node {
    position: relative;
    margin-bottom: 1.4rem;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.timeline-bullet {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0f172a;
    border: 3px solid #ffb400;
    z-index: 5;
    box-shadow: 0 0 6px rgba(255, 180, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.timeline-bullet::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    display: block;
}

.timeline-node.origin .timeline-bullet {
    border-color: #2ecc71;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.8);
}

.timeline-node.destination .timeline-bullet {
    border-color: #ff2a2a;
    box-shadow: 0 0 8px rgba(255, 42, 42, 0.8);
}

.timeline-content {
    display: flex;
    flex-direction: column;
}

.timeline-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 0.25rem;
}

.timeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.70rem;
    font-weight: 500;
    line-height: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.timeline-tag-icon {
    width: 11px !important;
    height: 11px !important;
}

.origin-tag {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.destination-tag {
    background: rgba(255, 42, 42, 0.1);
    border-color: rgba(255, 42, 42, 0.2);
    color: #ff2a2a;
}

.timeline-delay-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.70rem;
    font-weight: 600;
    line-height: 1;
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.25);
    color: #ff7a00;
    animation: pulse-border 2s infinite ease-in-out;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(255, 122, 0, 0.25); }
    50% { border-color: rgba(255, 122, 0, 0.6); }
}

/* ==========================================================================
   INTEGRAÇÃO DE API: MODAIS, SELETOR DE ASSENTOS E BILHETE DE EMBARQUE
   ========================================================================== */

/* 1. Modal Autenticação com Abas (Login / Registo) - Design Capsule Premium */
.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 5px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.auth-tab {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    border-radius: 12px;
}

.auth-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255, 122, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.auth-tab:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.95rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.form-input:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.form-input:focus {
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.5);
    outline: none;
    box-shadow: 0 0 22px rgba(255, 122, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* 2. Barra de Navegação - Secção Dinâmica do Utilizador */
.navbar-auth-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.navbar-user-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: #ffd8a8;
}

.btn-logout {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: var(--accent-red);
    color: #fff;
}

/* 3. Seletor de Assentos de Autocarro (Layout 2x2) */
.seat-modal-width {
    max-width: 580px !important;
}

.bus-layout-container {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.driver-cabin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.driver-steering {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.seat-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.5rem;
    overscroll-behavior: contain;
}

.seat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seat-pair {
    display: flex;
    gap: 0.8rem;
    flex: 1;
}

.seat-pair.left {
    justify-content: flex-start;
}

.seat-pair.right {
    justify-content: flex-end;
}

.seat-corridor {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.seat {
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.8);
    border: 1.5px solid rgba(255, 122, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd8a8;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.seat.available:hover {
    background: rgba(255, 122, 0, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 122, 0, 0.4);
    transform: translateY(-2px);
}

.seat.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 122, 0, 0.6);
    animation: pulseSelected 1.5s infinite;
}

.seat.occupied {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}

@keyframes pulseSelected {
    0% { box-shadow: 0 0 12px rgba(255, 122, 0, 0.6); }
    50% { box-shadow: 0 0 16px rgba(255, 122, 0, 0.8); }
    100% { box-shadow: 0 0 12px rgba(255, 122, 0, 0.6); }
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.available {
    background: rgba(15, 23, 42, 0.8);
    border: 1.5px solid rgba(255, 122, 0, 0.3);
}

.legend-color.selected {
    background: var(--primary-color);
}

.legend-color.occupied {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 4. Modal iFrame Pagamento EMIS Fullscreen Glass Overlay */
.iframe-modal-backdrop {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(12px) !important;
}

.iframe-modal-content {
    width: 100% !important;
    max-width: 480px !important;
    height: 85vh !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
}

.iframe-modal-body {
    flex: 1;
    width: 100%;
    height: 100%;
}

.iframe-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

/* 5. Bilhete Confirmado Boarding Pass Real */
.boarding-pass-print {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 42, 42, 0.15) 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    text-align: left;
    margin: 1.5rem 0;
}

.boarding-pass-print::before, .boarding-pass-print::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #0f172a;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.boarding-pass-print::before {
    left: -17px;
    border-right: 2px solid var(--primary-color);
}

.boarding-pass-print::after {
    right: -17px;
    border-left: 2px solid var(--primary-color);
}

.bp-print-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.bp-print-field {
    display: flex;
    flex-direction: column;
}

.bp-print-field span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bp-print-field strong {
    font-size: 1.05rem;
    color: #fff;
    margin-top: 0.2rem;
}

.bp-print-barcode {
    text-align: center;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.bp-print-qr {
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 0.8rem;
    background: #fff;
    border-radius: 12px;
}

.bp-print-qr svg {
    color: #0f172a;
}

/* ==========================================================================
   FASE 2: TELA DE LOGIN PREMIUM E GOOGLE SSO
   ========================================================================== */

/* Fullscreen Auth Styling overlay to cover the whole viewport */
.fullscreen-auth {
    inset: 0 !important;
    background: rgba(4, 6, 10, 0.15) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.auth-container-fullscreen {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: rgba(10, 12, 22, 0.08);
    position: relative;
}

/* Coluna Visual (Branding) - Left pane */
.auth-visual-side {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    background: rgba(4, 6, 10, 0.15) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    z-index: 2;
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-logo {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.visual-tagline {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    letter-spacing: -0.02em;
}

.visual-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.visual-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.v-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v-feat-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}

.v-feat-item span {
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* Coluna Formulários - Right pane (Glass & Unified Radial Flow) */
.auth-form-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    background: rgba(10, 12, 22, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Glowing Ambient Blobs for Premium Glassmorphism */
.auth-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.blob-orange {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    top: 10%;
    left: 10%;
    width: 320px;
    height: 320px;
    opacity: 0.16;
    animation: swirlBlob1 22s infinite alternate ease-in-out;
}

.blob-purple {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    bottom: 10%;
    right: 10%;
    width: 350px;
    height: 350px;
    opacity: 0.14;
    animation: swirlBlob2 25s infinite alternate ease-in-out;
}

.blob-blue {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    top: 45%;
    left: 45%;
    width: 280px;
    height: 280px;
    opacity: 0.12;
    animation: swirlBlob3 28s infinite alternate ease-in-out;
}

@keyframes swirlBlob1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(60px, -40px) rotate(180deg) scale(1.2); }
    100% { transform: translate(-30px, 30px) rotate(360deg) scale(0.95); }
}

@keyframes swirlBlob2 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-50px, 60px) rotate(-180deg) scale(0.85); }
    100% { transform: translate(40px, -20px) rotate(-360deg) scale(1.1); }
}

@keyframes swirlBlob3 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-20px, -50px) rotate(90deg) scale(1.15); }
    100% { transform: translate(-40px, -10px) rotate(180deg) scale(0.9); }
}

.auth-form-header {
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    z-index: 2;
}

.auth-close-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-close-circle:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    transform: rotate(90deg);
}

.auth-form-container {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.42); /* Premium ultra transparent */
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                0 0 50px rgba(255, 122, 0, 0.06);
    z-index: 2;
    position: relative;
    animation: authEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Beautiful Entrance Keyframes (Missing earlier, now fully integrated) */
@keyframes authEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Auth Tab Switcher */
.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 4px;
    overflow: hidden;
}

.auth-tab {
    flex: 1;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.auth-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.auth-tab:not(.active):hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

/* Auth Form Inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: rgba(8, 10, 15, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input::placeholder {
    color: rgba(160, 174, 192, 0.5);
}

.form-input:focus {
    border-color: var(--primary-color);
    background: rgba(8, 10, 15, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15),
                0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Logout button */
.btn-logout {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
    color: #fca5a5 !important;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
    transform: translateY(-2px);
}


#form-login, #form-register {
    animation: formFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes formFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.mobile-only-logo {
    display: none;
}

/* Divisória Glassmorphic Premium */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.8rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-divider:not(:empty)::before {
    margin-right: 1rem;
}

.auth-divider:not(:empty)::after {
    margin-left: 1rem;
}

/* Botão Google Glassmorphic Premium */
.btn-google {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 122, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15), 0 0 15px rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.btn-google:active {
    transform: translateY(0);
}

.btn-google svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Responsividade Fullscreen Login */
@media (max-width: 992px) {
    .auth-container-fullscreen {
        grid-template-columns: 1fr;
    }
    
    .auth-visual-side {
        display: none;
    }
    
    .auth-form-side {
        padding: 2rem;
    }
    
    .mobile-only-logo {
        display: block !important;
        font-size: 1.8rem;
    }
    
    .auth-form-header {
        justify-content: space-between;
        align-items: center;
    }
}

/* ==========================================================================
   FASE 3: CUSTOM ALERT MODAL STATUS STYLING (GLASS & NEON)
   ========================================================================== */

/* Glassmorphism custom alert content */
#modal-alert-content.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: none !important;
    border-radius: 28px;
}

/* Custom Alert Status Colors & Shadows (No border, glow only) */
#modal-alert-content.alert-success {
    border: none !important;
}

#modal-alert-content.alert-error {
    border: none !important;
}

#modal-alert-content.alert-warning {
    border: none !important;
}

#modal-alert-content.alert-info {
    border: none !important;
}

/* Pulsing Icon Glowing Halos (Icons white, halos colored) */
#modal-alert-icon.icon-success {
    color: #ffffff !important;
    background: rgba(16, 185, 129, 0.25) !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.35) !important;
    animation: pulse-icon-green 2s infinite !important;
}

#modal-alert-icon.icon-error {
    color: #ffffff !important;
    background: rgba(239, 68, 68, 0.25) !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.35) !important;
    animation: pulse-icon-red 2s infinite !important;
}

#modal-alert-icon.icon-warning {
    color: #ffffff !important;
    background: rgba(245, 158, 11, 0.25) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.35) !important;
    animation: pulse-icon-orange 2s infinite !important;
}

#modal-alert-icon.icon-info {
    color: #ffffff !important;
    background: rgba(255, 122, 0, 0.25) !important;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.35) !important;
    animation: pulse-icon-orange 2s infinite !important;
}

/* Pulse keyframes for different alert types */
@keyframes pulse-icon-green {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    }
}

@keyframes pulse-icon-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
    }
}

@keyframes pulse-icon-orange {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
    }
}

@keyframes pulse-icon-blue {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    }
}

/* All text and labels in custom alert modals must be white */
.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-title,
#modal-message {
    color: #ffffff !important;
}

/* Force modal icons to be white */
.modal-content.glass .modal-icon,
#modal-alert-icon {
    color: #ffffff !important;
}

/* Dynamic Close Buttons matching alert themes (All override to orange button as requested) */
.alert-success #modal-close-btn,
.alert-error #modal-close-btn,
.alert-warning #modal-close-btn,
.alert-info #modal-close-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25) !important;
    border: none !important;
    color: #ffffff !important;
}
.alert-success #modal-close-btn:hover,
.alert-error #modal-close-btn:hover,
.alert-warning #modal-close-btn:hover,
.alert-info #modal-close-btn:hover {
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* ==========================================================================
   FASE 4: PAINEL ADMINISTRATIVO GLASSMORPHIC (ESTILOS SEPARADOS)
   ========================================================================== */

#admin-panel {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    z-index: 9995;
}

.admin-dashboard-container {
    width: 100%;
    min-height: 100vh;
    padding: 2.5rem;
    background: radial-gradient(circle at 50% 50%, rgba(15, 20, 35, 0.98) 0%, rgba(5, 7, 12, 1) 100%);
    position: relative;
    z-index: 10;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.admin-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.admin-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.admin-header-actions {
    display: flex;
    gap: 1rem;
}

.admin-btn-back {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #fff !important;
}

.admin-btn-back:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

.admin-btn-logout {
    padding: 0.6rem 1.2rem !important;
    border-radius: 12px !important;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.admin-stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    text-align: left;
}

.admin-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.admin-stat-change {
    font-size: 0.75rem;
    color: #2ecc71;
    margin-top: 0.2rem;
    display: block;
}

.admin-stat-change.muted {
    color: var(--text-muted);
}

.admin-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.admin-main-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-main-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-glass-box {
    padding: 2rem;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.admin-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-box-title {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-box-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-table-container {
    max-height: 280px;
    overflow-y: auto;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    height: 42px;
}

.admin-table th {
    padding: 0.9rem 1.2rem;
    color: #ffd8a8;
    font-weight: 700;
}

.admin-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 48px;
}

.admin-table td {
    padding: 0.9rem 1.2rem;
}

.admin-table td.primary-id {
    color: var(--primary-color);
    font-weight: 700;
}

.admin-table td.bold-text {
    font-weight: 600;
}

.admin-table td.success-text {
    color: #2ecc71;
    font-weight: 600;
}

.admin-table td.muted-text {
    color: var(--text-muted);
}

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-form-group-no-margin {
    margin-bottom: 0 !important;
}

.admin-input-custom-select {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    width: 100%;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.admin-input-custom-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

@media (max-width: 992px) {
    .admin-main-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ========================================== */
@media (max-width: 768px) {
    /* Esconder animações pesadas no telemóvel */
    #antigravity-canvas, 
    #hire-particles-canvas {
        display: none !important;
    }

    /* Reduzir blur que pesa na GPU mobile, mantendo a transparência */
    .glass,
    .search-bar.glass,
    .option-item.glass {
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    /* Adicionar ícones de background alternativos (mais leves) onde as partículas estavam */
    .mesh-glow-section {
        background-image: radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.05) 0%, transparent 70%);
    }

    /* Desactivar animações reveal complexas em mobile para evitar saltos */
    .reveal {
        transition: opacity 0.3s ease, transform 0.3s ease !important;
    }
}

/* ==========================================
   PARTNERS MARQUEE SLIDER
   ========================================== */
.partners-marquee-section {
    margin-top: 3rem;
    padding: 2rem 0;
    position: relative;
    z-index: 5;
}

.partners-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
}

.partners-marquee-track {
    display: flex;
    width: calc(250px * 10);
    animation: scrollLogos 25s linear infinite;
    gap: 3rem;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5));
    }
}

.partner-logo-item {
    flex: 0 0 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.8) contrast(1.2);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-item:hover {
    background: rgba(255, 122, 0, 0.05);
    border-color: rgba(255, 122, 0, 0.35);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.1);
    transform: translateY(-3px);
}

.partner-logo-item:hover img {
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-marquee-track {
        animation: scrollLogos 15s linear infinite;
        gap: 1.5rem;
    }
    .partner-logo-item {
        flex: 0 0 140px;
        height: 80px;
        border-radius: 12px;
        padding: 0;
    }
    /* Hide the Digital Ticket info section on mobile */
    #bilhetes {
        display: none !important;
    }
    .hide-on-mobile {
        display: none !important;
    }
}
/* Global Modal Primary Button Styling */
.modal-backdrop .btn-primary,
.modal-backdrop button.btn-primary,
.modal-content .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.25) !important;
}

.modal-backdrop .btn-primary:hover,
.modal-backdrop button.btn-primary:hover,
.modal-content .btn-primary:hover {
    background: linear-gradient(135deg, #ff9020 0%, #ff5500 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.4) !important;
    color: #ffffff !important;
}

/* Styling for Search Result Company Filter Dropdown & Options */
#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;
}

/* ==========================================================================
   TRIP DETAILS MODAL TICKET RESPONSIVE LAYOUT
   ========================================================================== */
.trip-details-card {
    position: relative;
    width: 100%;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.65), 0 0 40px rgba(255,122,0,0.1);
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    margin: auto;
}

.trip-details-layout {
    display: grid;
    grid-template-columns: 1fr auto 220px;
    gap: 0;
    min-height: 280px;
}

.trip-details-main {
    padding: 1.8rem 1.6rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

.trip-details-grid-specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.6rem;
}

.trip-details-sep {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.2rem;
    position: relative;
}

.trip-details-sep-circle-top {
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-color) !important;
    border: 1px solid rgba(255,122,0,0.2);
}

.trip-details-sep-line {
    flex: 1;
    width: 1px;
    border-left: 2px dashed rgba(255,122,0,0.25);
    margin: 20px 0;
}

.trip-details-sep-circle-bottom {
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-color) !important;
    border: 1px solid rgba(255,122,0,0.2);
}

.trip-details-sidebar {
    padding: 1.8rem 2rem 1.8rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 1.2rem;
}

@media (max-width: 768px) {
    .trip-details-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .trip-details-main {
        padding: 1.5rem;
    }
    
    .trip-details-grid-specs {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .trip-details-sep {
        flex-direction: row;
        width: 100%;
        height: 20px;
        padding: 0;
        margin: 0.5rem 0;
    }
    
    .trip-details-sep-circle-top {
        left: -10px;
        top: 0;
        background: var(--bg-color) !important;
    }
    
    .trip-details-sep-line {
        height: 1px;
        width: 100%;
        border-left: none;
        border-top: 2px dashed rgba(255,122,0,0.25);
        margin: 0 10px;
    }
    
    .trip-details-sep-circle-bottom {
        right: -10px;
        top: 0;
        background: var(--bg-color) !important;
    }
    
    .trip-details-sidebar {
        padding: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        gap: 1.2rem;
    }
    
    .trip-details-qr-code,
    .trip-details-qr-text {
        display: none !important;
    }
}

/* Force text readability inside the trip details modal */
.trip-details-card h1,
.trip-details-card h2,
.trip-details-card h3,
.trip-details-card h4,
.trip-details-card p,
.trip-details-card strong,
.trip-details-card span:not([style*="color"]),
.trip-details-card div:not([style*="color"]) {
    color: #ffffff !important;
}

/* ==========================================================================
   AUTH MODAL — minimal
   ========================================================================== */
.auth-modal-box {
    position: relative;
    width: 100%;
    max-width: 340px;
    border-radius: 20px;
    padding: 2.25rem 2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
}

/* Close X — top-right corner */
.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.18s;
}
.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: rotate(90deg);
}

/* Lock icon circle */
.auth-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.3);
    color: var(--primary-color, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.auth-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
    margin: 0;
}

.auth-modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.auth-modal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.auth-modal-btn-login {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
}
.auth-modal-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.auth-modal-register-link {
    font-size: 0.83rem;
    color: var(--primary-color, #ff7a00);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.auth-modal-register-link:hover {
    color: var(--secondary-color, #ffb400);
    text-decoration: underline;
}

/* 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;
}
