/**
 * Tema landing pasajes de bus (referencia visual tipo pinbus).
 * Convive con Bootstrap/home.css y el booker Vue dentro de .landing-search-shell.
 *
 * Dónde tocar el buscador (hero / tarjeta blanca):
 *   → Este archivo: assets/css/bus-landing-theme.css
 *   → Bloque principal desktop: busca "@media (min-width: 992px)" y ".landing-search-shell"
 *   → Variables de altura/espaciado: :root .bus-landing-theme (--pinbus-field-h, --pinbus-field-label-gap)
 * Lógica de fechas (fachada / solo ida): index.html (script "pinbus-date-facade")
 */
.bus-landing-theme {
    --bus-blue: #0d4ea8;
    --bus-blue-deep: #003d99;
    --bus-navy-heading: #002d5d;
    --bus-blue-hero: linear-gradient(135deg, #0d5fc9 0%, #0a3d91 48%, #082f73 100%);
    --bus-sheet-bg: #f4f7f9;
    --bus-yellow: #ffda2d;
    --bus-yellow-hover: #e8c820;
    --bus-green-radio: #76c043;
    --bus-icon-blue: #3d8dd9;
    --bus-text: #1a1a1a;
    --bus-muted: #7a7a7a;
    --pinbus-input-bg: #f0f4f8;
    --pinbus-input-border: #c8d9ea;
    --pinbus-field-h: 54px;
    --pinbus-field-label-gap: 1.28rem;
    --bus-card-shadow: 0 8px 28px rgba(13, 62, 145, 0.12);
    --bus-mobile-pad: 0.875rem;
    --bus-search-compact-gap: 0.32rem;
    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Bloque superior azul continuo (móvil) */
.bus-landing-theme .bus-top-blue {
    position: relative;
}

@media (max-width: 991.98px) {
    .bus-landing-theme .bus-top-blue {
        background: var(--bus-blue-hero);
        padding-bottom: 0.25rem;
    }

    .bus-landing-theme .bus-top-blue .bus-header {
        background: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .bus-landing-theme .bus-top-blue .bus-hero {
        background: transparent !important;
        padding: 0.25rem 0 1rem;
        overflow: visible;
    }

    .bus-landing-theme .bus-hero__container {
        padding-left: var(--bus-mobile-pad);
        padding-right: var(--bus-mobile-pad);
    }

    .bus-landing-theme .bus-hero__title {
        font-size: clamp(1.28rem, 6.2vw, 1.65rem);
        margin-bottom: 0.55rem;
        line-height: 1.2;
        padding-left: 0;
        padding-right: 0;
    }

    .bus-landing-theme .bus-hero__bg {
        opacity: 0.42;
    }

    .bus-landing-theme .bus-header .navbar {
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }

    .bus-landing-theme .bus-brand__logo {
        max-height: 26px;
        max-width: min(118px, 40vw);
    }

    .bus-landing-theme .bus-trust-banner {
        padding: 0.85rem 0.75rem 0.95rem;
    }

    .bus-landing-theme .bus-trust-banner__inner {
        gap: 0.55rem 0.75rem;
    }

    .bus-landing-theme .bus-trust-banner__text {
        flex: 1 1 100%;
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .bus-landing-theme .bus-trust-banner__pill {
        padding: 0.32rem 0.8rem;
    }

    .bus-landing-theme .bus-destinations {
        padding: 1.1rem 0 1.75rem;
    }

    .bus-landing-theme .bus-destinations__head {
        margin-bottom: 0.85rem;
        padding-top: 0.35rem;
    }

    .bus-landing-theme .bus-destinations__grid {
        gap: 0.85rem;
    }
}

@media (min-width: 992px) {
    .bus-landing-theme .bus-top-blue {
        background: none;
    }
}

/* Iconos SVG tipo Pinbus (origen = dirección, destino = pin, fecha = calendario) */
.bus-landing-theme {
    --pinbus-ic-nav: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d8dd9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M17 7H9M17 7V15'/%3E%3C/svg%3E");
    --pinbus-ic-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d8dd9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21c-4-3.2-6-6.4-6-9a6 6 0 1112 0c0 2.6-2 5.8-6 9z'/%3E%3Ccircle cx='12' cy='10' r='2.5' fill='%233d8dd9' stroke='none'/%3E%3C/svg%3E");
    --pinbus-ic-cal: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d8dd9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M3 10h18M8 2v4M16 2v4'/%3E%3C/svg%3E");
    --pinbus-ic-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.4' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='7'/%3E%3Cpath d='M21 21l-5.2-5.2'/%3E%3C/svg%3E");
}

.bus-landing-theme #app {
    background: #fff;
    color: var(--bus-text);
    font-family: var(--font-sans);
    min-height: 100vh;
}

.bus-landing-theme .bus-header {
    background: var(--bus-blue-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 12px rgba(0, 30, 80, 0.2);
}

.bus-landing-theme .bus-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    flex-wrap: wrap;
}

.bus-landing-theme .bus-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.bus-landing-theme .bus-brand__logo {
    display: block;
    height: auto;
    max-height: 32px;
    width: auto;
    max-width: min(132px, 42vw);
}

@media (min-width: 992px) {
    .bus-landing-theme .bus-brand__logo {
        max-height: 36px;
        max-width: 148px;
    }
}

.bus-landing-theme .bus-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .bus-landing-theme .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 14px;
        margin-top: 0.65rem;
        padding: 0.85rem 1rem 1rem;
        box-shadow: 0 10px 36px rgba(0, 35, 90, 0.18);
    }

    .bus-landing-theme .navbar-collapse .bus-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 0.35rem 0 0;
        gap: 0.65rem;
    }

    .bus-landing-theme .navbar-collapse .bus-nav a,
    .bus-landing-theme .navbar-collapse .bus-nav .dropdown-toggle {
        color: var(--bus-navy-heading) !important;
        font-size: 0.95rem;
    }

    .bus-landing-theme .navbar-collapse .btn-bus-login {
        margin-top: 0.65rem;
        width: 100%;
        text-align: center;
    }
}

.bus-landing-theme .bus-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.bus-landing-theme .bus-nav a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.bus-landing-theme .bus-nav a:hover {
    color: #fff;
    opacity: 1;
}

.bus-landing-theme .bus-nav .dropdown-toggle {
    color: rgba(255, 255, 255, 0.95) !important;
}

.bus-landing-theme .bus-nav .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.15em;
}

.bus-landing-theme .btn-bus-login {
    background: #fff;
    color: var(--bus-blue-deep) !important;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.bus-landing-theme .btn-bus-login:hover {
    background: #f0f4fa;
    color: var(--bus-blue-deep) !important;
}

.bus-landing-theme .bus-hero {
    position: relative;
    background: var(--bus-blue-hero);
    color: #fff;
    padding: 2.5rem 0 3.5rem;
    overflow: hidden;
}

.bus-landing-theme .bus-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath fill='%23ffffff' fill-opacity='.12' d='M520 280c40-8 120-40 200-20l60 20-20 40c-60 4-140 28-200 20l-40-60z'/%3E%3Cpath stroke='%23ffffff' stroke-opacity='.25' stroke-width='4' fill='none' d='M0 320 Q200 300 400 320 T800 310'/%3E%3Cpath stroke='%23ffffff' stroke-opacity='.18' stroke-width='3' fill='none' d='M0 340 Q250 330 500 345 T800 335'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 85% 60%;
    background-size: min(900px, 95vw);
}

.bus-landing-theme .bus-hero__title {
    position: relative;
    text-align: center;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    margin: 0 auto 1.75rem;
    max-width: 22ch;
    line-height: 1.2;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}

/* ========== Buscador Pinbus: marco azul + tarjeta blanca ========== */
.bus-landing-theme .bus-search-pinbus {
    position: relative;
    padding: 0.65rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(186, 214, 255, 0.55);
    box-shadow: 0 4px 24px rgba(0, 40, 100, 0.12);
}

.bus-landing-theme .landing-search-shell {
    position: relative;
    border-radius: 15px;
    padding: 1.15rem 1.15rem 1.05rem;
    background: #fff;
    border: none;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

@media (min-width: 992px) {
    .bus-landing-theme .landing-search-shell {
        padding: 1.2rem 1.35rem 1.15rem;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(15, 50, 100, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .bus-landing-theme .bus-search-pinbus {
        padding: 0.75rem;
        border-radius: 24px;
    }
}

.bus-landing-theme .landing-search-shell flight-booker {
    display: block;
}

.bus-landing-theme .bus-search-pinbus .landing-search-label-hint.d-none.d-md-block {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0.85rem 0.5rem 0;
    line-height: 1.45;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.bus-landing-theme .landing-search-label-hint--in-card {
    font-size: 0.65rem;
    color: #707070;
    text-align: center;
    margin: 0.5rem 0 0;
    line-height: 1.35;
    padding: 0 0.25rem;
}


.bus-landing-theme .landing-search-shell .card.booker.bg-booker {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 0 !important;
}

/* Fila ida / ida y regreso */
.bus-landing-theme .landing-search-shell .c-booker > .row > .mb-0:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.85rem;
    margin-bottom: 1rem !important;
    padding-left: 0.15rem;
}

.bus-landing-theme .landing-search-shell .form-check-inline {
    margin-right: 0 !important;
    padding-left: 0 !important;
}

.bus-landing-theme .landing-search-shell .form-check-input[type="radio"] {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.15rem;
    border: 2px solid #c5ced6;
    background-color: #fff;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    vertical-align: middle;
}

.bus-landing-theme .landing-search-shell .form-check-input[type="radio"]:focus {
    box-shadow: 0 0 0 3px rgba(118, 192, 67, 0.25);
}

.bus-landing-theme .landing-search-shell .form-check-input[type="radio"]:checked {
    background-color: var(--bus-green-radio) !important;
    border-color: var(--bus-green-radio) !important;
    background-image: radial-gradient(circle, #fff 32%, transparent 34%) !important;
}

.bus-landing-theme .landing-search-shell .form-check-inline .form-check-label {
    font-size: 0.9375rem;
    color: #1a1a1a !important;
    font-weight: 400;
    padding-left: 0.35rem;
}

.bus-landing-theme .landing-search-shell .form-check-inline:has(#flight-oneway-checkbox:checked) .form-check-label,
.bus-landing-theme .landing-search-shell .form-check-inline:has(#flight-roundtrip-checkbox:checked) .form-check-label {
    color: var(--bus-text) !important;
    font-weight: 700;
}

/* Grupos de input unificados */
.bus-landing-theme .landing-search-shell .input-group {
    border: 1px solid var(--pinbus-input-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--pinbus-input-bg);
    align-items: stretch;
}

@media (min-width: 992px) {
    .bus-landing-theme .landing-search-shell .input-group:not(.pax-input) {
        border-radius: 10px;
        align-items: center;
    }
}

/* easepick ancla el popup al grupo; hidden recorta el calendario en desktop */
.bus-landing-theme .landing-search-shell #calendarContainer.input-group {
    overflow: visible !important;
}

.bus-landing-theme .landing-search-shell .input-group:focus-within {
    border-color: #9eb8d4;
    box-shadow: 0 0 0 2px rgba(61, 141, 217, 0.12);
}

.bus-landing-theme .landing-search-shell .input-group-text {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding-left: 0.65rem !important;
    padding-right: 0.35rem !important;
}

.bus-landing-theme .landing-search-shell .input-group-text .icon,
.bus-landing-theme .landing-search-shell .input-group-text .font-icons {
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.bus-landing-theme .landing-search-shell .input-group-text .icon::before,
.bus-landing-theme .landing-search-shell .input-group-text .font-icons::before {
    content: "" !important;
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    background: var(--pinbus-ic-nav) center/contain no-repeat;
}

.bus-landing-theme .landing-search-shell .input-group:has(#origin) .input-group-text .icon::before {
    background-image: var(--pinbus-ic-nav);
}

.bus-landing-theme .landing-search-shell .input-group:has(#destination):not(.pax-input) .input-group-text .icon::before {
    background-image: var(--pinbus-ic-pin);
}

.bus-landing-theme .landing-search-shell #calendarContainer .input-group-text .icon::before {
    background-image: var(--pinbus-ic-cal);
}

.bus-landing-theme .landing-search-shell .input-group.pax-input .input-group-text .icon-people::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d8dd9' stroke-width='2'%3E%3Cpath d='M16 21v-2a4 4 0 00-4-4H6a4 4 0 00-4 4v2M12 11a4 4 0 100-8 4 4 0 000 8z'/%3E%3C/svg%3E");
}

.bus-landing-theme .landing-search-shell .input-group-text .icons-plane-departure::before {
    background-image: var(--pinbus-ic-nav);
}

.bus-landing-theme .landing-search-shell .form-control,
.bus-landing-theme .landing-search-shell .form-control:focus,
.bus-landing-theme .landing-search-shell .suggestion-input-starting,
.bus-landing-theme .landing-search-shell input:not([type="checkbox"]):not([type="radio"]),
.bus-landing-theme .landing-search-shell select {
    background: transparent !important;
    border: none !important;
    color: var(--bus-text) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Texto rellenado: negro. Vacío con placeholder: gris (evita placeholder “negro” en WebKit) */
.bus-landing-theme .landing-search-shell input:not([type="checkbox"]):not([type="radio"]):placeholder-shown {
    color: #6b7785 !important;
    -webkit-text-fill-color: #6b7785 !important;
}

.bus-landing-theme .landing-search-shell input:not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown) {
    color: var(--bus-text) !important;
    -webkit-text-fill-color: var(--bus-text) !important;
}

.bus-landing-theme .landing-search-shell .form-control-plaintext,
.bus-landing-theme .landing-search-shell .form-control-plaintext:focus {
    background-color: transparent !important;
    color: var(--bus-text) !important;
    -webkit-text-fill-color: var(--bus-text) !important;
}

.bus-landing-theme .landing-search-shell #calendar-checkIn-flight {
    font-weight: 700 !important;
    color: var(--bus-text) !important;
}

.bus-landing-theme .landing-search-shell .form-control::placeholder,
.bus-landing-theme .landing-search-shell input::placeholder {
    color: #6d7782 !important;
    opacity: 1;
}

.bus-landing-theme .landing-search-shell label,
.bus-landing-theme .landing-search-shell .form-label {
    color: var(--bus-muted) !important;
}

.bus-landing-theme .landing-search-shell .c-booker label[for="origin"],
.bus-landing-theme .landing-search-shell .c-booker label[for="destination"],
.bus-landing-theme .landing-search-shell .c-booker label[for="departure-date"],
.bus-landing-theme .landing-search-shell .c-booker label[for="passengers"] {
    color: var(--bus-muted) !important;
    font-size: 0.75rem !important;
    margin-bottom: 0.35rem !important;
    margin-left: 0.25rem !important;
    padding-left: 0 !important;
    font-weight: 500;
}

.bus-landing-theme .landing-search-shell .btn-primary,
.bus-landing-theme .landing-search-shell button[type="submit"],
.bus-landing-theme .landing-search-shell #searchButton {
    background: var(--bus-yellow) !important;
    border: none !important;
    color: #3d454d !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(255, 206, 0, 0.45);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.bus-landing-theme .landing-search-shell #searchButton::before {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    background: var(--pinbus-ic-search) center/contain no-repeat;
}

.bus-landing-theme .landing-search-shell .btn-primary:hover,
.bus-landing-theme .landing-search-shell #searchButton:hover {
    background: var(--bus-yellow-hover) !important;
    color: #3d454d !important;
}

.bus-landing-theme .landing-search-shell .c-booker.card-body {
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
}

.bus-landing-theme .landing-search-shell .c-booker.card-body.px-3.mx-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.bus-landing-theme .landing-search-shell #searchButton {
    min-height: 48px;
    border-radius: 8px !important;
    width: 100%;
}

@media (min-width: 992px) {
    .bus-landing-theme .landing-search-shell #searchButton {
        min-height: var(--pinbus-field-h) !important;
        height: var(--pinbus-field-h) !important;
        border-radius: 10px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        font-size: 0.9375rem !important;
        color: #1a1a1a !important;
        box-shadow: 0 2px 10px rgba(255, 206, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.06);
    }

    .bus-landing-theme .landing-search-shell #searchButton::before {
        width: 1.05rem;
        height: 1.05rem;
    }

    .bus-landing-theme .landing-search-shell #searchButton:hover {
        color: #1a1a1a !important;
    }
}

/* Fachada de fechas solo desktop; en móvil se usa el input tal cual */
.bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade {
    display: none;
}

@media (min-width: 992px) {
    /* Una sola fila: radios arriba; barra compacta — etiquetas Origen/Destino dentro de la caja */
    .bus-landing-theme .landing-search-shell .c-booker > .row {
        align-items: flex-start;
        column-gap: 0.38rem;
        row-gap: 0.5rem;
        flex-wrap: wrap;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > .mb-0:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 0.55rem !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-lg-3:nth-child(2),
    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-lg-3:nth-child(3) {
        position: relative;
        flex: 0.95 1 0 !important;
        max-width: none !important;
        min-width: 0;
        padding-left: 0.28rem !important;
        padding-right: 0.28rem !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-lg-3:nth-child(2) label[for="origin"],
    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-lg-3:nth-child(3) label[for="destination"] {
        position: absolute;
        left: 2.58rem;
        top: 0.38rem;
        z-index: 2;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0.6875rem !important;
        font-weight: 600 !important;
        color: var(--bus-blue-deep) !important;
        line-height: 1.15;
        letter-spacing: 0.01em;
        pointer-events: none;
    }

    /* Fechas sin offset superior; solo ida: columna más ancha */
    .bus-landing-theme .landing-search-shell .c-booker > .row > .c-lg-input-1 {
        flex: 1.35 1 0 !important;
        max-width: none !important;
        min-width: 0;
        overflow: visible !important;
        z-index: 5;
        padding-left: 0.28rem !important;
        padding-right: 0.28rem !important;
        padding-top: 0 !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > .c-lg-input-1:has(.pinbus-date-facade--oneway) {
        flex: 2.05 1 0 !important;
    }

    /* Referencia m.pinbus.com: en el hero no se muestra pasajeros en la barra */
    .bus-landing-theme .landing-search-shell .c-booker > .row > .c-lg-input-2 {
        display: none !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-lg-2.d-flex.align-items-center {
        flex: 0 0 auto !important;
        width: clamp(10rem, 11.5vw, 12rem) !important;
        max-width: clamp(10rem, 11.5vw, 12rem) !important;
        min-width: 9.5rem !important;
        padding-top: 0 !important;
        padding-left: 0.22rem !important;
        padding-right: 0.22rem !important;
        align-items: stretch !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-lg-2.d-flex.align-items-center #searchButton {
        min-height: var(--pinbus-field-h);
        height: var(--pinbus-field-h);
    }

    /* Etiqueta Vue duplicada: las etiquetas van dentro de la fachadora de fechas */
    .bus-landing-theme .landing-search-shell .c-booker label[for="departure-date"] {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    /* Altura homogénea de cajas tipo Pinbus */
    .bus-landing-theme .landing-search-shell .c-booker > .row .input-group:not(.pax-input) {
        min-height: var(--pinbus-field-h);
        height: var(--pinbus-field-h);
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row .input-group:not(.pax-input) .form-control.input-booker {
        min-height: 0 !important;
        height: 100% !important;
        padding-top: 0.32rem !important;
        padding-bottom: 0.32rem !important;
        font-size: 0.875rem !important;
    }

    /* Origen/Destino: ya llevan padding-top mayor (etiqueta dentro); no pisar con la regla general */
    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-lg-3:nth-child(2) .input-group:not(.pax-input) .form-control.input-booker,
    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-lg-3:nth-child(3) .input-group:not(.pax-input) .form-control.input-booker {
        padding-top: 1.02rem !important;
        padding-bottom: 0.26rem !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row .input-group:not(.pax-input) > .input-group-text {
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        padding-left: 0.68rem !important;
        padding-right: 0.38rem !important;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer {
        position: relative;
        flex-wrap: nowrap;
        min-height: var(--pinbus-field-h);
        height: var(--pinbus-field-h);
        /* easepick inserta el popup como hijo; overflow:hidden lo recortaba en desktop */
        overflow: visible !important;
        cursor: pointer;
        border-radius: 10px;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer > .input-group-text {
        display: none !important;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade {
        display: flex;
        align-items: stretch;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 100%;
        /* Clic en la “cara” Pinbus: easepick solo escucha el input */
        pointer-events: auto;
        position: relative;
        z-index: 1;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__seg {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 0.55rem 0 0.55rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.42rem;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__seg--out {
        padding-left: 0.65rem;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__ic {
        flex-shrink: 0;
        width: 1.0625rem;
        height: 1.0625rem;
        background: var(--pinbus-ic-cal) center/contain no-repeat;
        opacity: 0.92;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__col {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.06rem;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__seg--return {
        position: relative;
        padding-right: 0.65rem;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__seg--return::before {
        content: "";
        position: absolute;
        left: 0;
        top: 12%;
        bottom: 12%;
        width: 1px;
        background: rgba(200, 217, 234, 0.95);
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__lbl {
        font-size: 0.6875rem;
        color: var(--bus-blue-deep) !important;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.01em;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__val {
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--bus-blue-deep);
        line-height: 1.22;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade__val--placeholder {
        font-weight: 500 !important;
        color: #6d7782 !important;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer .pinbus-date-facade--oneway .pinbus-date-facade__seg--return {
        display: none !important;
    }

    .bus-landing-theme .landing-search-shell #calendar-checkIn-flight.pinbus-date-hitbox {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100% !important;
        height: 100% !important;
        min-height: var(--pinbus-field-h);
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        opacity: 0.01 !important;
        cursor: pointer !important;
        color: transparent !important;
        -webkit-text-fill-color: transparent !important;
        z-index: 2;
        pointer-events: none !important;
    }
}

.bus-landing-theme .landing-booker-row,
.bus-landing-theme .landing-search-shell,
.bus-landing-theme .landing-booker-row .col-12 {
    max-width: 100%;
    overflow-x: clip;
}

/* iOS/Safari: overflow-x distinto de visible hace que overflow-y deje de “ser visible” y recorta easepick (solo ida móvil) */
@media (max-width: 991.98px) {
    .bus-landing-theme .landing-search-shell {
        overflow: visible;
    }

    .bus-landing-theme .landing-booker-row,
    .bus-landing-theme .landing-booker-row .col-12 {
        overflow-x: visible;
        overflow-y: visible;
    }

    .bus-landing-theme .bus-search-pinbus {
        overflow: visible;
    }
}

@media (min-width: 992px) {
    .bus-landing-theme .bus-hero {
        overflow: visible;
    }

    .bus-landing-theme .landing-booker-row,
    .bus-landing-theme .landing-search-shell,
    .bus-landing-theme .landing-booker-row .col-12 {
        overflow-x: visible;
        overflow: visible;
    }

    /* Calendario easepick por encima del hero y la tarjeta */
    .bus-landing-theme .easepick-wrapper {
        z-index: 10070 !important;
    }
}

@media (max-width: 991.98px) {
    /* Fila de tipo de viaje: ancho completo, pero “Solo ida | Ida y regreso” en horizontal */
    .bus-landing-theme .landing-search-shell .c-booker > .row > .mb-0:first-child {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.25rem 0.85rem !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0.1rem !important;
    }

    .bus-landing-theme .landing-search-shell .form-check.form-check-inline {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        max-width: none !important;
        flex: 0 0 auto !important;
    }

    .bus-landing-theme .bus-search-pinbus {
        margin-top: 0;
        padding: 0;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        max-width: 100%;
    }

    .bus-landing-theme .landing-search-shell {
        padding: 0.65rem 0.75rem 0.55rem;
        border-radius: 14px;
        box-shadow: 0 6px 22px rgba(0, 25, 70, 0.14);
    }

    /* Menos aire entre Origen / Destino / Fecha / Buscar (referencia Pinbus compacta) */
    .bus-landing-theme .landing-search-shell .c-booker > .row {
        --bs-gutter-y: var(--bus-search-compact-gap);
        row-gap: var(--bus-search-compact-gap);
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > [class*="mb-2"] {
        margin-bottom: var(--bus-search-compact-gap) !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > .col-12.col-lg-2.d-flex.align-items-center {
        margin-bottom: 0 !important;
    }

    .bus-landing-theme .landing-search-shell .form-check-inline {
        min-height: 1.85rem;
        align-items: center;
    }

    .bus-landing-theme .landing-search-shell .form-check-input[type="radio"] {
        width: 1.05rem;
        height: 1.05rem;
        margin-top: 0;
        border: 2px solid #c5ced6;
        background-color: #fff;
    }

    .bus-landing-theme .landing-search-shell .form-check-input[type="radio"]:checked {
        background-color: var(--bus-green-radio) !important;
        border-color: var(--bus-green-radio) !important;
        background-image: radial-gradient(circle, #fff 30%, transparent 32%) !important;
    }

    .bus-landing-theme .landing-search-shell .form-check-inline .form-check-label {
        font-size: 0.8125rem !important;
        color: #1a1a1a !important;
        font-weight: 400;
        padding-left: 0.3rem !important;
    }

    .bus-landing-theme .landing-search-shell .form-check-inline:has(#flight-oneway-checkbox:checked) .form-check-label,
    .bus-landing-theme .landing-search-shell .form-check-inline:has(#flight-roundtrip-checkbox:checked) .form-check-label {
        font-weight: 700;
    }

    .bus-landing-theme .landing-search-shell .c-booker > .row > .c-lg-input-2 {
        display: none !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker label[for="origin"],
    .bus-landing-theme .landing-search-shell .c-booker label[for="destination"],
    .bus-landing-theme .landing-search-shell .c-booker label[for="departure-date"] {
        color: var(--bus-blue-deep) !important;
        font-size: 0.6875rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.1rem !important;
        margin-left: 0 !important;
        line-height: 1.15;
    }

    .bus-landing-theme .landing-search-shell .input-group {
        border-radius: 8px;
        min-height: 2.4rem;
        border-color: var(--pinbus-input-border) !important;
        background: var(--pinbus-input-bg) !important;
    }

    .bus-landing-theme .landing-search-shell .input-group-text {
        padding-left: 0.55rem !important;
        padding-right: 0.25rem !important;
    }

    .bus-landing-theme .landing-search-shell .input-group-text .icon::before,
    .bus-landing-theme .landing-search-shell .input-group-text .font-icons::before {
        width: 1rem !important;
        height: 1rem !important;
    }

    .bus-landing-theme .landing-search-shell .input-booker,
    .bus-landing-theme .landing-search-shell .form-control.input-booker {
        min-height: 2.4rem !important;
        font-size: 0.8125rem !important;
        padding-top: 0.28rem !important;
        padding-bottom: 0.28rem !important;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.input-group {
        margin-bottom: 0 !important;
    }

    /* Ida y regreso móvil: dos columnas (referencia Pinbus) */
    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split {
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        min-height: 2.55rem;
        overflow: visible !important;
        cursor: pointer;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split > .input-group-text {
        display: none !important;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split .pinbus-date-facade {
        display: flex;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 2.5rem;
        pointer-events: auto;
        position: relative;
        z-index: 2;
        align-items: stretch;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split .pinbus-date-facade__seg {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.28rem 0.32rem 0.3rem 0.4rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.32rem;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split .pinbus-date-facade__ic {
        width: 0.95rem;
        height: 0.95rem;
        flex-shrink: 0;
        align-self: center;
    }

    /* Evita que label y valor (spans inline) fluyan en una sola línea y se solapen */
    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split .pinbus-date-facade__col {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0.08rem;
        min-width: 0;
        flex: 1 1 auto;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split .pinbus-date-facade__lbl {
        display: block;
        font-size: 0.625rem;
        color: var(--bus-blue-deep) !important;
        font-weight: 600 !important;
        line-height: 1.15;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split .pinbus-date-facade__val {
        display: block;
        font-size: 0.78rem;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split .pinbus-date-facade__val--placeholder {
        font-weight: 500 !important;
        color: #6d7782 !important;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split .pinbus-date-facade__seg--return::before {
        top: 0.28rem;
        bottom: 0.28rem;
    }

    .bus-landing-theme .landing-search-shell #calendarContainer.pinbus-cal-mobile-split #calendar-checkIn-flight {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100% !important;
        height: 100% !important;
        min-height: 2.5rem;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        opacity: 0 !important;
        cursor: pointer !important;
        color: transparent !important;
        -webkit-text-fill-color: transparent !important;
        z-index: 1;
        pointer-events: none !important;
    }

    .bus-landing-theme .landing-search-shell .c-lg-input-1:has(#calendarContainer.pinbus-cal-mobile-split) label[for="departure-date"] {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    .bus-landing-theme .landing-search-shell #searchButton {
        width: 100% !important;
        margin-top: 0.1rem;
        min-height: 2.65rem !important;
        font-size: 0.8125rem !important;
        border-radius: 8px !important;
        letter-spacing: 0.01em;
        color: #3d454d !important;
        padding-top: 0.4rem !important;
        padding-bottom: 0.4rem !important;
    }

    .bus-landing-theme .landing-search-shell #searchButton::before {
        width: 0.95rem;
        height: 0.95rem;
    }

    .bus-landing-theme .landing-search-shell .col-lg-3,
    .bus-landing-theme .landing-search-shell .col-12.col-lg-2.d-flex.align-items-center {
        padding-top: 0 !important;
    }

    .bus-landing-theme .landing-search-shell .col-12.col-lg-2.d-flex.align-items-center.pt-md-4 {
        padding-top: 0 !important;
    }

    .bus-landing-theme .landing-search-shell .card-body.c-booker.pt-3 {
        padding-top: 0.35rem !important;
    }

    .bus-landing-theme .landing-search-label-hint--in-card {
        margin-top: 0.35rem;
    }

    .bus-landing-theme .easepick-wrapper {
        z-index: 10070 !important;
    }
}

/* Desde tablet/desktop (≥768px): dropdown bajo el campo; selector sin .col-lg-3 para que aplique también en columnas col-12 */
@media (min-width: 768px) {
    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white {
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        max-width: min(100%, 32rem) !important;
        margin-top: 0.28rem !important;
        padding: 0.25rem 0 !important;
        border-radius: 10px !important;
        border: 1px solid var(--pinbus-input-border) !important;
        box-shadow: 0 10px 32px rgba(15, 50, 100, 0.16), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
        max-height: min(52vh, 22rem) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        z-index: 10060 !important;
        scrollbar-width: thin;
        scrollbar-color: #c5ced6 #f0f4f8;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white::-webkit-scrollbar {
        width: 6px;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white::-webkit-scrollbar-thumb {
        background: #c5ced6;
        border-radius: 6px;
    }

    /* Oculta “Búsquedas recientes” + listas + “Más orígenes/destinos” (comportamiento tipo modal); solo queda la lista de resultados al escribir */
    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > span.recentSearchsTitle {
        display: none !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:not(:last-of-type) {
        display: none !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:last-of-type {
        margin: 0 !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:last-of-type li.suggestion.list-group-item {
        margin: 0 0.35rem;
        border: none !important;
        border-radius: 8px;
        padding: 0.55rem 0.65rem 0.55rem 2.35rem !important;
        position: relative;
        color: var(--bus-blue-deep);
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:last-of-type li.suggestion.list-group-item::before {
        content: "";
        position: absolute;
        left: 0.55rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1.05rem;
        height: 1.05rem;
        opacity: 0.72;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='1.85' stroke-linecap='round'%3E%3Cpath d='M4 21V8l8-5 8 5v13'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3Cpath d='M9 10h6'/%3E%3C/svg%3E")
            center/contain no-repeat;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:last-of-type li.suggestion.list-group-item:hover,
    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:last-of-type li.suggestion.list-group-item:focus-visible {
        background: rgba(13, 95, 201, 0.08) !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:last-of-type .autocomplete-control {
        color: var(--bus-blue-deep) !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:last-of-type li.suggestion.list-group-item small.autocomplete-control {
        display: block;
        margin-top: 0.12rem;
        font-size: 0.78rem !important;
        font-weight: 500 !important;
        color: #5c6670 !important;
    }

    .bus-landing-theme .landing-search-shell .c-booker .position-relative > .autocomplete.bg-white > ul.list-group-flush:last-of-type .codePlace {
        color: var(--bus-blue-deep) !important;
        font-weight: 600 !important;
        font-size: 0.8125rem !important;
    }
}

/* Overlay móvil origen/destino (solo bloquear scroll en viewport móvil) */
@supports selector(:has(*)) {
    @media (max-width: 767.98px) {
        body.bus-landing-theme:has(.landing-search-shell .place-mobile) {
            overflow: hidden;
            touch-action: none;
        }
    }
}

/* Solo <768px (alineado con Bootstrap d-md-none): overlay a pantalla completa.
   Con max-width 991px, display:flex !important ganaba a .d-md-none y el modal seguía en desktop. */
@media (max-width: 767.98px) {
    .bus-landing-theme .landing-search-shell .place-mobile {
        position: fixed !important;
        inset: 0 !important;
        z-index: 10050 !important;
        display: flex !important;
        flex-direction: column !important;
        background: linear-gradient(180deg, #f0f4fa 0%, #fff 40%) !important;
        color: var(--bus-text) !important;
        padding-top: env(safe-area-inset-top, 0);
        padding-bottom: env(safe-area-inset-bottom, 0);
        overflow: hidden auto;
        -webkit-overflow-scrolling: touch;
    }

    .bus-landing-theme .landing-search-shell .place-mobile > .container-fluid:first-child {
        flex-shrink: 0;
        border-bottom: 1px solid rgba(13, 78, 168, 0.12);
        background: #fff;
    }

    .bus-landing-theme .landing-search-shell .place-mobile .btn-link {
        color: var(--bus-blue) !important;
    }

    .bus-landing-theme .landing-search-shell .place-mobile li.suggestion.list-group-item:active {
        background: rgba(13, 78, 168, 0.08) !important;
    }
}

/* Contenedor de la sección destinos (continúa en blanco tras la franja azul) */
.bus-landing-theme .bus-content-sheet {
    background: #fff;
    padding-bottom: 0.25rem;
}

@media (min-width: 992px) {
    .bus-landing-theme .bus-content-sheet {
        padding-bottom: 0;
    }
}

/* Franja azul tipo Pinbus (texto + pastilla de estrellas + borde amarillo) */
.bus-landing-theme .bus-trust-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #0d5fc9 0%, #0a4ba8 38%, #063a82 100%);
    border-bottom: 3px solid var(--bus-yellow);
    padding: 1rem 1rem 1.1rem;
}

.bus-landing-theme .bus-trust-banner__texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='120' height='120'%3E%3Cg fill='none'%3E%3Cpath stroke='%23ffffff' stroke-opacity='.22' stroke-width='1.2' d='M-10 96h200'/%3E%3Cpath stroke='%23ffffff' stroke-opacity='.14' stroke-width='0.9' stroke-dasharray='14 22' d='M-20 60h240'/%3E%3Cpath stroke='%23ffffff' stroke-opacity='.12' stroke-width='0.8' stroke-dasharray='10 16' d='M-30 28h280'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 220px 220px;
    background-position: 50% 40%;
}

.bus-landing-theme .bus-trust-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
}

.bus-landing-theme .bus-trust-banner__text {
    margin: 0;
    max-width: 38rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(0.84rem, 2.1vw, 1.05rem);
    font-weight: 500;
    line-height: 1.38;
}

.bus-landing-theme .bus-trust-banner__hl {
    color: var(--bus-yellow);
    font-weight: 800;
}

.bus-landing-theme .bus-trust-banner__strong {
    font-weight: 800;
    color: #fff;
}

.bus-landing-theme .bus-trust-banner__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.bus-landing-theme .bus-trust-banner__stars {
    color: var(--bus-yellow);
    letter-spacing: 0.14em;
    font-size: 1.02rem;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 40, 90, 0.35);
}

.bus-landing-theme .bus-trust-banner__vsep {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1;
    margin: 0 0.1rem;
}

.bus-landing-theme .bus-trust-banner__meta {
    color: #fff;
    font-size: clamp(0.82rem, 1.8vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .bus-landing-theme .bus-trust-banner__inner {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.75rem 1.1rem;
    }

    .bus-landing-theme .bus-trust-banner__text {
        text-align: left;
        flex: 0 1 auto;
        max-width: none;
    }
}

@media (min-width: 992px) {
    .bus-landing-theme .bus-trust-banner {
        padding: 1.15rem 1rem 1.2rem;
    }

    .bus-landing-theme .bus-trust-banner__text {
        font-size: 1.02rem;
    }
}

/* Destinos (bloque blanco bajo la franja) */
.bus-landing-theme .bus-destinations {
    padding: 1.5rem 0 2.75rem;
    background: #fff;
}

@media (min-width: 992px) {
    .bus-landing-theme .bus-destinations {
        padding: 2.75rem 0 3.75rem;
        background: #fff;
    }
}

.bus-landing-theme .bus-destinations .container {
    padding-left: var(--bus-mobile-pad);
    padding-right: var(--bus-mobile-pad);
}

.bus-landing-theme .bus-destinations__head {
    margin-bottom: 1.35rem;
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.25rem;
}

@media (min-width: 992px) {
    .bus-landing-theme .bus-destinations__head {
        margin-bottom: 2rem;
        padding-top: 0.5rem;
    }
}

.bus-landing-theme .bus-destinations__head h2 {
    font-size: clamp(1.45rem, 4.5vw, 1.85rem);
    font-weight: 800;
    color: var(--bus-navy-heading);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.bus-landing-theme .bus-destinations__sub {
    margin: 0.55rem 0 0;
    font-size: 0.96875rem;
    color: #6d7782;
    font-weight: 400;
    line-height: 1.45;
}

.bus-landing-theme .bus-destinations__fine {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.45;
}

.bus-landing-theme .bus-destinations__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 576px) {
    .bus-landing-theme .bus-destinations__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .bus-landing-theme .bus-destinations__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.bus-landing-theme .bus-dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    text-decoration: none !important;
    display: block;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

@media (min-width: 768px) {
    .bus-landing-theme .bus-dest-card {
        min-height: 200px;
        border-radius: 16px;
    }
}

.bus-landing-theme .bus-dest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(13, 62, 145, 0.2);
}

.bus-landing-theme .bus-dest-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.bus-landing-theme .bus-dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 1rem 0.9rem;
    color: #fff;
}

.bus-landing-theme .bus-dest-card__name {
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0 0 0.2rem;
}

.bus-landing-theme .bus-dest-card__price {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.95;
}

.bus-landing-theme .bus-dest-card__price strong {
    font-weight: 800;
}

/* Chat flotante → WhatsApp */
.bus-landing-theme .bus-chat-fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 1020;
    display: flex;
    align-items: flex-end;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
}

.bus-landing-theme .bus-chat-fab__bubble {
    background: #fff;
    border-radius: 16px;
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--bus-text);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: min(200px, 38vw);
    line-height: 1.25;
}

@media (min-width: 576px) {
    .bus-landing-theme .bus-chat-fab__bubble {
        font-size: 0.82rem;
        padding: 0.65rem 0.9rem;
        max-width: 200px;
    }
}

.bus-landing-theme .bus-chat-fab__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--bus-yellow);
    background: var(--bus-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(13, 62, 145, 0.35);
    flex-shrink: 0;
}

.bus-landing-theme .bus-footer {
    background: #f4f7fb;
    border-top: 1px solid rgba(13, 78, 168, 0.1);
    padding: 1.25rem 0;
    font-size: 0.82rem;
    color: var(--bus-muted);
}

.bus-landing-theme .bus-footer a {
    color: var(--bus-blue);
    text-decoration: none;
}

.bus-landing-theme .bus-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.bus-landing-theme recent-research {
    display: none !important;
}
