/* =============================================================
   OnlineRGE2026 — site.css
   Framework : Bootstrap 5.3.3
   Proyecto  : OnlineRGE2026 (.NET Framework 4.8 · MVC)
   Temas     : pa (Panamá · fallback) · pe (Perú) · co (Colombia) · lx (Luxury)
   Tipografía: Urbanist · Playfair Display  (cargadas vía <link> en _Layout.cshtml)
   Rutas img : relativas desde /Content/css/  →  ../images/
   Versión   : 2.0.0
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   1. RESET & BASE
   Transición suave al cambiar de tema; se excluye el hero
   para no animar la imagen de fondo.
───────────────────────────────────────────────────────────── */
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: background-color .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

img,
.st-hero,
.st-hero * {
    transition: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─────────────────────────────────────────────────────────────
   2. TOKENS DE TEMA
   Cada bloque redefine las variables nativas de Bootstrap 5.3
   más las variables personalizadas del proyecto (prefijo --st-).

   IMPORTANTE: --bs-primary-rgb (enteros separados por coma)
   es obligatorio para que Bootstrap resuelva correctamente
   sus llamadas internas:  rgba(var(--bs-primary-rgb), .X)
   (anillos de foco, sombras de botón, etc.)
───────────────────────────────────────────────────────────── */

/* ── PA · Panamá (tema predeterminado / fallback) ─────────── */
[data-st-theme="pa"] {
    --bs-primary: #0e4d8b;
    --bs-primary-rgb: 14, 77, 139;
    --bs-body-bg: #f0f6ff;
    --bs-body-color: #1a2a3a;
    --bs-border-color: #c8d9ee;
    --bs-border-radius: 12px;
    --bs-border-radius-lg: 16px;
    --bs-border-radius-xl: 20px;
    --st-accent: #C9A84C;
    --st-accent-rgb: 201, 168, 76;
    --st-navbar-bg: #0d2e5e;
    --st-footer-bg: #072a52;
    --st-footer-main-bg: #0d2e5e;
    --st-section-alt: #ffffff;
    --st-hero-img: url('https://rgebooking.com/assets/images/background/2.jpg');
    /* Producción local: url('../images/background/hero-pa.jpg') */
    --st-hero-overlay: linear-gradient(105deg, rgba(7,42,82,.72) 0%, rgba(7,42,82,.38) 55%, rgba(7,42,82,.08) 100%);
    --st-card-shadow: 0 2px 16px rgba(14,77,139,.10);
    --st-card-shadow-hover: 0 8px 32px rgba(14,77,139,.18);
    --st-input-focus-shadow: 0 0 0 3px rgba(14,77,139,.18);
}

/* ── PE · Perú (celeste / sky blue) ────────────────────────── */
[data-st-theme="pe"] {
    --bs-primary: #0288D1;
    --bs-primary-rgb: 2, 136, 209;
    --bs-body-bg: #f0f8ff;
    --bs-body-color: #0a1a2e;
    --bs-border-color: #b0d4ee;
    --bs-border-radius: 12px;
    --bs-border-radius-lg: 16px;
    --bs-border-radius-xl: 20px;
    --st-accent: #FFD700;
    --st-accent-rgb: 255, 215, 0;
    --st-navbar-bg: #013960;
    --st-footer-bg: #014d78;
    --st-footer-main-bg: #013960;
    --st-section-alt: #ffffff;
    --st-hero-img: url('https://images.unsplash.com/photo-1526392060635-9d6019884377?w=1600&q=80');
    /* Producción local: url('../images/background/hero-pe.jpg') */
    --st-hero-overlay: linear-gradient(105deg, rgba(1,55,90,.72) 0%, rgba(1,55,90,.38) 55%, rgba(1,55,90,.08) 100%);
    --st-card-shadow: 0 2px 16px rgba(2,136,209,.10);
    --st-card-shadow-hover: 0 8px 32px rgba(2,136,209,.18);
    --st-input-focus-shadow: 0 0 0 3px rgba(2,136,209,.20);
}

/* ── CO · Colombia ─────────────────────────────────────────── */
[data-st-theme="co"] {
    --bs-primary: #003087;
    --bs-primary-rgb: 0, 48, 135;
    --bs-body-bg: #f0f4ff;
    --bs-body-color: #0a1a2a;
    --bs-border-color: #b8c8e8;
    --bs-border-radius: 12px;
    --bs-border-radius-lg: 16px;
    --bs-border-radius-xl: 20px;
    --st-accent: #FDD835;
    --st-accent-rgb: 253, 216, 53;
    --st-navbar-bg: #001040;
    --st-footer-bg: #001a52;
    --st-footer-main-bg: #001040;
    --st-section-alt: #ffffff;
    --st-hero-img: url('../images/portadas/colombia.jpg');
    /* Producción local: url('../images/background/hero-co.jpg') */
    --st-hero-overlay: linear-gradient(105deg, rgba(0,26,82,.72) 0%, rgba(0,26,82,.38) 55%, rgba(0,26,82,.08) 100%);
    --st-card-shadow: 0 2px 16px rgba(0,48,135,.10);
    --st-card-shadow-hover: 0 8px 32px rgba(0,48,135,.18);
    --st-input-focus-shadow: 0 0 0 3px rgba(0,48,135,.18);
}

/* ── LX · Luxury ───────────────────────────────────────────── */
[data-st-theme="lx"] {
    --bs-primary: #2C2C2C;
    --bs-primary-rgb: 44, 44, 44;
    --bs-body-bg: #f5f0ea;
    --bs-body-color: #1a1a1a;
    --bs-border-color: #d4c9b8;
    --bs-border-radius: 12px;
    --bs-border-radius-lg: 16px;
    --bs-border-radius-xl: 20px;
    --st-accent: #C9A84C;
    --st-accent-rgb: 201, 168, 76;
    --st-navbar-bg: #111111;
    --st-footer-bg: #111111;
    --st-footer-main-bg: #0a0a0a;
    --st-section-alt: #ffffff;
    --st-hero-img: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80');
    /* Producción local: url('../images/background/hero-lx.jpg') */
    --st-hero-overlay: linear-gradient(105deg, rgba(17,17,17,.75) 0%, rgba(17,17,17,.42) 55%, rgba(17,17,17,.10) 100%);
    --st-card-shadow: 0 2px 16px rgba(44,44,44,.10);
    --st-card-shadow-hover: 0 8px 32px rgba(44,44,44,.20);
    --st-input-focus-shadow: 0 0 0 3px rgba(201,168,76,.30);
}

/* ─────────────────────────────────────────────────────────────
   3. OVERRIDES DE COMPONENTES BOOTSTRAP 5.3
   Se reescriben las CSS vars internas de cada componente
   para que hereden los tokens del tema sin romper el cascade.
───────────────────────────────────────────────────────────── */

/* Botón primario */
.btn-primary {
    --bs-btn-bg: rgba(var(--bs-primary-rgb), 1);
    --bs-btn-border-color: rgba(var(--bs-primary-rgb), 1);
    --bs-btn-hover-bg: rgba(var(--bs-primary-rgb), .87);
    --bs-btn-hover-border-color: rgba(var(--bs-primary-rgb), .87);
    --bs-btn-active-bg: rgba(var(--bs-primary-rgb), .75);
    --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: .01em;
    color: #fff !important;
}

/* Botón outline-primary */
.btn-outline-primary {
    --bs-btn-color: rgba(var(--bs-primary-rgb), 1);
    --bs-btn-border-color: rgba(var(--bs-primary-rgb), 1);
    --bs-btn-hover-bg: rgba(var(--bs-primary-rgb), 1);
    --bs-btn-hover-border-color: rgba(var(--bs-primary-rgb), 1);
    border-radius: 10px;
    font-weight: 600;
}

/* Inputs & selects */
.form-control,
.form-select {
    border-radius: var(--bs-border-radius);
    border-color: var(--bs-border-color);
    font-size: .9rem;
    transition: border-color .2s, box-shadow .2s;
}

    .form-control:focus,
    .form-select:focus {
        border-color: rgba(var(--bs-primary-rgb), .6);
        box-shadow: var(--st-input-focus-shadow);
    }

/* Cards Bootstrap */
.card {
    border-radius: var(--bs-border-radius-lg);
    border-color: var(--bs-border-color);
    box-shadow: var(--st-card-shadow);
}

/* Badges */
.badge {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: .02em;
}

/* Alerts */
.alert {
    border-radius: var(--bs-border-radius);
    border-left-width: 4px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
}

/* Nav tabs */
.nav-tabs .nav-link {
    border-radius: 10px 10px 0 0;
    font-weight: 500;
    color: var(--bs-body-color);
    opacity: .65;
}

    .nav-tabs .nav-link.active {
        color: rgba(var(--bs-primary-rgb), 1);
        font-weight: 600;
        opacity: 1;
    }

/* Dropdowns */
.dropdown-menu {
    border-radius: var(--bs-border-radius-lg);
    border-color: var(--bs-border-color);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.dropdown-item {
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(var(--bs-primary-rgb), .06);
        color: rgba(var(--bs-primary-rgb), 1);
    }

/* Modales */
.modal-content {
    border-radius: var(--bs-border-radius-xl);
    border: none;
    box-shadow: 0 24px 64px rgba(0,0,0,.20);
}

.modal-header {
    border-bottom-color: var(--bs-border-color);
    padding: 1.25rem 1.5rem;
}

.modal-footer {
    border-top-color: var(--bs-border-color);
    padding: 1rem 1.5rem;
}

/* Tablas */
.table {
    --bs-table-border-color: var(--bs-border-color);
    font-size: .88rem;
}

    .table thead th {
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .09em;
        text-transform: uppercase;
        color: var(--bs-body-color);
        opacity: .55;
        border-bottom-width: 1px;
        padding-top: .9rem;
        padding-bottom: .9rem;
    }

    .table tbody tr {
        transition: background .15s;
    }

.table-hover tbody tr:hover {
    background: rgba(var(--bs-primary-rgb), .04);
}

/* Pagination */
.page-link {
    border-radius: 8px !important;
    margin: 0 2px;
    border-color: var(--bs-border-color);
    color: rgba(var(--bs-primary-rgb), 1);
    font-weight: 500;
    font-size: .875rem;
}

.page-item.active .page-link {
    background: rgba(var(--bs-primary-rgb), 1);
    border-color: rgba(var(--bs-primary-rgb), 1);
}

/* Scrollbar global (webkit) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bs-body-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--bs-primary-rgb), .25);
    border-radius: 99px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(var(--bs-primary-rgb), .45);
    }

/* Selección de texto */
::selection {
    background: rgba(var(--st-accent-rgb), .30);
    color: var(--bs-body-color);
}

/* ─────────────────────────────────────────────────────────────
   4. BARRA DE NAVEGACIÓN  (.st-navbar)
───────────────────────────────────────────────────────────── */
.st-navbar {
    background-color: var(--st-navbar-bg, #0d2e5e);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 2px 20px rgba(0,0,0,.28);
    z-index: 1030;
}

/* Contenedor del logo */
.st-logo-wrap {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Links de navegación */
.st-nav-link {
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    padding: .3rem 0;
    white-space: nowrap;
    letter-spacing: .01em;
    transition: color .18s;
}

    .st-nav-link:hover,
    .st-nav-link:focus {
        color: #fff;
    }

    .st-nav-link .bi {
        font-size: .62rem;
        opacity: .55;
        vertical-align: middle;
        margin-left: 1px;
    }

/* Pill de banderas */
.st-flag-pill {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 9999px;
    padding: 3px 8px;
    background: rgba(255,255,255,.08);
}

.st-flag-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    opacity: .45;
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    transition: opacity .2s, box-shadow .2s;
}

    .st-flag-btn.active {
        opacity: 1;
        box-shadow: 0 0 0 1.5px #fff, 0 0 0 3.5px rgba(255,255,255,.32);
    }

    .st-flag-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 50%;
    }

/* Botón "Mi cuenta" */
.st-cuenta-toggle {
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.26);
    color: #fff;
    border-radius: 9999px;
    padding: .28rem .9rem .28rem .38rem;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
}

    .st-cuenta-toggle:hover,
    .st-cuenta-toggle.show {
        background: rgba(255,255,255,.22);
        border-color: rgba(255,255,255,.50);
    }

    .st-cuenta-toggle::after {
        display: none;
    }
/* oculta el caret de Bootstrap */

.st-cuenta-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255,255,255,.55);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

/* Menú desplegable de cuenta */
.st-cuenta-menu {
    min-width: 268px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    padding: 0;
    overflow: hidden;
    margin-top: .55rem !important;
}

.st-cuenta-header {
    background: linear-gradient(135deg, #0d2e5e 0%, #1a4e8a 100%);
    padding: 1.2rem 1.25rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .85rem;
}

.st-cuenta-avatar-lg {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255,255,255,.55);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-cuenta-company {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
    margin-bottom: .1rem;
}

.st-cuenta-name {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
}

.st-cuenta-role {
    font-size: .72rem;
    color: rgba(255,255,255,.52);
    margin-bottom: 0;
}

.st-cuenta-body {
    padding: .5rem;
    background: #fff;
}

.st-cuenta-item {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .58rem .78rem;
    border-radius: 10px;
    font-size: .84rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    transition: background .16s;
}

    .st-cuenta-item:hover {
        background: #f3f4f6;
        color: #111;
    }

    .st-cuenta-item .bi {
        font-size: 1rem;
        color: #9ca3af;
        width: 18px;
        text-align: center;
    }

    .st-cuenta-item:hover .bi {
        color: rgba(var(--bs-primary-rgb), 1);
    }

.st-cuenta-divider {
    height: 1px;
    background: #f3f4f6;
    margin: .25rem .55rem;
}

.st-cuenta-logout {
    color: #dc2626 !important;
}

    .st-cuenta-logout .bi {
        color: #dc2626 !important;
    }

    .st-cuenta-logout:hover {
        background: #fef2f2 !important;
    }

/* ─────────────────────────────────────────────────────────────
   5. HERO  (.st-hero)
───────────────────────────────────────────────────────────── */
.st-hero {
    position: relative;
    min-height: 640px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: var(--st-hero-overlay), var(--st-hero-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.st-hero-content {
    position: relative;
    z-index: 3;
}

.st-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
    z-index: 2;
}

/* Tipografía del hero */
.st-hero-eyebrow {
    font-family: 'Great Vibes', cursive;
    color: var(--st-accent);
    font-size: clamp(40px, 5vw, 64px);
    line-height: .85;
    text-shadow: 0 2px 12px rgba(0,0,0,.50), 0 1px 4px rgba(0,0,0,.35);
}

.st-hero-country {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(52px, 7vw, 84px);
    font-weight: 800;
    color: #fff;
    line-height: .92;
    margin: 8px 0;
    text-shadow: 0 2px 18px rgba(0,0,0,.58), 0 1px 5px rgba(0,0,0,.42);
    letter-spacing: -.01em;
}

.st-hero-tagline {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 18px;
    color: var(--st-accent);
    text-shadow: 0 2px 12px rgba(0,0,0,.50), 0 1px 4px rgba(0,0,0,.35);
}

.st-hero-desc {
    color: rgba(255,255,255,.93);
    font-size: clamp(.88rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.70;
    margin-bottom: 32px;
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(0,0,0,.52), 0 1px 3px rgba(0,0,0,.38);
}

/* CTAs del hero */
.st-hero-cta-primary {
    background-color: var(--st-accent);
    color: #1a1100;
    border: none;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .02em;
    padding: .62rem 1.55rem;
    border-radius: 10px;
    transition: filter .2s, -webkit-transform .15s, transform .15s;
    cursor: pointer;
}

    .st-hero-cta-primary:hover {
        filter: brightness(1.10);
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }

.st-hero-cta-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.62);
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    padding: .62rem 1.55rem;
    border-radius: 10px;
    transition: background .2s, border-color .2s, -webkit-transform .15s, transform .15s;
    cursor: pointer;
}

    .st-hero-cta-outline:hover {
        background: rgba(255,255,255,.13);
        border-color: rgba(255,255,255,.88);
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }

/* Tarjeta flotante del hero */
.st-hero-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 44px rgba(0,0,0,.22);
    padding: 1.3rem;
    max-width: 290px;
    position: relative;
    z-index: 3;
}

.st-hero-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bs-body-bg);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--bs-primary-rgb), 1);
    font-size: 1.25rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-hero-card-title {
    font-size: .875rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: .22rem;
}

.st-hero-card-text {
    font-size: .76rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: .5rem;
}

.st-hero-card-link {
    font-size: .76rem;
    font-weight: 700;
    color: rgba(var(--bs-primary-rgb), 1);
    text-decoration: none;
    letter-spacing: .01em;
}

    .st-hero-card-link:hover {
        text-decoration: underline;
    }

/* ─────────────────────────────────────────────────────────────
   6. TÍTULOS DE SECCIÓN
───────────────────────────────────────────────────────────── */
.st-section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bs-body-color);
    letter-spacing: -.01em;
}

    .st-section-title span {
        color: rgba(var(--bs-primary-rgb), 1);
        font-weight: 800;
    }

.st-heading-cursive {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 4vw, 2.4rem);
    font-style: italic;
    color: rgba(var(--bs-primary-rgb), 1);
    line-height: 1.2;
}

.st-divider-line {
    height: 1px;
    width: 44px;
    background: linear-gradient(to right, transparent, var(--st-accent));
}

    .st-divider-line.rev {
        background: linear-gradient(to left, transparent, var(--st-accent));
    }

/* ─────────────────────────────────────────────────────────────
   7. TARJETAS DE CARACTERÍSTICAS  (.st-feature-card)
───────────────────────────────────────────────────────────── */
.st-feature-card {
    background: var(--st-section-alt);
    border: 1px solid var(--bs-border-color);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    cursor: pointer;
    transition: box-shadow .24s, -webkit-transform .22s, transform .22s;
    text-decoration: none;
    color: inherit;
}

    .st-feature-card:hover {
        box-shadow: var(--st-card-shadow-hover);
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
        text-decoration: none;
        color: inherit;
    }

.st-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--bs-body-bg);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--bs-primary-rgb), 1);
    font-size: 1.45rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-feature-info {
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
}

.st-feature-name {
    font-size: .92rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin-bottom: .1rem;
}

.st-feature-desc {
    font-size: .77rem;
    color: #6b7280;
    line-height: 1.45;
    margin-bottom: 0;
}

.st-feature-chevron {
    color: var(--st-accent);
    font-size: 1.1rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    transition: -webkit-transform .2s, transform .2s;
}

.st-feature-card:hover .st-feature-chevron {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────
   8. RAILS DE DESTINOS  (.st-dest-rail)
───────────────────────────────────────────────────────────── */
.st-dest-wrap {
    position: relative;
    padding: 0 2.1rem;
}

.st-dest-rail {
    display: -webkit-flex;
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}

    .st-dest-rail::-webkit-scrollbar {
        display: none;
    }

.st-dest-card {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    width: 148px;
    height: 116px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: -webkit-transform .22s, transform .22s, box-shadow .22s;
}

    .st-dest-card:hover {
        -webkit-transform: scale(1.045);
        transform: scale(1.045);
        box-shadow: 0 6px 22px rgba(0,0,0,.18);
    }
    /* Solo la imagen de fondo (hijo directo), NO la bandera */
    .st-dest-card > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.st-dest-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.68) 0%, transparent 55%);
}

.st-dest-label {
    position: absolute;
    bottom: .52rem;
    left: .58rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.st-dest-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-dest-name {
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.55);
    letter-spacing: .01em;
}

/* Botones de navegación del rail */
.st-rail-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    cursor: pointer;
    padding: 0;
    color: #6b7280;
    transition: box-shadow .2s, -webkit-transform .18s, transform .18s;
}

    .st-rail-btn:hover {
        box-shadow: 0 4px 18px rgba(0,0,0,.18);
        -webkit-transform: translateY(-50%) scale(1.08);
        transform: translateY(-50%) scale(1.08);
    }

    .st-rail-btn.prev {
        left: 0;
    }

    .st-rail-btn.next {
        right: 0;
    }

/* ─────────────────────────────────────────────────────────────
   9. TESTIMONIOS  (.st-testimonial-*)
───────────────────────────────────────────────────────────── */
.st-testimonial-section {
    background: var(--bs-body-bg);
}

.st-avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--st-accent);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

    .st-avatar-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.st-quote-open {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: .8;
    color: var(--st-accent);
    margin-bottom: .3rem;
}

.st-testimonial-text {
    font-style: italic;
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.78;
    margin-bottom: .75rem;
    text-align: justify;
}

.st-testimonial-author {
    font-size: .86rem;
    font-weight: 700;
    color: rgba(var(--bs-primary-rgb), 1);
    margin-bottom: .15rem;
    text-align: center;
}

.st-testi-brand {
    font-size: .73rem;
    font-style: italic;
    color: var(--bs-secondary-color);
    opacity: .65;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: .03em;
}

.st-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #d1d5db;
    cursor: pointer;
    transition: background .22s, -webkit-transform .18s, transform .18s;
}

    .st-dot.active {
        background: rgba(var(--bs-primary-rgb), 1);
        -webkit-transform: scale(1.22);
        transform: scale(1.22);
    }

.st-testi-btn {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.10);
    cursor: pointer;
    padding: 0;
    color: #6b7280;
    transition: box-shadow .2s, -webkit-transform .18s, transform .18s;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

    .st-testi-btn:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,.15);
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }

/* ─────────────────────────────────────────────────────────────
   10. FOOTER TRUST BAR  (.st-footer)
───────────────────────────────────────────────────────────── */
.st-footer {
    background-color: var(--st-footer-bg);
}

.st-footer-sep {
    width: 1px;
    background: rgba(255,255,255,.12);
    align-self: stretch;
}

.st-footer-item {
    -webkit-flex: 1;
    flex: 1;
    min-width: 190px;
}

.st-footer-icon-wrap {
    font-size: 1.75rem;
    color: var(--st-accent);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-footer-label {
    font-size: .86rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .18rem;
}

.st-footer-desc {
    font-size: .74rem;
    color: rgba(255,255,255,.48);
    line-height: 1.55;
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────
   11. FOOTER PRINCIPAL  (.st-footer-main)
───────────────────────────────────────────────────────────── */
.st-footer-main {
    background: var(--st-footer-main-bg);
}

.st-fmain-logo {
    height: 34px;
    width: auto;
}

.st-fmain-desc {
    font-size: .83rem;
    color: rgba(255,255,255,.52);
    line-height: 1.72;
}

.st-fmain-heading {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-bottom: 1rem;
}

.st-fmain-link {
    display: block;
    font-size: .84rem;
    font-weight: 500;
    color: rgba(255,255,255,.62);
    text-decoration: none;
    margin-bottom: .55rem;
    transition: color .18s;
}

    .st-fmain-link:hover {
        color: var(--st-accent);
    }

.st-fmain-contact {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .83rem;
    font-weight: 400;
    color: rgba(255,255,255,.62);
    margin-bottom: .65rem;
    text-decoration: none;
    transition: color .18s;
}

    .st-fmain-contact .bi {
        color: var(--st-accent);
        font-size: .9rem;
        margin-top: .12rem;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }

    .st-fmain-contact:hover {
        color: #fff;
    }

.st-social-row {
    display: -webkit-flex;
    display: flex;
    gap: .5rem;
}

.st-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.62);
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}

    .st-social-btn:hover {
        background: var(--st-accent);
        border-color: var(--st-accent);
        color: #1a1100;
    }

.st-fmain-divider {
    border-color: rgba(255,255,255,.10);
}

.st-fmain-copy {
    font-size: .76rem;
    color: rgba(255,255,255,.35);
}

    .st-fmain-copy a {
        color: rgba(255,255,255,.48);
        text-decoration: none;
        transition: color .18s;
    }

        .st-fmain-copy a:hover {
            color: var(--st-accent);
        }

/* ─────────────────────────────────────────────────────────────
   11.1 FOOTER PRINCIPAL — EXTENSIONES (rediseño)
   Logo lockup, mapa de fondo, links con icono, contacto con
   avatar circular, trustbox de pagos/membresías y selector de
   idioma. Construidas sobre las variables de tema existentes.
───────────────────────────────────────────────────────────── */

/* Mapa del mundo de fondo (decorativo, esquina derecha) */
.st-footer-main {
    position: relative;
    overflow: hidden;
}

    .st-footer-main::after {
        content: '';
        position: absolute;
        top: 0;
        right: -5%;
        width: 620px;
        height: 100%;
        background-image: url('https://rgebooking.com/assets/images/footer/mapa-mundo-puntos.png');
        background-repeat: no-repeat;
        background-position: right center;
        background-size: contain;
        opacity: .14;
        pointer-events: none;
        z-index: 0;
    }

    .st-footer-main > .container-xl {
        position: relative;
        z-index: 1;
    }

/* Logo lockup: RGE + BOOKING + by Style Travel */
.st-fmain-logo-lockup {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
}

.st-fmain-logo-badge {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #0e4d8b 100%);
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .02em;
}

.st-fmain-logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.st-fmain-logo-tagline {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.48);
    margin: 0;
}

/* Links con icono (Enlaces rápidos) */
.st-fmain-link-ico {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .st-fmain-link-ico i {
        color: var(--st-accent);
        font-size: .8rem;
    }

/* Destinos populares */
.st-fmain-dest-more {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-top: .35rem;
    transition: color .18s, gap .18s;
}

    .st-fmain-dest-more:hover {
        color: var(--st-accent);
        gap: .5rem;
    }

/* Contacto — avatar circular */
.st-fmain-contact-row {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.1rem;
}

    .st-fmain-contact-row:last-child {
        margin-bottom: 0;
    }

.st-fmain-contact-avatar {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--st-accent);
    font-size: .95rem;
}

.st-fmain-contact-text {
    font-size: .84rem;
    color: rgba(255,255,255,.68);
    line-height: 1.5;
    text-decoration: none;
    transition: color .18s;
}

a.st-fmain-contact-text:hover {
    color: #fff;
}

/* Trustbox: pago seguro + tarjetas + membresías */
.st-fmain-trustbox {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--bs-border-radius-lg);
    padding: 1.35rem 1.75rem;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.5rem;
}

.st-fmain-trust-item {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .85rem;
    flex: 1 1 0;
    min-width: 0;
}

.st-fmain-trust-icon {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--st-accent);
    font-size: 1.15rem;
}

.st-fmain-trust-title {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .1rem;
}

.st-fmain-trust-desc {
    font-size: .76rem;
    color: rgba(255,255,255,.48);
    line-height: 1.4;
    margin: 0;
}

.st-fmain-trust-sep {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

.st-fmain-cards-row {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    flex-shrink: 0;
}

.st-fmain-card-logo {
    height: 38px;
    width: 42px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    padding: 3px 5px;
    flex-shrink: 0;
    overflow: hidden;
}

.st-fmain-partners-label {
    font-size: .74rem;
    font-weight: 600;
    color: rgba(255,255,255,.48);
    margin: 0 0 .35rem;
    white-space: nowrap;
}

.st-fmain-partners-row {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.st-fmain-partner-logo {
    height: 32px;
    width: auto;
    max-width: 92px;
    object-fit: contain;
    opacity: .9;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

/* Selector de idioma (barra de copyright) */
.st-fmain-lang {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 99px;
    padding: .4rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background .18s;
}

    .st-fmain-lang:hover {
        background: rgba(255,255,255,.12);
    }

    .st-fmain-lang i:first-child {
        color: var(--st-accent);
    }

    .st-fmain-lang i:last-child {
        font-size: .68rem;
        opacity: .7;
    }

/* ── Responsive: Trustbox ──────────────────────────────────────
   ≥992px (lg)  : 3 columnas en una sola fila, con separadores.
   768–991px(md): 3 columnas en una sola fila más compacta, sin
                  separadores (para ganar espacio horizontal).
   <768px       : columna apilada, cada bloque centrado.
──────────────────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 991.98px) {
    .st-fmain-trustbox {
        gap: 1rem;
        padding: 1.25rem 1.35rem;
    }

    .st-fmain-trust-desc br {
        display: none;
    }

    .st-fmain-partners-row {
        gap: .65rem;
    }

    .st-fmain-partner-logo {
        max-width: 70px;
    }
}

@media (max-width: 767.98px) {
    .st-footer-main::after {
        display: none;
    }

    .st-fmain-trustbox {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }

    .st-fmain-trust-item {
        flex-direction: column;
        flex: 1 1 auto;
    }

        .st-fmain-trust-item:first-child {
            align-items: center;
        }

    .st-fmain-cards-row,
    .st-fmain-partners-row {
        justify-content: center;
    }

    .st-fmain-trust-sep {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────
   12. UTILITARIOS DE PÁGINA MVC
   Clases auxiliares para vistas Razor (.cshtml)
───────────────────────────────────────────────────────────── */

/* Página de contenido genérico */
.st-page-header {
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid var(--bs-border-color);
    margin-bottom: 2rem;
}

.st-page-title {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--bs-body-color);
    margin-bottom: .25rem;
    letter-spacing: -.01em;
}

.st-page-subtitle {
    font-size: .9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: #9ca3af;
}

.breadcrumb-item a {
    color: rgba(var(--bs-primary-rgb), 1);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #6b7280;
}

/* Panel / widget genérico */
.st-panel {
    background: var(--st-section-alt);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    box-shadow: var(--st-card-shadow);
    padding: 1.5rem;
}

.st-panel-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin-bottom: 1rem;
}

/* Estado vacío */
.st-empty {
    text-align: center;
    padding: 3.5rem 1rem;
    color: #9ca3af;
}

    .st-empty .bi {
        font-size: 2.8rem;
        margin-bottom: .75rem;
        display: block;
        opacity: .45;
    }

.st-empty-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: .4rem;
}

.st-empty-desc {
    font-size: .85rem;
}

/* Spinners / loaders */
.st-loader {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: rgba(var(--bs-primary-rgb), .6);
    gap: .75rem;
    font-size: .9rem;
    font-weight: 500;
}

/* Toast / notificaciones */
.st-toast {
    border-radius: 14px;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    min-width: 280px;
}

    .st-toast .toast-header {
        border-bottom-color: var(--bs-border-color);
        font-weight: 600;
        font-size: .85rem;
    }

/* Validación Bootstrap (clases .is-valid / .is-invalid) */
.is-valid {
    border-color: #10b981 !important;
}

.is-invalid {
    border-color: #ef4444 !important;
}

.valid-feedback {
    color: #059669;
    font-size: .78rem;
}

.invalid-feedback {
    font-size: .78rem;
}

/* ─────────────────────────────────────────────────────────────
   13. BADGE DE TEMA & SWITCHER (herramientas de desarrollo)
   Posición fija: badge abajo-izquierda · switcher abajo-derecha
───────────────────────────────────────────────────────────── */
.st-badge {
    position: fixed;
    bottom: 1.1rem;
    left: 1.1rem;
    background: #fff;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 9999px;
    padding: .3rem .9rem;
    font-size: .7rem;
    font-weight: 700;
    color: rgba(var(--bs-primary-rgb), 1);
    box-shadow: 0 2px 14px rgba(0,0,0,.12);
    z-index: 1055;
    pointer-events: none;
    letter-spacing: .02em;
}

.st-switcher {
    position: fixed;
    bottom: 1.1rem;
    right: 1.1rem;
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 16px;
    padding: .75rem .65rem;
    box-shadow: 0 4px 28px rgba(0,0,0,.15);
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1055;
}

.st-sw-label {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #9ca3af;
    text-align: center;
    margin-bottom: .5rem;
}

.st-sw-btn {
    width: 44px;
    height: 34px;
    border-radius: 8px;
    border: 2.5px solid transparent;
    font-size: .68rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    opacity: .55;
    -webkit-transform: scale(.93);
    transform: scale(.93);
    transition: opacity .2s, -webkit-transform .2s, transform .2s, box-shadow .2s;
    letter-spacing: .04em;
}

    .st-sw-btn.active {
        opacity: 1;
        -webkit-transform: scale(1.07);
        transform: scale(1.07);
        box-shadow: 0 0 0 3px #fff, 0 0 0 5.5px var(--st-accent);
    }

    .st-sw-btn:hover:not(.active) {
        opacity: .82;
        -webkit-transform: scale(.97);
        transform: scale(.97);
    }

/* ─────────────────────────────────────────────────────────────
   14. RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .st-hero {
        min-height: 520px;
    }

    .st-hero-card {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .st-hero {
        min-height: 420px;
    }

    .st-hero-card {
        max-width: 100%;
    }

    .st-dest-card {
        width: 132px;
        height: 105px;
    }

    .st-switcher {
        right: .6rem;
        bottom: .6rem;
    }

    .st-badge {
        left: .6rem;
        bottom: .6rem;
    }

    .st-panel {
        padding: 1.1rem;
    }

    .st-page-header {
        padding: 1.5rem 0 1rem;
    }
}

@media print {
    .st-switcher,
    .st-badge,
    .st-navbar,
    .st-footer,
    .st-footer-main {
        display: none !important;
    }
}

/* ─────────────────────────────────────────────────────────────
   15. VISTA TRASLADOS
   Hero centrado · Tarjeta picker flotante · Picker rail
───────────────────────────────────────────────────────────── */

/*
 * Hero con imagen fija de aeropuerto (no cambia con el tema).
 * Se sobreescribe --st-hero-img a nivel de elemento; el overlay
 * temático (--st-hero-overlay) sí sigue cambiando por tema.
 * width/margin-left aseguran que el hero ocupe el 100 % del
 * viewport aunque el <main> tenga padding o un contenedor padre.
 */
.st-hero-traslados {
    --st-hero-img: url('https://rgebooking.com/assets/images/portadas/aeropuerto.jpg');
    padding-bottom: 210px !important;
    min-height: 560px;
    /* Full-bleed: escapa cualquier contenedor padre centrado */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
}

.st-traslados-hero-inner {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 2.5rem;
}

/* Descripción centrada (sobreescribe max-width de Index) */
.st-hero-desc-center {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

/* Botones CTA con icono inline */
.st-hero-cta-icon {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

    .st-hero-cta-icon .bi {
        font-size: .95rem;
    }

/* Sección contenedora — fondo de página, espacio inferior */
.st-traslados-body {
    background: var(--bs-body-bg);
    padding-bottom: 4rem;
}

/* ── Tarjeta flotante "Selecciona un Destino" ──────────────── */
.st-dest-picker {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 14px 56px rgba(0, 0, 0, .16);
    padding: 2rem 2rem 1.75rem;
    margin-top: -165px; /* superpone al hero */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    max-width: 900px; /* más ancho para acomodar el rail */
}

    /*
 * Picker cards dentro del rail horizontal:
 * flex-shrink: 0 evita que se compriman.
 * El ancho fijo define cuántos destinos se ven a la vez.
 */
    .st-dest-picker .st-dest-rail .st-picker-card {
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        width: 148px;
    }

    /* El st-dest-wrap dentro del picker hereda el estilo del rail global */
    .st-dest-picker .st-dest-wrap {
        padding: 0 2.2rem;
    }

.st-dest-picker-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: #1a2a3a;
    text-align: center;
    margin-bottom: .45rem;
}

/* Línea dorada debajo del título */
.st-dest-picker-accent {
    width: 46px;
    height: 3px;
    background: var(--st-accent);
    border-radius: 99px;
    margin: 0 auto .5rem;
}

/* ── Tarjeta individual de destino dentro del picker ──────── */
.st-picker-card {
    cursor: pointer;
    -webkit-transition: -webkit-transform .22s;
    transition: transform .22s;
}

    .st-picker-card:hover {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

        .st-picker-card:hover .st-picker-card-img {
            box-shadow: 0 10px 28px rgba(0, 0, 0, .20);
        }

/* Foto cuadrada con esquinas redondeadas */
.st-picker-card-img {
    width: 100%;
    -webkit-aspect-ratio: 1 / 1;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    -webkit-transition: box-shadow .22s;
    transition: box-shadow .22s;
}

/* Etiqueta bandera + nombre debajo de la foto */
.st-picker-card-label {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .1rem .1rem;
}

.st-picker-card-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .16);
}

.st-picker-card-name {
    font-family: 'Urbanist', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Responsive Traslados ─────────────────────────────────── */
@media (max-width: 991.98px) {
    .st-hero-traslados {
        padding-bottom: 180px !important;
    }

    .st-dest-picker {
        margin-top: -140px;
    }
}

@media (max-width: 575.98px) {
    .st-hero-traslados {
        padding-bottom: 130px !important;
        min-height: 460px;
    }

    .st-dest-picker {
        margin-top: -100px;
        padding: 1.4rem .75rem 1.2rem;
        border-radius: 16px;
    }

    .st-dest-picker-title {
        font-size: 1.05rem;
    }

    .st-picker-card-img {
        border-radius: 10px;
    }

    .st-dest-picker .st-dest-rail .st-picker-card {
        width: 130px;
    }
}

/* ╔══════════════════════════════════════════════════════════════
   § 16  VISTA HISTORIA
   Hero panorámico izquierda→derecha + tarjetas alternadas
══════════════════════════════════════════════════════════════ */

/* ── Hero específico ─────────────────────────────────────────── */
.st-hero-historia {
    /*--st-hero-img: url('https://rgebooking.com/assets/images/portadas/historia.jpg');*/
    background-image: url(../../assets/images/portadas/cascoantiguo.jpg);
    /* Overlay oscuro a la izquierda, transparente a la derecha */
    --st-hero-overlay: linear-gradient( to right, rgba(5, 14, 32, .92) 0%, rgba(5, 14, 32, .68) 38%, rgba(5, 14, 32, .16) 70%, transparent 100% );
    min-height: 320px;
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
    /* Full-bleed: escapa el container del main */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
}

/* Bloque de texto hero — alineado a la izquierda, ancho limitado */
.st-historia-hero-inner {
    text-align: left;
    max-width: 540px;
}

/* Línea dorada de acento bajo el título */
.st-historia-accent-line {
    width: 56px;
    height: 3px;
    background: var(--st-accent);
    border-radius: 99px;
}

/* Descripción dentro del hero */
.st-historia-hero-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: .97rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .82);
    line-height: 1.65;
    max-width: 440px;
    margin: 0;
}

/* ── Sección ─────────────────────────────────────────────────── */
.st-historia-section {
    background: var(--bs-body-bg);
}

/* ── Tarjeta ─────────────────────────────────────────────────── */
.st-hist-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--st-card-shadow);
    position: relative;
    /* Altura fija: impide que la imagen expanda el card.
       El row interno con height:100% propaga esta altura a las columnas
       para que el icono y el texto se centren correctamente. */
    height: 200px;
    -webkit-transition: box-shadow .25s;
    transition: box-shadow .25s;
}

    .st-hist-card:hover {
        box-shadow: var(--st-card-shadow-hover);
    }

    /* El .row interno hereda la altura del card para que las columnas
   puedan estirarse y centrar su contenido verticalmente */
    .st-hist-card .row {
        height: 100%;
    }

/* ── Columna contenido (col-md-8) ───────────────────────────── */
.st-hist-content-col {
    display: -webkit-flex;
    display: flex;
    height: 100%;
}

/* Sub-col izquierda: franja tintada con el icono centrado verticalmente */
.st-hist-icon-col {
    width: 96px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--st-accent-rgb), .07);
    border-right: 1px solid rgba(var(--st-accent-rgb), .14);
}

.st-hist-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(var(--st-accent-rgb), .18);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--bs-primary);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

/* Sub-col derecha: título + descripción centrados verticalmente */
.st-hist-text-col {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 1.4rem 1.75rem;
    overflow: hidden; /* recorta texto si excede el max-height del card */
}

.st-hist-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: .45rem;
    line-height: 1.3;
}

.st-hist-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: .84rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

/* ── Columna imagen (col-md-4) ───────────────────────────────── */
/* overflow: hidden en el card ya recorta la imagen al max-height */
.st-hist-img-col {
    overflow: hidden;
}

.st-hist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Badge número ────────────────────────────────────────────── */
.st-hist-num {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 44px;
    height: 40px;
    border-radius: 10px 0 0 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Urbanist', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: .02em;
    z-index: 2;
}

.st-hist-num-primary {
    background: var(--bs-primary);
}

.st-hist-num-accent {
    background: var(--st-accent);
    color: #1a2a3a;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .st-historia-hero-inner {
        max-width: 480px;
    }

    .st-hist-card {
        height: 210px;
    }

    .st-hist-icon-col {
        width: 80px;
    }

    .st-hist-icon-wrap {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .st-hist-text-col {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    /* En móvil las columnas se apilan: altura automática para
       que el contenido completo sea visible */
    .st-hist-card {
        height: auto;
    }

        .st-hist-card .row {
            height: auto;
        }

    .st-hist-content-col {
        height: auto;
    }

    .st-hist-img-col {
        height: 200px;
    }

    .st-hero-historia {
        min-height: 280px;
        padding-bottom: 3.5rem;
    }

    .st-hist-text-col {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .st-historia-hero-inner {
        max-width: 100%;
    }

    .st-historia-hero-desc {
        max-width: 100%;
        font-size: .9rem;
    }

    .st-hero-historia {
        min-height: 240px;
        padding-bottom: 3rem;
    }

    .st-hist-img-col {
        height: 180px;
    }

    .st-hist-text-col {
        padding: 1rem 1.25rem;
    }

    .st-hist-icon-col {
        width: 68px;
    }

    .st-hist-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .st-hist-title {
        font-size: .95rem;
    }
}

/* ╔══════════════════════════════════════════════════════════════
   § 17  VISTA TARIFAS
   Hero suave + tarjetas con foto / portada / texto + trust bar
══════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────── */
.st-tf-hero {
    position: relative;
    background: linear-gradient(150deg, #dbeafe 0%, #f0f6ff 55%, #e0efff 100%);
    padding: 3.5rem 1rem 3rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    overflow: hidden;
}

/* Avión decorativo */
.st-tf-hero-plane {
    position: absolute;
    top: 1rem;
    right: 6%;
    font-size: 8rem;
    color: rgba(var(--bs-primary-rgb), .07);
    transform: rotate(20deg);
    pointer-events: none;
}

.st-tf-hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: .25rem;
}

.st-tf-gold-line {
    width: 52px;
    height: 3px;
    background: var(--st-accent);
    border-radius: 99px;
}

.st-tf-hero-sub {
    font-family: 'Urbanist', sans-serif;
    font-size: .95rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* ── Tabs ────────────────────────────────────────────────────── */
.st-tf-tab {
    font-family: 'Urbanist', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    padding: .55rem 1.6rem;
    border-radius: 8px;
    border: 2px solid var(--bs-primary);
    background: transparent;
    color: var(--bs-primary);
    cursor: pointer;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    -webkit-transition: background .2s, color .2s;
    transition: background .2s, color .2s;
}

    .st-tf-tab.active {
        background: var(--bs-primary);
        color: #ffffff;
    }

    .st-tf-tab:not(.active):hover {
        background: rgba(var(--bs-primary-rgb), .08);
    }

/* ── Sección de grupo (Nacionales / Internacionales) ─────────── */
.st-tf-group {
    background: var(--bs-body-bg);
    padding: 2.5rem 0 1rem;
}

.st-tf-group-header {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.st-tf-group-icon {
    font-size: 1.2rem;
    color: var(--bs-primary);
}

.st-tf-group-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bs-body-color);
}

/* Línea dorada después del título */
.st-tf-group-line {
    height: 3px;
    width: 36px;
    background: var(--st-accent);
    border-radius: 99px;
    margin-top: 2px;
}

.st-tf-ver-todos {
    font-family: 'Urbanist', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    color: var(--bs-body-color);
    text-decoration: none;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 99px;
    padding: .3rem 1rem;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    white-space: nowrap;
    -webkit-transition: border-color .2s, color .2s;
    transition: border-color .2s, color .2s;
}

    .st-tf-ver-todos:hover {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

/* ── Tarjeta de tarifa ───────────────────────────────────────── */
.st-tf-card {
    display: -webkit-flex;
    display: flex;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(14, 77, 139, .10);
    overflow: visible; /* permite que la portada "sobresalga" */
    height: 100%;
    -webkit-transition: box-shadow .25s, -webkit-transform .25s;
    transition: box-shadow .25s, transform .25s;
}

    .st-tf-card:hover {
        box-shadow: 0 8px 32px rgba(14, 77, 139, .16);
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }

/* Foto destino (izquierda) */
.st-tf-photo-wrap {
    position: relative;
    width: 145px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 14px 0 0 14px;
}

.st-tf-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Badge NACIONAL / INTERNACIONAL */
.st-tf-badge {
    position: absolute;
    bottom: 12px;
    left: 0;
    background: var(--bs-primary);
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .07em;
    padding: .22rem .65rem;
    border-radius: 0 4px 4px 0;
}

/* Portada PDF (centro, sobresale ligeramente sobre la foto) */
.st-tf-cover-wrap {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-left: -18px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.st-tf-cover {
    width: 68px;
    height: 90px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
    overflow: hidden;
    position: relative;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-tf-cover-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.st-tf-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--bs-primary-rgb), .92) 0%, rgba(var(--bs-primary-rgb), .42) 100%);
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: .4rem .2rem;
    gap: .1rem;
}

.st-tf-cover-logo {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .75);
    line-height: 1;
}

.st-tf-cover-dest {
    font-family: 'Urbanist', sans-serif;
    font-size: .55rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: .08em;
    text-align: center;
    line-height: 1.2;
}

/* Cuerpo de texto */
.st-tf-card-body {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem .85rem 1rem .75rem;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 0 14px 14px 0;
}

.st-tf-title {
    font-family: 'Urbanist', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: .3rem;
    line-height: 1.3;
}

.st-tf-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: .78rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: .65rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Botón Ver Tarifas */
.st-tf-btn-ver {
    background: var(--bs-primary);
    color: #ffffff;
    border: none;
    border-radius: 7px;
    padding: .38rem .8rem;
    font-family: 'Urbanist', sans-serif;
    font-size: .76rem;
    font-weight: 600;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    cursor: pointer;
    margin-bottom: .4rem;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    width: -webkit-fit-content;
    width: fit-content;
}

    .st-tf-btn-ver:hover {
        opacity: .85;
    }

/* Link Descargar PDF */
.st-tf-link-dl {
    font-family: 'Urbanist', sans-serif;
    font-size: .74rem;
    color: #6b7280;
    text-decoration: none;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    -webkit-transition: color .2s;
    transition: color .2s;
    width: -webkit-fit-content;
    width: fit-content;
}

    .st-tf-link-dl:hover {
        color: var(--bs-primary);
    }

/* ── Botón "Ver más destinos" ────────────────────────────────── */
.st-tf-btn-more {
    background: transparent;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 99px;
    padding: .5rem 1.8rem;
    font-family: 'Urbanist', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--bs-body-color);
    cursor: pointer;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    -webkit-transition: border-color .2s, color .2s;
    transition: border-color .2s, color .2s;
}

    .st-tf-btn-more:hover {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

/* ── Trust bar ───────────────────────────────────────────────── */
.st-tf-trust {
    background: var(--st-footer-bg);
    padding: 2.25rem 1rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
}

.st-tf-trust-item {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.st-tf-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .30);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .80);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-tf-trust-title {
    font-family: 'Urbanist', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: .2rem;
}

.st-tf-trust-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: .76rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
    margin: 0;
}

/* ── Responsive Tarifas ──────────────────────────────────────── */
@media (max-width: 991.98px) {
    .st-tf-photo-wrap {
        width: 130px;
    }
}

@media (max-width: 767.98px) {
    .st-tf-hero-plane {
        font-size: 5rem;
    }

    .st-tf-photo-wrap {
        width: 110px;
    }

    .st-tf-cover {
        width: 58px;
        height: 78px;
    }

    .st-tf-card-body {
        padding: .85rem .75rem;
    }

    .st-tf-trust-item {
        flex-direction: column;
        gap: .5rem;
    }
}

@media (max-width: 575.98px) {
    .st-tf-hero {
        padding: 2.5rem 1rem 2rem;
    }

    .st-tf-photo-wrap {
        width: 95px;
    }

    .st-tf-cover-wrap {
        margin-left: -12px;
    }

    .st-tf-cover {
        width: 52px;
        height: 68px;
    }

    .st-tf-title {
        font-size: .84rem;
    }

    .st-tf-desc {
        font-size: .74rem;
        -webkit-line-clamp: 2;
    }
}

/* ═══════════════════════════════════════════════════════════
   §18 · TRASLADOS Y GIRAS
════════════════════════════════════════════════════════════ */

/* ── Layout ──────────────────────────────────────────────── */
.st-tg-page {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* Flex wrapper: columna en móvil, fila en desktop */
.st-tg-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
}

/* ── Filter panel (sidebar) ──────────────────────────────── */
.st-tg-filter-panel {
    background: var(--st-section-alt);
    border-radius: 14px;
    padding: 1.25rem;
    -webkit-box-shadow: var(--st-card-shadow);
    box-shadow: var(--st-card-shadow);
    position: -webkit-sticky;
    position: sticky;
    top: 78px;
}

.st-tg-filter-head {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.st-tg-filter-title {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-body-color);
}

    .st-tg-filter-title i {
        color: var(--bs-primary);
    }

.st-tg-filter-clear-link {
    font-size: .76rem;
    color: var(--bs-primary);
    text-decoration: none;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .st-tg-filter-clear-link:hover {
        text-decoration: underline;
        color: var(--bs-primary);
    }

.st-tg-filter-section {
    padding-bottom: .9rem;
    margin-bottom: .9rem;
    border-bottom: 1px solid var(--bs-border-color);
}

    .st-tg-filter-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.st-tg-filter-label {
    font-size: .76rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: .4rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── Category tree ───────────────────────────────────────── */
.st-tg-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-tg-cat-item {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .38rem .4rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: .82rem;
    color: var(--bs-body-color);
    -webkit-transition: background .15s;
    transition: background .15s;
    gap: .4rem;
    -webkit-user-select: none;
    user-select: none;
}

    .st-tg-cat-item:hover {
        background: rgba(var(--bs-primary-rgb), .06);
    }

.st-tg-cat-item-left {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .45rem;
    -webkit-flex: 1;
    flex: 1;
}

.st-tg-cat-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(var(--bs-primary-rgb), .1);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--bs-primary);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-tg-cat-badge {
    background: var(--bs-primary);
    color: #fff;
    font-size: .63rem;
    font-weight: 700;
    padding: .1rem .38rem;
    border-radius: 20px;
    min-width: 20px;
    text-align: center;
    line-height: 1.5;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-tg-subcat-list {
    list-style: none;
    padding: .15rem 0 .15rem 1.1rem;
    margin: 0;
}

    .st-tg-subcat-list li {
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: .45rem;
        font-size: .79rem;
        padding: .26rem .3rem;
        color: var(--bs-body-color);
    }

.st-tg-ver-mas {
    background: none;
    border: none;
    font-size: .79rem;
    color: var(--bs-primary);
    font-weight: 600;
    cursor: pointer;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem 0 0;
}

    .st-tg-ver-mas:hover {
        text-decoration: underline;
    }

/* ── Content column ──────────────────────────────────────── */
.st-tg-content-col {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/* ── Encabezado de grupo (dentro del área scroll) ────────── */
.st-tg-group-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--bs-body-color);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .85rem;
    border-left: 3px solid var(--st-accent);
    padding-left: .65rem;
}

    .st-tg-group-title + .st-tg-group-title,
    .st-tg-group-sep {
        margin-top: 1.75rem;
    }

/* Subtipo dentro de un grupo */
.st-tg-subtype-title {
    font-size: .72rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .9rem 0 .5rem;
}

    .st-tg-subtype-title::before {
        content: '';
        display: inline-block;
        width: 22px;
        height: 2px;
        background: var(--bs-border-color);
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }

/* ── Cards scrollable area ───────────────────────────────── */
.st-tg-cards-area {
    overflow-y: auto;
    padding-right: 3px;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--bs-primary-rgb), .18) transparent;
}

    .st-tg-cards-area::-webkit-scrollbar {
        width: 5px;
    }

    .st-tg-cards-area::-webkit-scrollbar-track {
        background: transparent;
    }

    .st-tg-cards-area::-webkit-scrollbar-thumb {
        background: rgba(var(--bs-primary-rgb), .2);
        border-radius: 10px;
    }

        .st-tg-cards-area::-webkit-scrollbar-thumb:hover {
            background: rgba(var(--bs-primary-rgb), .4);
        }

/* ── Toolbar ─────────────────────────────────────────────── */
.st-tg-toolbar {
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    gap: .7rem;
    margin-bottom: .8rem;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.st-tg-toolbar-field {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .2rem;
}

.st-tg-toolbar-field-label {
    font-size: .68rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.st-tg-btn-catalog {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: .48rem 1rem;
    font-size: .81rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    white-space: nowrap;
    font-family: 'Urbanist', sans-serif;
}

    .st-tg-btn-catalog:hover {
        opacity: .88;
    }

.st-tg-pax-label {
    font-size: .74rem;
    font-weight: 700;
    color: var(--bs-primary);
    white-space: nowrap;
    padding-bottom: .48rem;
    margin-left: auto;
}

/* ── Active filter chips ─────────────────────────────────── */
.st-tg-chips-bar {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: .42rem;
    margin-bottom: .8rem;
    min-height: 30px;
}

.st-tg-chips-label {
    font-size: .76rem;
    color: #9ca3af;
    font-weight: 500;
    white-space: nowrap;
}

.st-tg-chip {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    background: rgba(var(--bs-primary-rgb), .1);
    color: var(--bs-primary);
    border-radius: 20px;
    padding: .2rem .65rem;
    font-size: .74rem;
    font-weight: 600;
}

.st-tg-chip-x {
    cursor: pointer;
    font-size: .68rem;
    opacity: .7;
    margin-left: .1rem;
    line-height: 1;
    -webkit-transition: opacity .15s;
    transition: opacity .15s;
}

    .st-tg-chip-x:hover {
        opacity: 1;
    }

.st-tg-chip-date {
    background: rgba(201, 168, 76, .15);
    color: #7a5500;
}

.st-tg-btn-clear-all {
    background: none;
    border: none;
    font-size: .74rem;
    color: #dc2626;
    font-weight: 600;
    cursor: pointer;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    margin-left: auto;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
}

    .st-tg-btn-clear-all:hover {
        text-decoration: underline;
    }

/* ── Results heading ─────────────────────────────────────── */
.st-tg-results-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--bs-body-color);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .85rem;
    border-left: 3px solid var(--st-accent);
    padding-left: .65rem;
}

/* ── Service card ────────────────────────────────────────── */
.st-tg-card {
    background: var(--st-section-alt);
    border-radius: 12px;
    -webkit-box-shadow: var(--st-card-shadow);
    box-shadow: var(--st-card-shadow);
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
    margin-bottom: .75rem;
    -webkit-transition: box-shadow .2s;
    transition: box-shadow .2s;
    min-height: 148px;
}

    .st-tg-card:hover {
        -webkit-box-shadow: var(--st-card-shadow-hover);
        box-shadow: var(--st-card-shadow-hover);
    }

/* Card image */
.st-tg-card-img-wrap {
    position: relative;
    width: 158px;
    min-width: 158px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.st-tg-card-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.st-tg-ribbon {
    position: absolute;
    top: 22px;
    left: -30px;
    background: var(--st-accent);
    color: #1a1a1a;
    font-size: .59rem;
    font-weight: 800;
    padding: .28rem 2.8rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .06em;
    z-index: 2;
    pointer-events: none;
}

/* Card body */
.st-tg-card-body {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: .82rem .95rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-width: 0;
}

.st-tg-card-title {
    font-size: .84rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin-bottom: .28rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.st-tg-card-desc {
    font-size: .76rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: .45rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
}

.st-tg-card-actions {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .38rem;
    margin-bottom: .38rem;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.st-tg-btn-leer {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    background: var(--st-accent);
    color: #1a1a1a;
    border: none;
    border-radius: 20px;
    padding: .2rem .68rem;
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    font-family: 'Urbanist', sans-serif;
    white-space: nowrap;
}

    .st-tg-btn-leer:hover {
        opacity: .84;
    }

.st-tg-badge-tipo {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    background: rgba(var(--bs-primary-rgb), .09);
    color: var(--bs-primary);
    border-radius: 20px;
    padding: .2rem .68rem;
    font-size: .72rem;
    font-weight: 600;
    border: 1px solid rgba(var(--bs-primary-rgb), .18);
}

/* Days */
.st-tg-days {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .2rem;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.st-tg-days-label {
    font-size: .68rem;
    color: #9ca3af;
    margin-right: .12rem;
    white-space: nowrap;
}

.st-tg-day {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    font-weight: 800;
    background: var(--bs-primary);
    color: #fff;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

    .st-tg-day.st-day-off {
        background: #e5e7eb;
        color: #9ca3af;
    }

/* Card price column */
.st-tg-card-price {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    width: 162px;
    min-width: 145px;
    border-left: 1px solid var(--bs-border-color);
    padding: .82rem .85rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .38rem;
    text-align: center;
}

.st-tg-price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--st-accent);
    line-height: 1;
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    gap: .18rem;
}

    .st-tg-price-amount small {
        font-size: .66rem;
        font-weight: 500;
        color: #9ca3af;
    }

.st-tg-price-tipo {
    font-size: .66rem;
    font-weight: 700;
    color: var(--bs-body-color);
    letter-spacing: .06em;
}

.st-tg-btn-select {
    width: 100%;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .42rem .35rem;
    font-size: .7rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    font-family: 'Urbanist', sans-serif;
}

    .st-tg-btn-select:hover {
        opacity: .88;
    }

    .st-tg-btn-select small {
        display: block;
        font-size: .62rem;
        font-weight: 500;
        opacity: .88;
    }

/* ── Pagination ──────────────────────────────────────────── */
.st-tg-pagination-bar {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.2rem;
}

.st-tg-pager {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .28rem;
}

.st-tg-page-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    background: var(--st-section-alt);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .79rem;
    font-weight: 600;
    color: var(--bs-body-color);
    cursor: pointer;
    -webkit-transition: background .15s, color .15s, border-color .15s;
    transition: background .15s, color .15s, border-color .15s;
    font-family: 'Urbanist', sans-serif;
    text-decoration: none;
}

    .st-tg-page-btn:hover,
    .st-tg-page-btn.active {
        background: var(--bs-primary);
        color: #fff;
        border-color: var(--bs-primary);
    }

.st-tg-page-ellipsis {
    font-size: .79rem;
    color: #9ca3af;
    line-height: 34px;
    padding: 0 .1rem;
}

.st-tg-per-page {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    color: #6b7280;
}

/* ── Layout scrollable en desktop (lg+) ─────────────────── */
@media (min-width: 992px) {
    .st-tg-page {
        height: calc(100vh - 64px);
        overflow: hidden;
    }

    .st-tg-wrap {
        -webkit-flex-direction: row;
        flex-direction: row;
        align-items: stretch;
        height: 100%;
        gap: 1.5rem;
    }

    .st-tg-sidebar-col {
        width: 280px;
        min-width: 260px;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: rgba(var(--bs-primary-rgb), .14) transparent;
    }

        .st-tg-sidebar-col::-webkit-scrollbar {
            width: 4px;
        }

        .st-tg-sidebar-col::-webkit-scrollbar-track {
            background: transparent;
        }

        .st-tg-sidebar-col::-webkit-scrollbar-thumb {
            background: rgba(var(--bs-primary-rgb), .16);
            border-radius: 10px;
        }

    .st-tg-filter-panel {
        position: static;
    }

    .st-tg-content-col {
        -webkit-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        height: 100%;
        overflow: hidden;
    }

    .st-tg-cards-area {
        -webkit-flex: 1 1 auto;
        flex: 1 1 auto;
        min-height: 0;
    }
}

/* ── Responsive §18 ──────────────────────────────────────── */
@media (max-width: 991.98px) {
    .st-tg-card-img-wrap {
        width: 120px;
        min-width: 120px;
    }

    .st-tg-card-price {
        width: 132px;
        min-width: 118px;
    }
}

@media (max-width: 575.98px) {
    .st-tg-card {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .st-tg-card-img-wrap {
        width: 100%;
        min-width: 100%;
        height: 165px;
    }

    .st-tg-card-price {
        width: 100%;
        min-width: 100%;
        border-left: none;
        border-top: 1px solid var(--bs-border-color);
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .st-tg-toolbar {
        gap: .45rem;
    }

    .st-tg-pax-label {
        margin-left: 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   §19 · PAQUETES
════════════════════════════════════════════════════════════ */

/* ── Hero split (texto izq | imagen der absoluta) ────────── */
.st-pk-hero {
    position: relative;
    min-height: 460px;
    background: var(--bs-body-bg);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.st-pk-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.st-pk-hero-text {
    max-width: 500px;
}

.st-pk-eyebrow {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--bs-primary);
    text-transform: uppercase;
    margin-bottom: .3rem;
}

.st-pk-hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(3rem, 6vw, 5.25rem);
    font-weight: 900;
    color: var(--bs-primary);
    line-height: 1.03;
    margin-bottom: .45rem;
}

.st-pk-title-line {
    width: 50px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.st-pk-hero-desc {
    font-size: .98rem;
    color: var(--bs-body-color);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 400px;
}

.st-pk-hero-cta {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .7rem 1.4rem;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    font-family: 'Urbanist', sans-serif;
}

    .st-pk-hero-cta:hover {
        opacity: .88;
    }

.st-pk-hero-img-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 52%;
    overflow: hidden;
}

.st-pk-hero-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
}

.st-pk-plane-deco {
    position: absolute;
    top: 1.75rem;
    left: -1.5rem;
    font-size: 2rem;
    color: var(--bs-primary);
    opacity: .30;
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
    pointer-events: none;
}

/* ── Features strip ──────────────────────────────────────── */
.st-pk-features {
    background: var(--st-section-alt);
    -webkit-box-shadow: 0 4px 24px rgba(0,0,0,.07);
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    padding: 1.75rem 0;
    position: relative;
    z-index: 1;
}

.st-pk-feat-item {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .5rem 1.25rem;
    border-right: 1px solid var(--bs-border-color);
}

    .st-pk-feat-item:last-child {
        border-right: none;
    }

.st-pk-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--bs-primary-rgb), .3);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--bs-primary);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-pk-feat-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: .2rem;
    line-height: 1.3;
}

.st-pk-feat-desc {
    font-size: .76rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* ── Programs section ────────────────────────────────────── */
.st-pk-programs {
    background: var(--st-section-alt);
}

.st-pk-programs-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: .35rem;
}

.st-pk-programs-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--bs-body-color);
    margin-bottom: .45rem;
}

.st-pk-programs-line {
    width: 42px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 2px;
}

.st-pk-search-wrap {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .5rem;
    max-width: 380px;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

.st-pk-search-input {
    -webkit-flex: 1;
    flex: 1;
    border: 1px solid var(--bs-border-color);
    border-radius: 9px;
    padding: .48rem .85rem;
    font-size: .82rem;
    font-family: 'Urbanist', sans-serif;
    color: var(--bs-body-color);
    background: var(--bs-body-bg);
    outline: none;
    -webkit-transition: border-color .2s, box-shadow .2s;
    transition: border-color .2s, box-shadow .2s;
}

    .st-pk-search-input:focus {
        border-color: rgba(var(--bs-primary-rgb), .5);
        -webkit-box-shadow: var(--st-input-focus-shadow);
        box-shadow: var(--st-input-focus-shadow);
    }

.st-pk-search-btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: .48rem 1rem;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Urbanist', sans-serif;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

    .st-pk-search-btn:hover {
        opacity: .88;
    }

/* ── Destination card ────────────────────────────────────── */
.st-pk-dest-card {
    background: var(--st-section-alt);
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: var(--st-card-shadow);
    box-shadow: var(--st-card-shadow);
    -webkit-transition: box-shadow .22s, -webkit-transform .22s;
    transition: box-shadow .22s, transform .22s;
    cursor: pointer;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

    .st-pk-dest-card:hover {
        -webkit-box-shadow: var(--st-card-shadow-hover);
        box-shadow: var(--st-card-shadow-hover);
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }

.st-pk-dest-img-wrap {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.st-pk-dest-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform .35s ease;
    transition: transform .35s ease;
}

.st-pk-dest-card:hover .st-pk-dest-img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.st-pk-dest-body {
    padding: .72rem .85rem .8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1;
    flex: 1;
}

.st-pk-dest-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin-bottom: .18rem;
    line-height: 1.3;
}

.st-pk-dest-desc {
    font-size: .74rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: .4rem;
    -webkit-flex: 1;
    flex: 1;
}

.st-pk-dest-loc {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .2rem;
    font-size: .7rem;
    color: #9ca3af;
    margin-bottom: .55rem;
}

    .st-pk-dest-loc i {
        font-size: .68rem;
        color: var(--bs-primary);
    }

.st-pk-dest-btn {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .3rem .7rem;
    font-size: .74rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    font-family: 'Urbanist', sans-serif;
}

    .st-pk-dest-btn:hover {
        opacity: .88;
    }

/* ── Author role (testimonials) ──────────────────────────── */
.st-testi-role {
    font-size: .78rem;
    color: #9ca3af;
    margin-top: -.3rem;
}

/* ── Trust bar ───────────────────────────────────────────── */
.st-pk-trust {
    background: var(--bs-body-bg);
    border-top: 1px solid var(--bs-border-color);
}

.st-pk-trust-item {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.st-pk-trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--bs-primary-rgb), .3);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--bs-primary);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-pk-trust-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: .2rem;
}

.st-pk-trust-desc {
    font-size: .76rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* ── Responsive §19 ──────────────────────────────────────── */
@media (max-width: 991.98px) {
    .st-pk-hero {
        -webkit-flex-direction: column;
        flex-direction: column;
        min-height: auto;
    }

    .st-pk-hero-img-panel {
        position: relative;
        width: 100%;
        height: 220px;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .st-pk-hero-inner {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .st-pk-hero-text {
        max-width: 100%;
    }

    .st-pk-plane-deco {
        display: none;
    }

    .st-pk-feat-item {
        border-right: none;
        border-bottom: 1px solid var(--bs-border-color);
        padding: .75rem 0;
    }

        .st-pk-feat-item:last-child {
            border-bottom: none;
        }

    .st-pk-search-wrap {
        max-width: 100%;
        -webkit-flex: 1 1 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 575.98px) {
    .st-pk-hero-title {
        font-size: 2.8rem;
    }

    .st-pk-search-wrap {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .st-pk-search-btn {
        width: 100%;
        justify-content: center;
    }

    .st-pk-trust-item {
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: .5rem;
    }
}

/* =============================================================
   §20 HOTELES
   Barra de búsqueda · Sidebar filtros · Grid de tarjetas ·
   Paginación — fiel al diseño del screenshot
============================================================= */

/* ── Barra de búsqueda ────────────────────────────────────── */
.st-ht-searchbar {
    background: var(--st-section-alt);
    border-bottom: 1px solid var(--bs-border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    padding: .9rem 0;
}

.st-ht-search-form {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--st-section-alt);
    border: 1.5px solid var(--bs-border-color);
    border-radius: 14px;
    overflow: visible;
    padding: 0;
}

.st-ht-search-sep {
    width: 1px;
    height: 36px;
    background: var(--bs-border-color);
    flex-shrink: 0;
}

.st-ht-search-field {
    flex: 1;
    min-width: 0;
    padding: .6rem 1rem;
    position: relative;
}

.st-ht-field-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 .2rem;
    display: block;
}

.st-ht-field-inner {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .5rem;
    position: relative;
}

.st-ht-field-icon {
    font-size: .95rem;
    color: rgba(var(--bs-primary-rgb), 1);
    flex-shrink: 0;
}

.st-ht-field-select,
.st-ht-field-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: .88rem;
    font-weight: 500;
    color: var(--bs-body-color);
    font-family: inherit;
    width: 100%;
    padding: 0;
    cursor: pointer;
}

    .st-ht-field-select option {
        background: var(--st-section-alt);
    }

.st-ht-field-selector {
    border: none;
    outline: none;
    background: transparent;
    font-size: .88rem;
    font-weight: 500;
    color: var(--bs-body-color);
    font-family: inherit;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .4rem;
    cursor: pointer;
    padding: 0;
    width: 100%;
    white-space: nowrap;
}

.st-ht-search-btn {
    margin: .45rem;
    padding: .62rem 1.5rem;
    border-radius: 10px;
    border: none;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    transition: background .2s;
}

    .st-ht-search-btn:hover {
        background: rgba(var(--bs-primary-rgb), .85);
    }

/* Panel de pasajeros */
.st-ht-pax-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: -1rem;
    z-index: 200;
    min-width: 260px;
    background: var(--st-section-alt);
    border: 1px solid var(--bs-border-color);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.st-ht-pax-row {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem 0;
    border-bottom: 1px solid var(--bs-border-color);
}

    .st-ht-pax-row:last-of-type {
        border-bottom: none;
    }

.st-ht-pax-lbl {
    font-size: .87rem;
    font-weight: 600;
    color: var(--bs-body-color);
    margin: 0;
}

.st-ht-pax-sub {
    font-size: .72rem;
    color: #9ca3af;
    margin: 0;
}

.st-ht-pax-ctrl {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .6rem;
}

    .st-ht-pax-ctrl button {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid var(--bs-border-color);
        background: transparent;
        font-size: 1rem;
        font-weight: 600;
        color: var(--bs-body-color);
        cursor: pointer;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color .2s, background .2s;
    }

        .st-ht-pax-ctrl button:hover {
            border-color: rgba(var(--bs-primary-rgb), 1);
            background: rgba(var(--bs-primary-rgb), .06);
        }

    .st-ht-pax-ctrl span {
        font-size: .93rem;
        font-weight: 700;
        min-width: 20px;
        text-align: center;
    }

.st-ht-pax-confirm {
    width: 100%;
    margin-top: .85rem;
    padding: .5rem;
    border-radius: 8px;
    border: none;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    font-weight: 700;
    font-size: .87rem;
    font-family: inherit;
    cursor: pointer;
}

/* ── Layout general ──────────────────────────────────────── */
.st-ht-page {
    background: var(--bs-body-bg);
    padding: 1.5rem 0 3rem;
}

.st-ht-layout {
    display: -webkit-flex;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.st-ht-sidebar {
    width: 240px;
    min-width: 240px;
    position: sticky;
    top: 72px;
}

.st-ht-filter-card {
    background: var(--st-section-alt);
    border-radius: 16px;
    border: 1px solid var(--bs-border-color);
    box-shadow: var(--st-card-shadow);
    padding: 1.25rem 1.1rem;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--bs-primary-rgb),.2) transparent;
}

    .st-ht-filter-card::-webkit-scrollbar {
        width: 4px;
    }

    .st-ht-filter-card::-webkit-scrollbar-thumb {
        background: rgba(var(--bs-primary-rgb),.2);
        border-radius: 4px;
    }

.st-ht-filter-title {
    font-size: .97rem;
    font-weight: 800;
    color: var(--bs-body-color);
}

.st-ht-btn-limpiar {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(var(--bs-primary-rgb), 1);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color .15s;
}

    .st-ht-btn-limpiar:hover {
        text-decoration-color: rgba(var(--bs-primary-rgb),.5);
    }

.st-ht-filter-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 .6rem;
}

/* Búsqueda rápida */
.st-ht-quick-search {
    position: relative;
}

.st-ht-qs-input {
    width: 100%;
    padding: .48rem .85rem .48rem 2rem;
    border-radius: 9px;
    border: 1.5px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    font-size: .83rem;
    color: var(--bs-body-color);
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}

    .st-ht-qs-input:focus {
        border-color: rgba(var(--bs-primary-rgb), .5);
    }

.st-ht-qs-icon {
    position: absolute;
    left: .6rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .8rem;
    color: #9ca3af;
    pointer-events: none;
}

/* Checkboxes con count */
.st-ht-check-row {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    font-size: .83rem;
}

    .st-ht-check-row input[type="checkbox"] {
        width: 15px;
        height: 15px;
        border-radius: 4px;
        border: 1.5px solid var(--bs-border-color);
        accent-color: rgba(var(--bs-primary-rgb), 1);
        cursor: pointer;
        flex-shrink: 0;
    }

.st-ht-stars {
    display: -webkit-flex;
    display: flex;
    gap: 1px;
    font-size: .65rem;
    color: #f59e0b;
}

.st-ht-chk-lbl {
    flex: 1;
    color: var(--bs-body-color);
    font-weight: 500;
}

.st-ht-chk-count {
    font-size: .72rem;
    color: #9ca3af;
    background: var(--bs-body-bg);
    padding: .05rem .38rem;
    border-radius: 20px;
    border: 1px solid var(--bs-border-color);
}

/* Range slider precio */
.st-ht-range-caption {
    font-size: .7rem;
    color: #9ca3af;
    margin: 0 0 .25rem;
}

.st-ht-range-input {
    width: 100%;
    padding: .32rem .5rem;
    border-radius: 8px;
    border: 1.5px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    font-size: .83rem;
    color: var(--bs-body-color);
    font-family: inherit;
    outline: none;
    text-align: center;
    transition: border-color .2s;
}

    .st-ht-range-input:focus {
        border-color: rgba(var(--bs-primary-rgb), .5);
    }

.st-ht-slider-wrap {
    position: relative;
    height: 20px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.st-ht-slider-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bs-border-color);
    border-radius: 4px;
}

.st-ht-slider-range {
    position: absolute;
    height: 100%;
    background: rgba(var(--bs-primary-rgb), 1);
    border-radius: 4px;
}

.st-ht-range {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    outline: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

    .st-ht-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(var(--bs-primary-rgb), 1);
        border: 2px solid var(--st-section-alt);
        box-shadow: 0 1px 6px rgba(0,0,0,.18);
        cursor: pointer;
        pointer-events: all;
    }

    .st-ht-range::-moz-range-thumb {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(var(--bs-primary-rgb), 1);
        border: 2px solid var(--st-section-alt);
        box-shadow: 0 1px 6px rgba(0,0,0,.18);
        cursor: pointer;
        pointer-events: all;
    }

/* Select ordenar + ver más */
.st-ht-sort-select {
    width: 100%;
    padding: .42rem .75rem;
    border-radius: 9px;
    border: 1.5px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    font-size: .85rem;
    color: var(--bs-body-color);
    font-family: inherit;
    outline: none;
    cursor: pointer;
    transition: border-color .2s;
}

    .st-ht-sort-select:focus {
        border-color: rgba(var(--bs-primary-rgb), .5);
    }

.st-ht-ver-mas {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .6rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(var(--bs-primary-rgb), 1);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

/* Caja de ayuda */
.st-ht-help-box {
    background: rgba(var(--bs-primary-rgb), .05);
    border: 1px solid rgba(var(--bs-primary-rgb), .14);
    border-radius: 12px;
    padding: .9rem 1rem;
}

.st-ht-help-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.st-ht-help-title {
    font-size: .87rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin: 0 0 .15rem;
}

.st-ht-help-desc {
    font-size: .75rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.45;
}

.st-ht-help-btn {
    width: 100%;
    padding: .48rem;
    border-radius: 8px;
    border: none;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
}

    .st-ht-help-btn:hover {
        background: rgba(var(--bs-primary-rgb), .85);
    }

/* ── Área de contenido ──────────────────────────────────── */
.st-ht-content {
    flex: 1;
    min-width: 0;
}

.st-ht-results-header {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.1rem;
}

.st-ht-results-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bs-body-color);
    margin: 0 0 .1rem;
}

.st-ht-results-count {
    font-size: .8rem;
    color: #9ca3af;
    margin: 0;
}

.st-ht-view-btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .42rem .9rem;
    border-radius: 9px;
    border: 1.5px solid var(--bs-border-color);
    background: var(--st-section-alt);
    font-size: .82rem;
    font-weight: 600;
    color: var(--bs-body-color);
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s, background .2s;
}

    .st-ht-view-btn.active {
        border-color: rgba(var(--bs-primary-rgb), 1);
        background: rgba(var(--bs-primary-rgb), .07);
        color: rgba(var(--bs-primary-rgb), 1);
    }

    .st-ht-view-btn:not(.active):hover {
        border-color: rgba(var(--bs-primary-rgb), .35);
    }

/* ── Grid de tarjetas ───────────────────────────────────── */
.st-ht-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* ── Tarjeta de hotel ───────────────────────────────────── */
.st-ht-card {
    background: var(--st-section-alt);
    border-radius: 14px;
    border: 1px solid var(--bs-border-color);
    box-shadow: var(--st-card-shadow);
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}

    .st-ht-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--st-card-shadow-hover);
    }

.st-ht-card-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.st-ht-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.st-ht-card:hover .st-ht-card-img {
    transform: scale(1.05);
}

/* Badge de estrellas (overlay abajo-izquierda) */
.st-ht-star-badge {
    position: absolute;
    bottom: .55rem;
    left: .6rem;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: .22rem .55rem;
    border-radius: 20px;
}

    .st-ht-star-badge i {
        font-size: .6rem;
        color: #f59e0b;
    }

    .st-ht-star-badge span {
        color: rgba(255,255,255,.88);
    }

/* Botón favorito */
.st-ht-fav-btn {
    position: absolute;
    top: .6rem;
    right: .6rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.90);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #6b7280;
    font-size: .9rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.14);
    transition: color .2s, transform .15s;
}

    .st-ht-fav-btn:hover {
        transform: scale(1.1);
    }

    .st-ht-fav-btn.st-ht-fav-active i,
    .st-ht-fav-btn i.bi-heart-fill {
        color: #ef4444;
    }

/* Cuerpo de la tarjeta */
.st-ht-card-body {
    padding: .9rem 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex: 1;
}

.st-ht-hotel-name {
    font-size: .95rem;
    font-weight: 800;
    color: var(--bs-body-color);
    margin: 0 0 .2rem;
    line-height: 1.3;
}

.st-ht-hotel-loc {
    font-size: .75rem;
    color: #9ca3af;
    margin: 0 0 .35rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .25rem;
}

    .st-ht-hotel-loc i {
        color: rgba(var(--bs-primary-rgb),.7);
        font-size: .75rem;
    }

.st-ht-hotel-desc {
    font-size: .8rem;
    color: #6b7280;
    margin: 0 0 .7rem;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.st-ht-price-row {
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    gap: .3rem;
    margin-bottom: .65rem;
}

.st-ht-price-from {
    font-size: .75rem;
    color: #9ca3af;
}

.st-ht-price-amount {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--bs-body-color);
}

.st-ht-price-unit {
    font-size: .75rem;
    color: #9ca3af;
}

.st-ht-btn-disponibilidad {
    width: 100%;
    padding: .52rem;
    border-radius: 9px;
    border: none;
    background: var(--st-accent);
    color: #1a1a1a;
    font-size: .83rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
}

    .st-ht-btn-disponibilidad:hover {
        opacity: .88;
        transform: translateY(-1px);
    }

/* Estado vacío */
.st-ht-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #9ca3af;
}

    .st-ht-empty i {
        font-size: 2.5rem;
        display: block;
        margin-bottom: .75rem;
        opacity: .45;
    }

    .st-ht-empty p {
        font-size: .9rem;
        margin-bottom: 1rem;
    }

    .st-ht-empty button {
        padding: .5rem 1.4rem;
        border-radius: 9px;
        border: 1.5px solid rgba(var(--bs-primary-rgb), 1);
        background: transparent;
        color: rgba(var(--bs-primary-rgb), 1);
        font-size: .85rem;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
    }

/* ── Responsive §20 ─────────────────────────────────────── */
@media (max-width: 1199.98px) {
    .st-ht-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .st-ht-layout {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .st-ht-sidebar {
        width: 100%;
        min-width: 0;
        position: static;
    }

    .st-ht-filter-card {
        max-height: none;
    }

    .st-ht-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .st-ht-grid {
        grid-template-columns: 1fr;
    }

    .st-ht-search-form {
        -webkit-flex-direction: column;
        flex-direction: column;
        border-radius: 12px;
    }

    .st-ht-search-sep {
        width: 100%;
        height: 1px;
    }

    .st-ht-search-field {
        width: 100%;
    }

    .st-ht-search-btn {
        margin: .5rem;
        width: calc(100% - 1rem);
        justify-content: center;
    }

    .st-ht-results-header {
        -webkit-flex-direction: column;
        flex-direction: column;
        align-items: flex-start;
    }

    .st-ht-pagination-bar {
        -webkit-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================================
   §21 PAQUETES CATEGORÍA
   Hero split · Features bar · Grid de tarjetas · CTA bar
============================================================= */

/* ── Hero ─────────────────────────────────────────────────── */
.st-pcat-hero {
    position: relative;
    background: var(--bs-body-bg);
    overflow: hidden;
    padding-top: 2.25rem;
    padding-bottom: 0;
    min-height: 320px;
}

/* Panel de imagen — absoluto derecha */
.st-pcat-hero-img-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    overflow: hidden;
}

.st-pcat-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Fade izquierdo para que la imagen se mezcle con el fondo */
.st-pcat-hero-img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bs-body-bg) 0%, rgba(240,246,255,0) 35%);
}

/* Contenido del hero */
.st-pcat-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding-bottom: 0;
}

/* Breadcrumb */
.st-pcat-breadcrumb {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    margin-bottom: .9rem;
}

    .st-pcat-breadcrumb a {
        color: rgba(var(--bs-primary-rgb), 1);
        text-decoration: none;
        font-weight: 600;
    }

        .st-pcat-breadcrumb a:hover {
            text-decoration: underline;
        }

    .st-pcat-breadcrumb i {
        font-size: .65rem;
        color: #9ca3af;
    }

    .st-pcat-breadcrumb span {
        color: rgba(var(--bs-primary-rgb), 1);
        font-weight: 500;
    }

/* Título del hero */
.st-pcat-hero-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--bs-body-color);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 .9rem;
}

    .st-pcat-hero-title span {
        color: rgba(var(--bs-primary-rgb), 1);
    }

/* Subtítulo */
.st-pcat-hero-sub {
    font-size: .95rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 1.75rem;
    max-width: 440px;
}

/* Features bar — 4 columnas en tarjeta blanca */
.st-pcat-features-bar {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0;
    background: var(--st-section-alt);
    border-radius: 14px;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    margin-top: 1.5rem;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
    max-width: 75%;
}

.st-pcat-feat-item {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: 1rem 1rem;
    flex: 1;
    min-width: 0;
    border-right: 1px solid var(--bs-border-color);
    overflow: hidden;
}

    .st-pcat-feat-item:last-child {
        border-right: none;
    }

.st-pcat-feat-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), .10);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: rgba(var(--bs-primary-rgb), 1);
    margin-top: .05rem;
}

.st-pcat-feat-title {
    font-size: .87rem;
    font-weight: 700;
    color: rgba(var(--bs-primary-rgb), 1);
    margin: 0 0 .2rem;
}

.st-pcat-feat-desc {
    font-size: .76rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.45;
}

/* ── Sección de tarjetas ─────────────────────────────────── */
.st-pcat-section {
    background: var(--bs-body-bg);
    padding: 2.5rem 0 3rem;
}

/* Encabezado de sección */
.st-pcat-section-header {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.st-pcat-section-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.st-pcat-section-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--bs-body-color);
    white-space: nowrap;
}

.st-pcat-header-line {
    flex: 1;
    height: 2px;
    background: rgba(var(--bs-primary-rgb), .18);
    min-width: 40px;
}

.st-pcat-btn-new {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .52rem 1.1rem;
    border-radius: 9px;
    border: none;
    background: #198754;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}

    .st-pcat-btn-new:hover {
        background: #157347;
        transform: translateY(-1px);
    }

/* ── Tarjeta de paquete ──────────────────────────────────── */
.st-pcat-card {
    background: var(--st-section-alt);
    border-radius: 14px;
    border: 1px solid var(--bs-border-color);
    box-shadow: var(--st-card-shadow);
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

    .st-pcat-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--st-card-shadow-hover);
    }

/* Imagen con badge de noches */
.st-pcat-card-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.st-pcat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.st-pcat-card:hover .st-pcat-card-img {
    transform: scale(1.05);
}

/* Badge de noches */
.st-pcat-night-badge {
    position: absolute;
    top: .65rem;
    left: .65rem;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .28rem .72rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.22);
}

    .st-pcat-night-badge i {
        font-size: .68rem;
    }

/* Cuerpo de la tarjeta */
.st-pcat-card-body {
    padding: 1rem 1.1rem 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex: 1;
}

.st-pcat-card-title-row {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .85rem;
}

.st-pcat-card-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 9px;
    background: rgba(var(--bs-primary-rgb), .10);
    color: rgba(var(--bs-primary-rgb), 1);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    margin-top: .1rem;
}

.st-pcat-card-title {
    font-size: .97rem;
    font-weight: 800;
    color: var(--bs-body-color);
    margin: 0 0 .25rem;
    line-height: 1.2;
}

.st-pcat-card-desc {
    font-size: .78rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Lista de incluidos */
.st-pcat-include-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .38rem;
    flex: 1;
}

    .st-pcat-include-list li {
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .78rem;
        color: var(--bs-body-color);
    }

        .st-pcat-include-list li i {
            font-size: .8rem;
            color: rgba(var(--bs-primary-rgb), .75);
            flex-shrink: 0;
        }

/* Footer de la tarjeta */
.st-pcat-card-footer {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding-top: .85rem;
    border-top: 1px solid var(--bs-border-color);
    margin-top: auto;
}

.st-pcat-btn-ver {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .52rem 1.1rem;
    border-radius: 9px;
    border: none;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

    .st-pcat-btn-ver:hover {
        background: rgba(var(--bs-primary-rgb), .85);
        transform: translateY(-1px);
    }

.st-pcat-btn-eliminar {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .5rem;
    border: none;
    background: transparent;
    color: #ef4444;
    font-size: .8rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity .2s;
}

    .st-pcat-btn-eliminar:hover {
        opacity: .75;
    }

    .st-pcat-btn-eliminar i {
        font-size: .82rem;
    }

/* ── Barra CTA ────────────────────────────────────────────── */
.st-pcat-cta-bar {
    background: rgba(var(--bs-primary-rgb), 1);
    padding: 1.1rem 0;
}

.st-pcat-cta-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.45);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.st-pcat-cta-title {
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .1rem;
}

.st-pcat-cta-sub {
    font-size: .78rem;
    color: rgba(255,255,255,.78);
    margin: 0;
}

.st-pcat-cta-btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.3rem;
    border-radius: 9px;
    border: 1.5px solid rgba(255,255,255,.70);
    background: transparent;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
}

    .st-pcat-cta-btn:hover {
        background: rgba(255,255,255,.12);
        border-color: #fff;
    }

/* ── Responsive §21 ─────────────────────────────────────── */
@media (max-width: 991.98px) {
    .st-pcat-hero-img-panel {
        width: 45%;
    }

    .st-pcat-hero-inner {
        max-width: calc(55% - 2rem);
    }

    .st-pcat-feat-title {
        font-size: .82rem;
    }

    .st-pcat-feat-desc {
        font-size: .72rem;
    }
}

@media (max-width: 767.98px) {
    .st-pcat-hero-img-panel {
        position: relative;
        width: 100%;
        height: 200px;
    }

    .st-pcat-hero-img-fade {
        background: linear-gradient(to top, var(--bs-body-bg) 0%, transparent 50%);
    }

    .st-pcat-hero-inner {
        max-width: 100%;
        padding-top: 1.5rem;
    }

    .st-pcat-hero {
        padding-top: 0;
    }
    /* En tablet: 2 columnas × 2 filas */
    .st-pcat-features-bar {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .st-pcat-feat-item {
        flex: 1 1 calc(50% - 1px);
        min-width: 0;
        border-right: none;
        border-bottom: 1px solid var(--bs-border-color);
    }

        .st-pcat-feat-item:nth-child(odd) {
            border-right: 1px solid var(--bs-border-color);
        }

        .st-pcat-feat-item:nth-last-child(-n+2) {
            border-bottom: none;
        }
}

@media (max-width: 575.98px) {
    .st-pcat-hero-title {
        font-size: 1.8rem;
    }
    /* En móvil: 1 columna */
    .st-pcat-feat-item {
        flex: 1 1 100%;
        border-right: none;
    }

        .st-pcat-feat-item:nth-child(odd) {
            border-right: none;
        }

        .st-pcat-feat-item:last-child {
            border-bottom: none;
        }

    .st-pcat-section-header {
        -webkit-flex-direction: column;
        flex-direction: column;
        align-items: flex-start;
    }

    .st-pcat-header-line {
        display: none;
    }

    .st-pcat-cta-bar .d-flex {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .st-pcat-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================================
   §22 PAQUETES CATEGORÍA 2
   Página de detalle: listado horizontal de paquetes con imagen,
   badges, features, precio y botones de acción
============================================================= */

/* ── Página y cabecera ────────────────────────────────────── */
.st-pc2-page {
    background: var(--bs-body-bg);
    padding: 1.75rem 0 2.5rem;
}

/* Breadcrumb */
.st-pc2-breadcrumb {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    margin-bottom: .9rem;
    flex-wrap: wrap;
}

    .st-pc2-breadcrumb a {
        color: rgba(var(--bs-primary-rgb), 1);
        text-decoration: none;
        font-weight: 600;
    }

        .st-pc2-breadcrumb a:hover {
            text-decoration: underline;
        }

    .st-pc2-breadcrumb i {
        font-size: .62rem;
        color: #9ca3af;
    }

    .st-pc2-breadcrumb span {
        color: var(--bs-body-color);
        font-weight: 600;
    }

/* Título de página */
.st-pc2-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--bs-body-color);
    letter-spacing: -.02em;
    margin: 0 0 .4rem;
    line-height: 1.15;
}

.st-pc2-title-hl {
    color: rgba(var(--bs-primary-rgb), 1);
}

.st-pc2-subtitle {
    font-size: .9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 1.1rem;
}

/* Override max-width para la features bar en esta vista */
.st-pc2-features-bar {
    max-width: 75%;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* ── Tarjeta horizontal ────────────────────────────────────── */
.st-pc2-card {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    background: var(--st-section-alt);
    border-radius: 14px;
    border: 1px solid var(--bs-border-color);
    box-shadow: var(--st-card-shadow);
    overflow: hidden;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

    .st-pc2-card:hover {
        box-shadow: var(--st-card-shadow-hover);
        transform: translateY(-2px);
    }

/* Imagen */
.st-pc2-img-wrap {
    position: relative;
    width: 220px;
    min-width: 220px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.st-pc2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.st-pc2-card:hover .st-pc2-img {
    transform: scale(1.04);
}

/* Badge de noches — arriba izquierda */
.st-pc2-nights-badge {
    position: absolute;
    top: .6rem;
    left: .6rem;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: .24rem .65rem;
    border-radius: 20px;
    letter-spacing: .04em;
    box-shadow: 0 2px 8px rgba(0,0,0,.22);
}

    .st-pc2-nights-badge i {
        font-size: .65rem;
    }

/* Overlay de texto tipo "STOPOVER" */
.st-pc2-img-overlay-text {
    position: absolute;
    inset: 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,.55);
    background: rgba(0,0,0,.22);
    pointer-events: none;
}

    .st-pc2-img-overlay-text small {
        font-size: .75rem;
        letter-spacing: .18em;
    }

/* Footer de la imagen — STYLEX + validez */
.st-pc2-img-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .35rem .5rem;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
}

.st-pc2-code-badge {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: #1a1a1a;
    background: var(--st-accent);
    padding: .18rem .55rem;
    border-radius: 4px;
}

.st-pc2-validity {
    font-size: .62rem;
    font-weight: 600;
    color: rgba(255,255,255,.88);
}

/* ── Área de contenido ──────────────────────────────────── */
.st-pc2-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: .9rem 1rem;
}

.st-pc2-content-top {
    flex: 1;
}

/* Fila título + favorito */
.st-pc2-title-row {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.st-pc2-card-title {
    font-size: .92rem;
    font-weight: 800;
    color: var(--bs-body-color);
    line-height: 1.3;
}

/* Badge ✅ SI */
.st-pc2-si-badge {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    background: #198754;
    padding: .15rem .5rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

    .st-pc2-si-badge i {
        font-size: .65rem;
    }

/* Vendidos */
.st-pc2-vendidos {
    font-size: .75rem;
    font-weight: 700;
    color: #f97316;
}

/* Botón favorito */
.st-pc2-fav-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--bs-border-color);
    background: transparent;
    color: #9ca3af;
    font-size: .8rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    transition: color .2s, border-color .2s;
}

    .st-pc2-fav-btn:hover, .st-pc2-fav-btn.st-pc2-fav-active {
        color: #ef4444;
        border-color: #ef4444;
    }

/* Lista de incluidos */
.st-pc2-include-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .28rem;
}

    .st-pc2-include-list li {
        display: -webkit-flex;
        display: flex;
        align-items: flex-start;
        gap: .45rem;
        font-size: .77rem;
        color: var(--bs-body-color);
        line-height: 1.45;
    }

        .st-pc2-include-list li i {
            font-size: .75rem;
            color: rgba(var(--bs-primary-rgb), .75);
            flex-shrink: 0;
            margin-top: .1rem;
        }

/* ── Footer de tarjeta ──────────────────────────────────── */
.st-pc2-card-footer {
    border-top: 1px solid var(--bs-border-color);
    margin-top: .75rem;
    padding-top: .7rem;
}

.st-pc2-footer-top {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .55rem;
}

.st-pc2-pdf-link {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    transition: color .15s;
}

    .st-pc2-pdf-link:hover {
        color: rgba(var(--bs-primary-rgb), 1);
    }

    .st-pc2-pdf-link i {
        font-size: .8rem;
    }

.st-pc2-price-wrap {
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    gap: .25rem;
}

.st-pc2-price-desde {
    font-size: .68rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: .05em;
}

.st-pc2-price-amount {
    font-size: 1.35rem;
    font-weight: 900;
    color: #16a34a;
    letter-spacing: -.01em;
}

/* Botones de acción */
.st-pc2-footer-btns {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
}

.st-pc2-btn-ver {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .42rem .9rem;
    border-radius: 8px;
    border: 1.5px solid rgba(var(--bs-primary-rgb), 1);
    background: transparent;
    color: rgba(var(--bs-primary-rgb), 1);
    font-size: .78rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

    .st-pc2-btn-ver:hover {
        background: rgba(var(--bs-primary-rgb), 1);
        color: #fff;
    }

.st-pc2-btn-reservar {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .42rem .9rem;
    border-radius: 8px;
    border: none;
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

    .st-pc2-btn-reservar:hover {
        background: rgba(var(--bs-primary-rgb), .85);
    }

.st-pc2-btn-editar {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .42rem .9rem;
    border-radius: 8px;
    border: none;
    background: #198754;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

    .st-pc2-btn-editar:hover {
        background: #157347;
    }

/* ═══════════════════════════════════════════════════════════════
   §23  DetallesPaquete   (st-dp-*)
═══════════════════════════════════════════════════════════════ */

/* Page wrapper */
.st-dp-page {
    padding: 1.5rem 0 3rem;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.st-dp-breadcrumb .breadcrumb-item a {
    color: rgba(var(--bs-primary-rgb),1);
    text-decoration: none;
    font-size: .85rem;
}

    .st-dp-breadcrumb .breadcrumb-item a:hover {
        text-decoration: underline;
    }

.st-dp-breadcrumb .breadcrumb-item.active {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(var(--bs-primary-rgb),1);
}

/* ── Gallery ─────────────────────────────────────────────────── */
.st-dp-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.st-dp-carousel {
    position: relative;
}

.st-dp-main-img {
    height: 280px;
    object-fit: cover;
}

.st-dp-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.58) 0%, rgba(0,0,0,.22) 55%, transparent 100%);
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.5rem;
}

.st-dp-img-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.st-dp-car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    color: #1a1a1a;
    font-size: .85rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    transition: background .15s;
}

    .st-dp-car-btn:hover {
        background: #fff;
    }

.st-dp-car-prev {
    left: 10px;
}

.st-dp-car-next {
    right: 10px;
}

.st-dp-thumbs {
    display: -webkit-flex;
    display: flex;
    gap: 6px;
    padding: 8px;
    background: var(--bs-body-bg);
    overflow-x: auto;
    scrollbar-width: none;
}

    .st-dp-thumbs::-webkit-scrollbar {
        display: none;
    }

.st-dp-thumb {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    width: 76px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .72;
    transition: opacity .15s, border-color .15s;
}

    .st-dp-thumb.active {
        border-color: rgba(var(--bs-primary-rgb),1);
        opacity: 1;
    }

    .st-dp-thumb:hover {
        opacity: 1;
    }

    .st-dp-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ── Package info column ─────────────────────────────────────── */
.st-dp-code-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: #fff;
    background: rgba(var(--bs-primary-rgb),1);
    padding: .2rem .6rem;
    border-radius: 4px;
}

.st-dp-valid-badge {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    background: var(--st-accent);
    padding: .2rem .65rem;
    border-radius: 4px;
}

.st-dp-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--bs-body-color);
    line-height: 1.25;
    margin-bottom: .5rem;
}

.st-dp-stars {
    color: #f59e0b;
    font-size: .88rem;
}

.st-dp-rating-num {
    font-size: .9rem;
    font-weight: 800;
    color: var(--bs-body-color);
}

.st-dp-rating-count {
    font-size: .8rem;
    color: #6b7280;
}

.st-dp-desc {
    font-size: .88rem;
    color: #4b5563;
    line-height: 1.65;
}

/* Includes box */
.st-dp-includes-box {
    background: rgba(var(--bs-primary-rgb),.07);
    border-radius: 10px;
    padding: .85rem 1rem;
}

.st-dp-includes-header {
    font-size: .88rem;
    font-weight: 700;
    color: rgba(var(--bs-primary-rgb),1);
    margin-bottom: .15rem;
}

.st-dp-inc-item {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .3rem;
    font-size: .78rem;
    color: #374151;
    line-height: 1.45;
}

    .st-dp-inc-item i {
        color: rgba(var(--bs-primary-rgb),1);
        font-size: .78rem;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        margin-top: .1rem;
    }

/* Divider */
.st-dp-divider {
    border-color: var(--bs-border-color);
    margin: .85rem 0;
}

/* Price */
.st-dp-price-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: #9ca3af;
    line-height: 1;
}

.st-dp-price-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--st-accent);
    letter-spacing: -.02em;
    line-height: 1.1;
}

/* Buttons */
.st-dp-btn-download {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1.1rem;
    border-radius: 8px;
    border: 1.5px solid rgba(var(--bs-primary-rgb),1);
    background: transparent;
    color: rgba(var(--bs-primary-rgb),1);
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

    .st-dp-btn-download:hover {
        background: rgba(var(--bs-primary-rgb),.06);
    }

    .st-dp-btn-download > i {
        font-size: 1.1rem;
    }

.st-dp-btn-dl-text {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.st-dp-btn-dl-main {
    font-size: .84rem;
    font-weight: 700;
}

.st-dp-btn-dl-sub {
    font-size: .65rem;
    font-weight: 600;
    color: #9ca3af;
    margin-top: .15rem;
}

.st-dp-btn-hotel {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .52rem 1.1rem;
    border-radius: 8px;
    border: none;
    background: rgba(var(--bs-primary-rgb),1);
    color: #fff;
    font-size: .84rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

    .st-dp-btn-hotel:hover {
        background: rgba(var(--bs-primary-rgb),.85);
    }

.st-dp-fav-link {
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    transition: color .15s;
}

    .st-dp-fav-link:hover,
    .st-dp-fav-link.st-dp-fav-active {
        color: #ef4444;
    }

/* ── Sidebar ─────────────────────────────────────────────────── */
.st-dp-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
}

/* Info card */
.st-dp-info-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    padding: .6rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.st-dp-info-row {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--bs-border-color);
}

.st-dp-info-row-last {
    border-bottom: none;
    padding-bottom: .25rem;
}

.st-dp-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    background: rgba(var(--bs-primary-rgb),.1);
    color: rgba(var(--bs-primary-rgb),1);
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.st-dp-info-label {
    font-size: .67rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.2;
}

.st-dp-info-value {
    font-size: .85rem;
    font-weight: 700;
    color: var(--bs-body-color);
    line-height: 1.3;
    margin-top: .1rem;
}

/* Luxury card */
.st-dp-luxury-card {
    background: #0d2a52;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.22);
}

.st-dp-lux-content {
    padding: 1rem 1.1rem .8rem;
}

.st-dp-lux-brand-row {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .3rem;
    margin-bottom: .5rem;
}

.st-dp-lux-icon {
    font-size: 1rem;
    color: var(--st-accent);
}

.st-dp-lux-brand {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
}

.st-dp-lux-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .35rem;
    line-height: 1.25;
}

.st-dp-lux-desc {
    font-size: .78rem;
    color: rgba(255,255,255,.72);
    margin-bottom: .75rem;
    line-height: 1.55;
}

.st-dp-lux-btn {
    display: inline-block;
    padding: .42rem 1.15rem;
    border-radius: 6px;
    border: none;
    background: var(--st-accent);
    color: #1a1a1a;
    font-size: .8rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: .02em;
    transition: opacity .15s;
}

    .st-dp-lux-btn:hover {
        opacity: .88;
    }

.st-dp-lux-img-wrap {
    height: 120px;
    overflow: hidden;
}

    .st-dp-lux-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 60%;
    }

/* Help card */
.st-dp-help-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.st-dp-help-title {
    font-size: .92rem;
    font-weight: 800;
    color: var(--bs-body-color);
    margin-bottom: .4rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

    .st-dp-help-title i {
        color: rgba(var(--bs-primary-rgb),1);
    }

.st-dp-help-desc {
    font-size: .78rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: .65rem;
}

.st-dp-help-item {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .52rem 0;
    border-top: 1px solid var(--bs-border-color);
    font-size: .82rem;
    color: var(--bs-body-color);
    font-weight: 500;
}

    .st-dp-help-item i {
        color: rgba(var(--bs-primary-rgb),1);
        font-size: .9rem;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }

/* ── Conditions ──────────────────────────────────────────────── */
.st-dp-conditions {
    background: rgba(var(--bs-primary-rgb),.04);
    border-left: 4px solid rgba(var(--bs-primary-rgb),1);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.5rem;
}

.st-dp-cond-icon {
    font-size: 1.1rem;
    color: rgba(var(--bs-primary-rgb),1);
}

.st-dp-cond-title {
    font-size: .95rem;
    color: rgba(var(--bs-primary-rgb),1);
}

.st-dp-cond-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .45rem;
}

    .st-dp-cond-list li {
        display: -webkit-flex;
        display: flex;
        align-items: flex-start;
        gap: .4rem;
        font-size: .82rem;
        color: #374151;
        line-height: 1.5;
    }

        .st-dp-cond-list li i {
            color: rgba(var(--bs-primary-rgb),1);
            -webkit-flex-shrink: 0;
            flex-shrink: 0;
            margin-top: .15rem;
            font-size: .8rem;
        }

.st-dp-cond-note {
    font-size: .78rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: .01em;
}

/* ── Tabs ────────────────────────────────────────────────────── */
.st-dp-tab-nav {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: .35rem;
    border-bottom: none;
    padding-bottom: 0;
}

.st-dp-tab-btn {
    padding: .5rem 1.15rem;
    border-radius: 8px;
    border: 1.5px solid rgba(var(--bs-primary-rgb),.25);
    background: transparent;
    color: rgba(var(--bs-primary-rgb),1);
    font-size: .83rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
}

    .st-dp-tab-btn.active {
        background: rgba(var(--bs-primary-rgb),1);
        border-color: rgba(var(--bs-primary-rgb),1);
        color: #fff;
    }

    .st-dp-tab-btn:hover:not(.active) {
        background: rgba(var(--bs-primary-rgb),.07);
    }

.st-dp-day-header {
    font-size: .95rem;
    font-weight: 800;
    color: rgba(var(--bs-primary-rgb),1);
    margin-bottom: .75rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.st-dp-day-text {
    font-size: .87rem;
    color: #4b5563;
    line-height: 1.75;
}

.st-dp-tab-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 210px;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.st-dp-inc-section-title {
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: .65rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.st-dp-inc-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .45rem;
}

    .st-dp-inc-ul li {
        font-size: .85rem;
        color: #374151;
        padding-left: 1.2rem;
        position: relative;
        line-height: 1.5;
    }

        .st-dp-inc-ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: rgba(var(--bs-primary-rgb),1);
            font-weight: 900;
        }

.st-dp-no-inc li::before {
    color: #ef4444;
}

/* ── Hotel selection ─────────────────────────────────────────── */
.st-dp-hotels-section {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.st-dp-hotels-header {
    background: rgba(var(--bs-primary-rgb), 1);
    color: #fff;
    padding: .85rem 1.25rem;
    font-size: .95rem;
    font-weight: 800;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.st-dp-hotels-body {
    background: var(--bs-body-bg);
}

.st-dp-hotel-row {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--bs-border-color);
}

    .st-dp-hotel-row:last-child {
        border-bottom: none;
    }

.st-dp-hotel-img-wrap {
    width: 130px;
    height: 95px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

    .st-dp-hotel-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.st-dp-hotel-info {
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
}

.st-dp-hcode-badge {
    display: inline-block;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .06em;
    color: #fff;
    background: var(--st-accent);
    padding: .12rem .45rem;
    border-radius: 3px;
    margin-bottom: .25rem;
}

.st-dp-hotel-name {
    font-size: .9rem;
    font-weight: 800;
    color: var(--bs-body-color);
    margin-bottom: .2rem;
}

.st-dp-hotel-stars {
    color: #f59e0b;
    font-size: .75rem;
}

.st-dp-hotel-meal {
    font-size: .75rem;
    color: #6b7280;
}

.st-dp-hotel-period {
    font-size: .72rem;
    color: #9ca3af;
}

.st-dp-hotel-table-wrap {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    overflow-x: auto;
}

.st-dp-price-table {
    border-collapse: separate;
    border-spacing: 0;
    font-size: .78rem;
    white-space: nowrap;
    min-width: 260px;
}

    .st-dp-price-table thead tr th {
        background: var(--st-accent);
        color: #fff;
        padding: .32rem .7rem;
        font-weight: 700;
        text-align: center;
    }

        .st-dp-price-table thead tr th:first-child {
            border-radius: 6px 0 0 0;
        }

        .st-dp-price-table thead tr th:last-child {
            border-radius: 0 6px 0 0;
        }

    .st-dp-price-table tbody tr td {
        padding: .32rem .7rem;
        text-align: center;
        border-bottom: 1px solid var(--bs-border-color);
        color: var(--bs-body-color);
        background: var(--bs-body-bg);
    }

    .st-dp-price-table tbody tr:last-child td {
        border-bottom: none;
    }

    .st-dp-price-table tbody tr td:first-child {
        text-align: left;
        font-weight: 600;
    }

.st-dp-hotel-action {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-dp-btn-hotel-sel {
    padding: .55rem 1.2rem;
    border-radius: 8px;
    border: none;
    background: rgba(var(--bs-primary-rgb),1);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

    .st-dp-btn-hotel-sel:hover {
        background: rgba(var(--bs-primary-rgb),.85);
    }

    .st-dp-btn-hotel-sel.selected {
        background: #198754;
    }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .st-dp-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .st-dp-hotel-row {
        flex-wrap: wrap;
    }

    .st-dp-hotel-img-wrap {
        width: 90px;
        height: 70px;
    }

    .st-dp-hotel-table-wrap {
        width: 100%;
    }

    .st-dp-price-table {
        min-width: 100%;
    }

    .st-dp-hotel-action {
        width: 100%;
    }

    .st-dp-btn-hotel-sel {
        width: 100%;
    }

    .st-dp-title {
        font-size: 1.3rem;
    }

    .st-dp-conditions {
        padding: .85rem 1rem;
    }
}

@media (max-width: 575px) {
    .st-dp-main-img {
        height: 200px;
    }

    .st-dp-price-amount {
        font-size: 1.9rem;
    }
}

/* ── Responsive §22 ─────────────────────────────────────── */
@media (max-width: 1199.98px) {
    .st-pc2-img-wrap {
        width: 190px;
        min-width: 190px;
    }

    .st-pc2-features-bar {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .st-pc2-card {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .st-pc2-img-wrap {
        width: 100%;
        min-width: 0;
        height: 180px;
    }

    .st-pc2-features-bar {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .st-pc2-footer-btns {
        gap: .35rem;
    }

    .st-pc2-btn-ver,
    .st-pc2-btn-reservar,
    .st-pc2-btn-editar {
        font-size: .72rem;
        padding: .38rem .65rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   §23-B  Modal Reserva  (st-dp-modal-* / st-dp-ml-* / st-dp-mr-*)
═══════════════════════════════════════════════════════════════ */

/* ── Dialog & content wrapper ────────────────────────────────── */
.st-dp-modal-dlg {
    max-width: 920px;
}

.st-dp-modal-cnt {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

/* ── LEFT PANEL ──────────────────────────────────────────────── */
.st-dp-ml {
    width: 300px;
    background: rgba(var(--bs-primary-rgb),.05);
    border-right: 1px solid var(--bs-border-color);
}

.st-dp-ml-img-wrap {
    position: relative;
    height: 185px;
    overflow: hidden;
    flex-shrink: 0;
}

.st-dp-ml-code-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .07em;
    color: #1a1a1a;
    background: var(--st-accent);
    padding: .18rem .5rem;
    border-radius: 4px;
}

.st-dp-ml-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.st-dp-ml-info {
    padding: 1rem 1.2rem;
    overflow-y: auto;
}

.st-dp-ml-pkg-name {
    font-size: .78rem;
    color: #6b7280;
    margin-bottom: .2rem;
}

.st-dp-ml-hotel-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--bs-body-color);
    margin-bottom: .2rem;
    line-height: 1.3;
}

.st-dp-ml-stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: .75rem;
}

.st-dp-ml-inc-title {
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: rgba(var(--bs-primary-rgb),1);
    margin-bottom: .5rem;
}

.st-dp-ml-inc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: .5rem;
}

    .st-dp-ml-inc-list li {
        display: -webkit-flex;
        display: flex;
        align-items: flex-start;
        gap: .45rem;
        font-size: .76rem;
        color: #4b5563;
        line-height: 1.45;
    }

        .st-dp-ml-inc-list li i {
            color: #6b7280;
            font-size: .78rem;
            -webkit-flex-shrink: 0;
            flex-shrink: 0;
            margin-top: .1rem;
        }

.st-dp-ml-hr {
    border-color: var(--bs-border-color);
    margin: .75rem 0;
}

.st-dp-ml-desde {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: #9ca3af;
    line-height: 1;
}

.st-dp-ml-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--st-accent);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.st-dp-ml-price-sub {
    font-size: .75rem;
    color: #6b7280;
}

/* Secure box */
.st-dp-ml-secure {
    margin: 0 1.1rem 1.2rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 10px;
    padding: .7rem .85rem;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}

.st-dp-ml-sec-icon {
    font-size: 1.4rem;
    color: rgba(var(--bs-primary-rgb),1);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-dp-ml-sec-title {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(var(--bs-primary-rgb),1);
    margin-bottom: .15rem;
}

.st-dp-ml-sec-text {
    font-size: .72rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ── RIGHT PANEL ─────────────────────────────────────────────── */
.st-dp-mr {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    max-height: 88vh;
    position: relative;
}

/* Close button */
.st-dp-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    font-size: .88rem;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, color .15s;
    z-index: 10;
}

    .st-dp-modal-close:hover {
        background: #e5e7eb;
        color: #111;
    }

/* ── Stepper ─────────────────────────────────────────────────── */
.st-dp-stepper {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-right: 2rem; /* space for close btn */
}

.st-dp-step {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-dp-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: transparent;
    color: #9ca3af;
    font-size: .9rem;
    font-weight: 700;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, color .2s;
}

.st-dp-step-active .st-dp-step-circle {
    background: rgba(var(--bs-primary-rgb),1);
    border-color: rgba(var(--bs-primary-rgb),1);
    color: #fff;
}

.st-dp-step-lbl {
    font-size: .72rem;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    white-space: nowrap;
}

.st-dp-step-active .st-dp-step-lbl {
    color: rgba(var(--bs-primary-rgb),1);
    font-weight: 800;
}

.st-dp-step-line {
    height: 2px;
    -webkit-flex: 1;
    flex: 1;
    background: #d1d5db;
    margin-top: 17px;
    min-width: 55px;
}

/* ── Package summary (right panel) ──────────────────────────── */
.st-dp-mr-sum-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-body-color);
    text-align: center;
    margin-bottom: .3rem;
}

.st-dp-mr-pkg-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--st-accent);
    text-align: center;
    margin-bottom: .15rem;
}

.st-dp-mr-hotel-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #dc2626;
    text-align: center;
    margin-bottom: .2rem;
    line-height: 1.25;
}

.st-dp-mr-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    text-align: center;
}

.st-dp-mr-intro {
    font-size: .88rem;
    color: var(--bs-body-color);
    margin-bottom: 1rem;
}

/* ── Form fields ─────────────────────────────────────────────── */
.st-dp-fld-lbl {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #6b7280;
    margin-bottom: .4rem;
    text-transform: uppercase;
}

.st-dp-input-wrap {
    position: relative;
}

.st-dp-inp-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: .9rem;
    pointer-events: none;
    z-index: 2;
}

.st-dp-field-input,
.st-dp-field-select {
    display: block;
    width: 100%;
    padding: .62rem .85rem .62rem 2.3rem;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 8px;
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-size: .88rem;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .15s, box-shadow .15s;
}

    .st-dp-field-input:focus,
    .st-dp-field-select:focus {
        outline: none;
        border-color: rgba(var(--bs-primary-rgb),1);
        box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb),.12);
    }

.st-dp-field-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.2rem;
    cursor: pointer;
}

/* ── Noches adicionales ──────────────────────────────────────── */
.st-dp-chk {
    width: 16px;
    height: 16px;
    accent-color: rgba(var(--bs-primary-rgb),1);
    cursor: pointer;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.st-dp-chk-lbl {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    color: #374151;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.st-dp-chk-info {
    font-size: .82rem;
    color: #9ca3af;
    cursor: help;
}

.st-dp-noches-extra {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem .85rem;
    background: rgba(var(--bs-primary-rgb),.05);
    border: 1.5px solid var(--bs-border-color);
    border-radius: 8px;
    margin-top: .5rem;
}

.st-dp-num-input {
    width: 76px;
    padding: .42rem .6rem;
    border: 1.5px solid var(--bs-border-color);
    border-radius: 6px;
    font-size: .9rem;
    font-family: inherit;
    color: var(--bs-body-color);
    background: var(--bs-body-bg);
    text-align: center;
    -moz-appearance: textfield;
}

    .st-dp-num-input::-webkit-outer-spin-button,
    .st-dp-num-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .st-dp-num-input:focus {
        outline: none;
        border-color: rgba(var(--bs-primary-rgb),1);
        box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb),.12);
    }

.st-dp-num-lbl {
    font-size: .82rem;
    color: #6b7280;
    font-weight: 500;
}

/* ── Huéspedes secciones dinámicas ───────────────────────────── */
.st-dp-huesp-sec {
    background: rgba(var(--bs-primary-rgb),.03);
    border: 1px solid var(--bs-border-color);
    border-radius: 10px;
    padding: .75rem 1rem;
}

.st-dp-huesp-lbl {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(var(--bs-primary-rgb),1);
    margin-bottom: .4rem;
}

/* ── Info tip ────────────────────────────────────────────────── */
.st-dp-info-tip {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: .55rem;
    background: rgba(var(--bs-primary-rgb),.06);
    border: 1px solid rgba(var(--bs-primary-rgb),.15);
    border-radius: 8px;
    padding: .6rem .85rem;
    font-size: .8rem;
    color: rgba(var(--bs-primary-rgb),1);
}

    .st-dp-info-tip i {
        font-size: .88rem;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }

/* ── Action buttons ──────────────────────────────────────────── */
.st-dp-btn-cerrar {
    padding: .65rem 1.25rem;
    border-radius: 10px;
    border: 2px solid var(--bs-border-color);
    background: transparent;
    color: #374151;
    font-size: .88rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    white-space: nowrap;
}

    .st-dp-btn-cerrar:hover {
        border-color: #9ca3af;
        background: #f9fafb;
    }

.st-dp-btn-continuar {
    padding: .65rem 1.25rem;
    border-radius: 10px;
    border: none;
    background: rgba(var(--bs-primary-rgb),1);
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    white-space: nowrap;
}

    .st-dp-btn-continuar:hover {
        background: rgba(var(--bs-primary-rgb),.86);
    }

/* ── Child ages ──────────────────────────────────────────────── */
.st-dp-child-ages {
    margin-top: .6rem;
    padding-top: .6rem;
    border-top: 1px dashed var(--bs-border-color);
}

.st-dp-ages-row {
    display: -webkit-flex;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.st-dp-age-item {
    -webkit-flex: 1;
    flex: 1;
    min-width: 120px;
    max-width: 180px;
}

.st-dp-age-lbl {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: #6b7280;
    margin-bottom: .35rem;
    text-transform: uppercase;
}
/* El input de edad reutiliza .st-dp-field-input del modal
   pero se override la anchura para que sea más compacto */
.st-dp-age-input {
    padding-left: 2.3rem !important;
    -moz-appearance: textfield;
}

    .st-dp-age-input::-webkit-outer-spin-button,
    .st-dp-age-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/* ── Modal responsive ────────────────────────────────────────── */
@media (max-width: 767px) {
    .st-dp-modal-dlg {
        max-width: calc(100% - 24px);
        margin: 12px;
    }

    .st-dp-mr {
        padding: 1.25rem 1.1rem;
    }

    .st-dp-step-line {
        min-width: 30px;
    }

    .st-dp-mr-hotel-name {
        font-size: 1.1rem;
    }

    .st-dp-age-item {
        max-width: 100%;
    }
}

/* =============================================================
   §24 · LOGIN — Brand Selector  (st-lg-*)
   Vista   : Views/Home/Login.cshtml
   Layout  : Views/Shared/_LayoutLogin.cshtml
   ============================================================= */

/* ── Body ─────────────────────────────────────────────────── */
.st-lg-body {
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-family: 'Urbanist', 'Inter', sans-serif;
    background: radial-gradient(ellipse at 15% 85%, rgba(14,77,139,.28) 0%, transparent 55%), radial-gradient(ellipse at 85% 15%, rgba(0,48,135,.20) 0%, transparent 55%), linear-gradient(145deg, #040e24 0%, #071b3e 55%, #0b2660 100%);
    position: relative;
    overflow-x: hidden;
    padding: 2.5rem 0;
}

    /* Mapa-mundo sutil — dot grid */
    .st-lg-body::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(100,160,255,.13) 1px, transparent 1px);
        background-size: 28px 28px;
        pointer-events: none;
        z-index: 0;
    }

/* ── Wrap ─────────────────────────────────────────────────── */
.st-lg-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Encabezado ───────────────────────────────────────────── */
.st-lg-brand-icon {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 1.55rem;
}

.st-lg-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: .3rem;
    letter-spacing: -.015em;
}

.st-lg-subtitle {
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    margin: 0;
}

/* ── Tarjeta ──────────────────────────────────────────────── */
.st-lg-card {
    position: relative;
    height: 400px;
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,.40);
    -webkit-tap-highlight-color: transparent;
}

    .st-lg-card:hover,
    .st-lg-card:focus-visible {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 22px 60px rgba(0,0,0,.55);
    }

    .st-lg-card:focus-visible {
        outline: 3px solid rgba(255,255,255,.60);
        outline-offset: 3px;
    }

/* Capa de imagen de fondo */
.st-lg-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .55s cubic-bezier(.22,.68,0,1.2);
    will-change: transform;
}

.st-lg-card:hover .st-lg-card-bg,
.st-lg-card:focus-visible .st-lg-card-bg {
    transform: scale(1.08);
}

/* Capa overlay — degradado oscuro */
.st-lg-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 0deg, rgba(4,14,36,.92) 0%, rgba(4,14,36,.52) 45%, rgba(4,14,36,.14) 100% );
    transition: opacity .35s ease;
}

.st-lg-card:hover .st-lg-card-overlay,
.st-lg-card:focus-visible .st-lg-card-overlay {
    opacity: .80;
}

/* Overlay con tono de marca */
[data-lg-theme="pa"] .st-lg-card-overlay {
    background: linear-gradient(0deg, rgba(7,42,82,.92) 0%, rgba(7,42,82,.52) 48%, rgba(7,42,82,.10) 100%);
}

[data-lg-theme="co"] .st-lg-card-overlay {
    background: linear-gradient(0deg, rgba(0,26,82,.92) 0%, rgba(0,26,82,.52) 48%, rgba(0,26,82,.10) 100%);
}

[data-lg-theme="lx"] .st-lg-card-overlay {
    background: linear-gradient(0deg, rgba(17,17,17,.92) 0%, rgba(17,17,17,.52) 48%, rgba(17,17,17,.10) 100%);
}

[data-lg-theme="pe"] .st-lg-card-overlay {
    background: linear-gradient(0deg, rgba(1,55,90,.92) 0%, rgba(1,55,90,.52) 48%, rgba(1,55,90,.10) 100%);
}

/* Contenido de la tarjeta */
.st-lg-card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start; /* logo arriba */
    padding: 1.75rem 1.25rem 1.75rem;
    color: #fff;
    text-align: center;
}

/* Logo (imagen) */
.st-lg-logo {
    max-height: 58px;
    max-width: 82%;
    width: auto;
    object-fit: contain;
    margin-bottom: .55rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.55));
}

/* Fallback de texto cuando la imagen de logo no carga */
.st-lg-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: .55rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

/* País / tagline */
.st-lg-card-sub {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.68);
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ── Botón Ingresar ───────────────────────────────────────── */
.st-lg-btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: .25rem;
    margin-top: auto; /* empuja el botón al fondo del flex */
    padding: .48rem 1.4rem;
    border-radius: 2rem;
    border: 1.5px solid rgba(255,255,255,.42);
    background: rgba(255,255,255,.10);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .86rem;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background .25s ease, border-color .25s ease, transform .2s ease;
    white-space: nowrap;
}

.st-lg-card:hover .st-lg-btn,
.st-lg-card:focus-visible .st-lg-btn {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.70);
    transform: translateX(3px);
}

/* Acento de botón por marca */
[data-lg-theme="pa"]:hover .st-lg-btn,
[data-lg-theme="pa"]:focus-visible .st-lg-btn {
    background: rgba(14,77,139,.50);
    border-color: rgba(100,160,255,.75);
}

[data-lg-theme="co"]:hover .st-lg-btn,
[data-lg-theme="co"]:focus-visible .st-lg-btn {
    background: rgba(0,48,135,.50);
    border-color: rgba(100,150,255,.75);
}

[data-lg-theme="lx"]:hover .st-lg-btn,
[data-lg-theme="lx"]:focus-visible .st-lg-btn {
    background: rgba(201,168,76,.38);
    border-color: rgba(201,168,76,.82);
    color: #ffe8a0;
}

[data-lg-theme="pe"]:hover .st-lg-btn,
[data-lg-theme="pe"]:focus-visible .st-lg-btn {
    background: rgba(2,136,209,.45);
    border-color: rgba(2,136,209,.82);
}

/* ── Nota de pie ──────────────────────────────────────────── */
.st-lg-footer-note {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .03em;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
    .st-lg-card {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .st-lg-body {
        padding: 1.25rem 0;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .st-lg-card {
        height: 210px;
        border-radius: .9rem;
    }

    .st-lg-logo {
        max-height: 40px;
    }

    .st-lg-card-body {
        padding: .9rem .85rem 3.8rem;
    }

    .st-lg-btn {
        font-size: .76rem;
        padding: .38rem .95rem;
    }

    .st-lg-title {
        font-size: 1.2rem;
    }

    .st-lg-card-sub {
        margin-bottom: .65rem;
    }

    .st-lg-card-footer {
        padding: .45rem .75rem;
    }

    .st-lg-card-desc {
        font-size: .68rem;
    }
}

/* ── Card footer — pie con color de marca ─────────────────
   Posicionado en la parte inferior de cada tarjeta.
   El color de fondo varía por data-lg-theme.
   ──────────────────────────────────────────────────────── */
.st-lg-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: .6rem 1.1rem;
    text-align: center;
    /* Transición suave al hacer hover en la tarjeta */
    transition: padding .3s ease, background .3s ease;
}

/* Colores característicos por marca */
[data-lg-theme="pa"] .st-lg-card-footer {
    background: rgba(14, 77, 139, .88);
}

[data-lg-theme="co"] .st-lg-card-footer {
    background: rgba(0, 48, 135, .88);
}

[data-lg-theme="lx"] .st-lg-card-footer {
    background: rgba(140, 95, 18, .88);
}

[data-lg-theme="pe"] .st-lg-card-footer {
    background: rgba(2, 136, 209, .88);
}

/* Hover: el footer se intensifica ligeramente */
[data-lg-theme="pa"]:hover .st-lg-card-footer,
[data-lg-theme="pa"]:focus-visible .st-lg-card-footer {
    background: rgba(14, 77, 139, 1);
}

[data-lg-theme="co"]:hover .st-lg-card-footer,
[data-lg-theme="co"]:focus-visible .st-lg-card-footer {
    background: rgba(0, 48, 135, 1);
}

[data-lg-theme="lx"]:hover .st-lg-card-footer,
[data-lg-theme="lx"]:focus-visible .st-lg-card-footer {
    background: rgba(140, 95, 18, 1);
}

[data-lg-theme="pe"]:hover .st-lg-card-footer,
[data-lg-theme="pe"]:focus-visible .st-lg-card-footer {
    background: rgba(2, 136, 209, 1);
}

/* Texto de descripción */
.st-lg-card-desc {
    margin: 0;
    font-size: .77rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .90);
    letter-spacing: .02em;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ajuste del body de la tarjeta para que el botón no tape el footer */
.st-lg-card-body {
    padding-bottom: 3.8rem; /* ~height del footer */
}

/* =============================================================
   §24-C · OVERRIDES — Tarjetas rediseñadas
   Altura mayor, contenido completo, botón sólido rectangular
   ============================================================= */

/* ── Altura de tarjeta ────────────────────────────────────── */
.st-lg-card {
    height: 520px;
}

@media (max-width: 991px) {
    .st-lg-card {
        height: 460px;
    }
}

@media (max-width: 575px) {
    .st-lg-card {
        height: 320px;
    }
}

/* ── Card-body: distribuir con spacer interno ─────────────── */
.st-lg-card-body {
    padding: 1.2rem 1.1rem 0;
    padding-bottom: 3.5rem; /* espacio para el footer strip */
}

@media (min-width: 1200px) {
    .st-lg-card-body {
        padding: 1.4rem 1.5rem 3.5rem;
    }
}

@media (min-width: 1400px) {
    .st-lg-card-body {
        padding: 1.5rem 1.85rem 3.5rem;
    }
}

@media (max-width: 575px) {
    .st-lg-card-body {
        padding: .85rem .8rem 3.2rem;
    }
}

/* ── Badge de país / marca ────────────────────────────────── */
.st-lg-card-badge {
    display: inline-block;
    padding: .2rem .85rem;
    border-radius: 2rem;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,.30);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    margin-bottom: .55rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

[data-lg-theme="pa"] .st-lg-card-badge {
    background: rgba(14, 77, 139, .82);
}

[data-lg-theme="co"] .st-lg-card-badge {
    background: rgba(0, 48, 135, .82);
}

[data-lg-theme="lx"] .st-lg-card-badge {
    background: rgba(140, 95, 18, .82);
}

[data-lg-theme="pe"] .st-lg-card-badge {
    background: rgba(2, 136, 209, .82);
}

/* ── Descripción superior ─────────────────────────────────── */
.st-lg-card-desc-top {
    font-size: .76rem;
    color: rgba(255,255,255,.82);
    line-height: 1.5;
    text-align: center;
    margin: 0 0 .4rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .st-lg-card-desc-top {
        display: none;
    }
    /* ocultar en móvil por espacio */
}

/* ── Spacer — empuja features + btn hacia abajo ───────────── */
.st-lg-card-spacer {
    -webkit-flex: 1;
    flex: 1;
    min-height: .25rem;
}

/* ── Lista de servicios ───────────────────────────────────── */
.st-lg-card-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 .7rem;
    width: 100%;
    text-align: left;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

    .st-lg-card-feats li {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        gap: .5rem;
        font-size: .77rem;
        color: rgba(255,255,255,.88);
        padding: .3rem 0;
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

        .st-lg-card-feats li:last-child {
            border-bottom: none;
        }

        .st-lg-card-feats li i {
            font-size: .88rem;
            color: var(--st-accent, #C9A84C);
            -webkit-flex-shrink: 0;
            flex-shrink: 0;
            width: 16px;
            text-align: center;
        }

@media (max-width: 575px) {
    .st-lg-card-feats li {
        font-size: .68rem;
        padding: .22rem 0;
    }

        .st-lg-card-feats li i {
            font-size: .78rem;
        }
}

/* ── Botón Ingresar — sólido, rectangular ─────────────────── */
.st-lg-btn {
    width: auto;
    margin-top: 0;
    border-radius: .55rem;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    padding: .62rem 1.8rem;
    font-size: .88rem;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    letter-spacing: .03em;
}
/* Color sólido por marca */
[data-lg-theme="pa"] .st-lg-btn {
    background: #0e5aa3;
    color: #fff;
    border-color: transparent;
}

[data-lg-theme="co"] .st-lg-btn {
    background: #003087;
    color: #fff;
    border-color: transparent;
}

[data-lg-theme="lx"] .st-lg-btn {
    background: #7a5c0f;
    color: #fff;
    border-color: transparent;
}

[data-lg-theme="pe"] .st-lg-btn {
    background: #0280c4;
    color: #fff;
    border-color: transparent;
}

/* Hover: brillo sin cambiar color base */
[data-lg-theme="pa"]:hover .st-lg-btn,
[data-lg-theme="pa"]:focus-visible .st-lg-btn {
    background: #1168b8;
    border-color: transparent;
    transform: none;
}

[data-lg-theme="co"]:hover .st-lg-btn,
[data-lg-theme="co"]:focus-visible .st-lg-btn {
    background: #003da6;
    border-color: transparent;
    transform: none;
}

[data-lg-theme="lx"]:hover .st-lg-btn,
[data-lg-theme="lx"]:focus-visible .st-lg-btn {
    background: #916c12;
    color: #fff;
    border-color: transparent;
    transform: none;
}

[data-lg-theme="pe"]:hover .st-lg-btn,
[data-lg-theme="pe"]:focus-visible .st-lg-btn {
    background: #0291d9;
    border-color: transparent;
    transform: none;
}

@media (max-width: 575px) {
    .st-lg-btn {
        font-size: .76rem;
        padding: .5rem .7rem;
        border-radius: .45rem;
    }
}

/* =============================================================
   §24-D · Fixes: sombra de logo · servicios con círculos
   ============================================================= */

/* ① Logo — sombra en capas: halo oscuro denso + difusión amplia */
.st-lg-logo {
    filter: drop-shadow(0 0 3px rgba(0,0,0,.75)) drop-shadow(0 0 10px rgba(0,0,0,.60)) drop-shadow(0 2px 22px rgba(0,0,0,.45));
}

/* ② Spacer fijo — features quedan al centro, no al fondo ──── */
.st-lg-card-spacer {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 1rem;
    min-height: 1rem;
    -webkit-flex-grow: 0;
    flex-grow: 0;
}

/* ③ Botón: margin-top auto lo empuja al fondo del flex ─────── */
.st-lg-btn {
    margin-top: auto;
}

/* ④ Features: sin separadores, fuente más grande, icon en círculo */
.st-lg-card-feats {
    margin-bottom: .55rem;
    gap: 0;
}

    .st-lg-card-feats li {
        gap: .7rem;
        font-size: .92rem;
        font-weight: 500;
        padding: .6rem 0;
        border-bottom: none;
        color: rgba(255,255,255,.92);
    }

        /* Círculo del ícono */
        .st-lg-card-feats li i {
            width: 30px;
            height: 30px;
            min-width: 30px;
            border-radius: 50%;
            display: -webkit-inline-flex;
            display: inline-flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center;
            font-size: .80rem;
            color: #fff;
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            -webkit-flex-shrink: 0;
            flex-shrink: 0;
        }

/* Color del círculo por marca */
[data-lg-theme="pa"] .st-lg-card-feats li i {
    background: rgba(14, 77, 139, .65);
}

[data-lg-theme="co"] .st-lg-card-feats li i {
    background: rgba(0, 48, 135, .65);
}

[data-lg-theme="lx"] .st-lg-card-feats li i {
    background: rgba(140, 95, 18, .65);
}

[data-lg-theme="pe"] .st-lg-card-feats li i {
    background: rgba(2, 136, 209, .65);
}

/* Responsive móvil */
@media (max-width: 575px) {
    .st-lg-card-feats li {
        font-size: .72rem;
        padding: .32rem 0;
        gap: .55rem;
    }

        .st-lg-card-feats li i {
            width: 24px;
            height: 24px;
            min-width: 24px;
            font-size: .68rem;
        }
}

/* =============================================================
   §24-E · OVERRIDE MÓVIL CONSOLIDADO — selector de marca
   Centraliza todos los ajustes para ≤575px en un solo bloque
   para que no haya conflictos entre bloques dispersos.
   ============================================================= */
@media (max-width: 575px) {

    /* ── Cuerpo ──────────────────────────────────────────── */
    .st-lg-body {
        padding: 1.25rem 0 2rem;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    /* ── Encabezado ──────────────────────────────────────── */
    .st-lg-brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }

    .st-lg-lg-header {
        margin-bottom: .6rem !important;
    }

    .st-lg-title {
        font-size: 1.1rem;
        margin-bottom: .1rem;
    }

    .st-lg-subtitle {
        font-size: .78rem;
    }

    /* ── Tarjeta ─────────────────────────────────────────── */
    .st-lg-card {
        height: 270px;
        border-radius: .75rem;
    }

    /* ── Cuerpo de tarjeta ───────────────────────────────── */
    .st-lg-card-body {
        padding: .8rem .7rem 2.9rem;
    }

    /* ── Logo ────────────────────────────────────────────── */
    .st-lg-logo {
        max-height: 32px;
        margin-bottom: .25rem;
    }

    /* ── Badge de país ───────────────────────────────────── */
    .st-lg-card-badge {
        font-size: .58rem;
        padding: .13rem .6rem;
        margin-bottom: .28rem;
    }

    /* ── Descripción superior: oculta en móvil ───────────── */
    .st-lg-card-desc-top {
        display: none;
    }

    /* ── Espaciador ──────────────────────────────────────── */
    .st-lg-card-spacer {
        height: .4rem;
        min-height: .4rem;
    }

    /* ── Lista de servicios ──────────────────────────────── */
    .st-lg-card-feats {
        margin-bottom: .25rem;
        gap: 0;
    }

        .st-lg-card-feats li {
            font-size: .67rem;
            font-weight: 500;
            padding: .2rem 0;
            gap: .42rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .st-lg-card-feats li i {
                width: 22px;
                height: 22px;
                min-width: 22px;
                font-size: .62rem;
                -webkit-flex-shrink: 0;
                flex-shrink: 0;
            }

    /* ── Botón Ingresar ──────────────────────────────────── */
    .st-lg-btn {
        font-size: .74rem;
        padding: .44rem .7rem;
        border-radius: .45rem;
    }

    /* ── Footer de tarjeta ───────────────────────────────── */
    .st-lg-card-footer {
        padding: .36rem .6rem;
    }

    .st-lg-card-desc {
        font-size: .63rem;
    }

    /* ── Nota de pie de página ───────────────────────────── */
    .st-lg-footer-note {
        font-size: .7rem;
        padding: 0 1rem;
        margin-top: .75rem !important;
    }
}

/* ── Teléfonos muy pequeños (< 380px) ────────────────────────── */
@media (max-width: 379px) {
    .st-lg-card {
        height: 250px;
    }

    .st-lg-logo {
        max-height: 28px;
    }

    .st-lg-card-feats li {
        font-size: .62rem;
        padding: .17rem 0;
    }

        .st-lg-card-feats li i {
            width: 20px;
            height: 20px;
            min-width: 20px;
            font-size: .58rem;
        }

    .st-lg-btn {
        font-size: .7rem;
        padding: .38rem .55rem;
    }

    .st-lg-title {
        font-size: 1rem;
    }
}

/* =============================================================
   §24-B · PANTALLA DE LOGIN  (st-lg-ls-*)
   Overlay fijo, misma vista Login.cshtml.
   Se muestra cuando el usuario elige una marca.
   Colores del formulario heredan var(--bs-primary) del tema activo.
   ============================================================= */

/* ── Contenedor principal (position:fixed, invisible por defecto) */
.st-lg-login-screen {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none; /* JS lo pone 'flex' al activar */
    -webkit-flex-direction: column;
    flex-direction: column;
    background: #040e24;
    transition: opacity .30s ease;
    overflow: hidden;
}

/* ── Fila central: hero + panel ──────────────────────────── */
.st-lg-ls-main {
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
    min-height: 0;
}

/* ── HERO (izquierda) ─────────────────────────────────────── */
.st-lg-ls-hero {
    -webkit-flex: 1;
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
}

/* Doble degradado: vignette + tono de marca abajo */
.st-lg-ls-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,14,36,.22) 0%, rgba(4,14,36,.72) 100%), linear-gradient(90deg, rgba(4,14,36,.48) 0%, transparent 60%);
}

/* Cuerpo del hero — distribución en 3 zonas (logo / texto / trust) */
.st-lg-ls-hero-body {
    position: relative;
    z-index: 1;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    padding: 3rem 3.5rem 2.5rem;
    color: #fff;
    text-align: center;
    gap: 0;
}

/* Logo de la marca */
.st-lg-ls-top {
    width: 100%;
    text-align: center;
}

.st-lg-ls-center {
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 1.5rem 0;
}

.st-lg-ls-logo {
    max-height: 72px;
    max-width: 75%;
    object-fit: contain;
    filter: drop-shadow(0 2px 14px rgba(0,0,0,.65));
}

/* País en Playfair italic dorado */
.st-lg-ls-country {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--st-accent);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    margin: .5rem 0 0;
    line-height: 1.2;
}

/* "Bienvenido a / Style Travel" */
.st-lg-ls-welcome {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: .75rem 0 .4rem;
}

.st-lg-ls-brand-name {
    display: block;
    font-size: clamp(1.7rem, 3.2vw, 2.9rem);
    font-weight: 800;
    color: var(--st-accent);
    line-height: 1.1;
}

/* Icono avión */
.st-lg-ls-plane {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--st-accent);
    opacity: .80;
    margin: .6rem 0;
    display: block;
}

/* Tagline */
.st-lg-ls-tagline {
    font-size: clamp(.85rem, 1.3vw, 1rem);
    color: rgba(255,255,255,.80);
    line-height: 1.65;
    white-space: pre-line;
    max-width: 400px;
    margin: 0 auto;
}

/* Trust badges */
.st-lg-ls-trust {
    display: -webkit-flex;
    display: flex;
    gap: clamp(.75rem, 2vw, 2rem);
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 1.25rem;
    width: 100%;
}

.st-lg-ls-trust-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.80);
    font-size: .76rem;
    font-weight: 500;
    text-align: center;
}

    .st-lg-ls-trust-item i {
        font-size: 1.35rem;
        color: var(--st-accent);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255,255,255,.10);
        display: -webkit-inline-flex;
        display: inline-flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

/* ── PANEL (derecha, blanco) ──────────────────────────────── */
.st-lg-ls-panel {
    width: 460px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    background: #ffffff;
    overflow-y: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 2.75rem 2.75rem 2rem;
    box-shadow: -6px 0 28px rgba(0,0,0,.18);
}

/* ── Tabs Login / Registro ────────────────────────────────── */
.st-lg-ls-tabs {
    display: -webkit-flex;
    display: flex;
    border-bottom: 1.5px solid #e5e7eb;
    margin-bottom: 2rem;
    gap: 0;
}

.st-lg-ls-tab {
    -webkit-flex: 1;
    flex: 1;
    padding: .7rem .5rem;
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    color: #9ca3af;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .01em;
    transition: color .2s, border-color .2s;
}

    .st-lg-ls-tab.active {
        color: var(--bs-primary);
        border-bottom-color: var(--bs-primary);
    }

/* ── Formulario ───────────────────────────────────────────── */
.st-lg-ls-form {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1;
    flex: 1;
}

.st-lg-ls-form-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: .3rem;
    line-height: 1.2;
}

.st-lg-ls-form-sub {
    font-size: .88rem;
    color: #6b7280;
    margin-bottom: 1.6rem;
}

/* ── Campos de texto ──────────────────────────────────────── */
.st-lg-ls-field {
    margin-bottom: 1.1rem;
}

.st-lg-ls-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .4rem;
}

.st-lg-ls-irow {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    background: #f3f4f6;
    border: 1.5px solid #e5e7eb;
    border-radius: .7rem;
    padding: 0 .85rem;
    gap: .5rem;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

    .st-lg-ls-irow:focus-within {
        background: #fff;
        border-color: var(--bs-primary);
        box-shadow: var(--st-input-focus-shadow);
    }

.st-lg-ls-il,
.st-lg-ls-ir {
    color: #9ca3af;
    font-size: 1.05rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    pointer-events: none;
}

.st-lg-ls-input {
    -webkit-flex: 1;
    flex: 1;
    border: none;
    background: transparent;
    padding: .72rem 0;
    font-family: 'Urbanist', sans-serif;
    font-size: .96rem;
    color: #111827;
    outline: none;
    min-width: 0;
}

    .st-lg-ls-input::placeholder {
        color: #9ca3af;
    }

.st-lg-ls-eye {
    background: none;
    border: none;
    padding: 0;
    color: #9ca3af;
    font-size: 1rem;
    cursor: pointer;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    transition: color .2s;
}

    .st-lg-ls-eye:hover {
        color: #374151;
    }

/* ── Selector de idioma ───────────────────────────────────── */
.st-lg-ls-lang {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: .85rem 1rem;
    text-align: center;
    margin: 1.15rem 0;
}

.st-lg-ls-lang-lbl {
    font-size: .76rem;
    color: #6b7280;
    margin-bottom: .6rem;
}

.st-lg-ls-lang-row {
    display: -webkit-flex;
    display: flex;
    gap: .75rem;
    -webkit-justify-content: center;
    justify-content: center;
}

.st-lg-ls-lang-btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: .4rem;
    padding: .38rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 2rem;
    background: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

    .st-lg-ls-lang-btn.active {
        border-color: var(--bs-primary);
        color: var(--bs-primary);
    }

/* ── Botones de acción ────────────────────────────────────── */
.st-lg-ls-actions {
    display: -webkit-flex;
    display: flex;
    gap: .75rem;
    margin-top: 1.4rem;
}

/* Volver */
.st-lg-ls-btn-back {
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: .4rem;
    padding: .72rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: .75rem;
    background: #fff;
    color: #374151;
    font-family: 'Urbanist', sans-serif;
    font-size: .94rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

    .st-lg-ls-btn-back:hover {
        border-color: #9ca3af;
        background: #f9fafb;
    }

/* Ingresar */
.st-lg-ls-btn-submit {
    -webkit-flex: 1.6;
    flex: 1.6;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: .4rem;
    padding: .72rem 1rem;
    border: none;
    border-radius: .75rem;
    background: var(--bs-primary);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .94rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter .2s, transform .15s;
}

    .st-lg-ls-btn-submit:hover {
        filter: brightness(1.12);
        transform: translateY(-1px);
    }

/* Recuperar contraseña */
.st-lg-ls-recover {
    font-size: .84rem;
    font-weight: 500;
    color: var(--bs-primary);
    text-decoration: none;
    transition: opacity .2s;
}

    .st-lg-ls-recover:hover {
        opacity: .72;
        text-decoration: underline;
    }

/* ── Footer inferior ──────────────────────────────────────── */
.st-lg-ls-foot {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    height: 52px;
    background: #0b1229;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 2rem;
    color: rgba(255,255,255,.48);
    font-size: .76rem;
    gap: 1rem;
}

.st-lg-ls-foot-left {
    font-weight: 700;
    color: rgba(255,255,255,.65);
    white-space: nowrap;
}

.st-lg-ls-foot-center {
    white-space: nowrap;
}

.st-lg-ls-foot-right {
    display: -webkit-flex;
    display: flex;
    gap: 0;
}

    .st-lg-ls-foot-right a {
        color: rgba(255,255,255,.48);
        text-decoration: none;
        margin-left: 1.5rem;
        font-size: .76rem;
        white-space: nowrap;
        transition: color .2s;
    }

        .st-lg-ls-foot-right a:hover {
            color: #fff;
        }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
    .st-lg-ls-panel {
        width: 400px;
        padding: 2rem 2rem 1.75rem;
    }
}

@media (max-width: 767px) {
    .st-lg-ls-hero {
        display: none;
    }
    /* hero oculto en móvil */
    .st-lg-ls-panel {
        width: 100%;
        padding: 2rem 1.5rem 1.5rem;
        box-shadow: none;
    }

    .st-lg-ls-foot {
        height: auto;
        padding: .55rem 1rem;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .st-lg-ls-foot-center {
        display: none;
    }

    .st-lg-ls-foot-right a:first-child {
        margin-left: 0;
    }
}

/* =============================================================
   §25 · LISTA DE RESERVAS  (lr-*)
   Vista   : Views/Home/ListaReservas.cshtml
   Layout  : Views/Shared/_Layout.cshtml
   ============================================================= */

/* ── Página ────────────────────────────────────────────────── */
.lr-page {
    background: #f3f5f9;
    min-height: calc(100vh - 64px);
    padding: 1.25rem 0 3rem;
}

/* ── Barra de filtros ──────────────────────────────────────── */
.lr-filter-bar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .65rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
}

.lr-filter-group {
    display: flex;
    flex-direction: column;
    gap: .28rem;
    flex: 1;
    min-width: 140px;
}

.lr-filter-label {
    font-size: .72rem;
    font-weight: 700;
    color: #374151;
    letter-spacing: .03em;
}

.lr-filter-input-wrap {
    position: relative;
}

    .lr-filter-input-wrap i {
        position: absolute;
        left: .7rem;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        font-size: .95rem;
        pointer-events: none;
    }

.lr-filter-input {
    width: 100%;
    height: 40px;
    border: 1.5px solid #d1d5db;
    border-radius: .45rem;
    padding: 0 .75rem 0 2.2rem;
    font-size: .85rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

    .lr-filter-input:focus {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 3px rgba(13,110,253,.10);
    }

    .lr-filter-input::placeholder {
        color: #b0b8cc;
    }

/* Rango de fechas */
.lr-date-range {
    display: flex;
    align-items: center;
    gap: .35rem;
    height: 40px;
    border: 1.5px solid #d1d5db;
    border-radius: .45rem;
    padding: 0 .6rem;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

    .lr-date-range:focus-within {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 3px rgba(13,110,253,.10);
    }

    .lr-date-range i {
        color: #9ca3af;
        font-size: .9rem;
        flex-shrink: 0;
    }

.lr-date-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: .83rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    width: 90px;
}

.lr-date-sep {
    color: #9ca3af;
    font-size: .8rem;
}

/* Radio grupo */
.lr-radio-group {
    display: flex;
    flex-direction: column;
    gap: .28rem;
}

.lr-radio-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    height: 40px;
    padding: 0 .25rem;
}

.lr-radio-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    cursor: pointer;
    font-size: .85rem;
    color: #374151;
    font-weight: 500;
}

    .lr-radio-item input[type="radio"] {
        accent-color: var(--bs-primary);
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

/* Botón buscar */
.lr-btn-buscar {
    height: 40px;
    padding: 0 1.4rem;
    border-radius: .48rem;
    border: none;
    background: var(--bs-primary);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
    white-space: nowrap;
    transition: filter .2s;
}

    .lr-btn-buscar:hover {
        filter: brightness(1.15);
    }

/* ── Cabecera de la sección ────────────────────────────────── */
.lr-section-top {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .9rem;
    flex-wrap: wrap;
}

.lr-section-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    flex-shrink: 0;
}

.lr-btn-masivo {
    height: 38px;
    padding: 0 1.1rem;
    border-radius: .45rem;
    border: none;
    background: var(--bs-primary);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: filter .2s;
}

    .lr-btn-masivo:hover {
        filter: brightness(1.15);
    }

.lr-spacer {
    flex: 1;
}

.lr-search-wrap {
    position: relative;
}

    .lr-search-wrap i {
        position: absolute;
        right: .7rem;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        font-size: .9rem;
        pointer-events: none;
    }

.lr-search-input {
    height: 38px;
    width: 260px;
    border: 1.5px solid #d1d5db;
    border-radius: .45rem;
    padding: 0 2rem 0 .8rem;
    font-size: .84rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    outline: none;
    transition: border-color .2s;
}

    .lr-search-input:focus {
        border-color: var(--bs-primary);
    }

    .lr-search-input::placeholder {
        color: #b0b8cc;
    }

.lr-btn-filtros {
    height: 38px;
    padding: 0 .9rem;
    border-radius: .45rem;
    border: 1.5px solid #d1d5db;
    background: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}

    .lr-btn-filtros:hover {
        background: #f9fafb;
    }

/* ── Tarjetas de reserva ───────────────────────────────────── */
.lr-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #e8a317;
    border-radius: .6rem;
    margin-bottom: .7rem;
    overflow: hidden;
}

.lr-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem .65rem;
    flex-wrap: wrap;
}

.lr-card-bottom {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem 1rem .65rem;
    border-top: 1px solid #f0f2f5;
    background: #fafbfd;
    flex-wrap: wrap;
}

/* Info cells dentro de la card */
.lr-info {
    display: flex;
    flex-direction: column;
    gap: .05rem;
}

.lr-info-label {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9ca3af;
}

.lr-info-val {
    font-size: .84rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

    .lr-info-val.lg {
        font-size: 1.15rem;
        font-weight: 800;
        color: #0d2455;
    }

    .lr-info-val.green {
        color: #16a34a;
        font-weight: 700;
    }

    .lr-info-val.bold {
        font-weight: 700;
        color: #111827;
    }

/* Anchos fijos por columna */
.lr-col-reserva {
    min-width: 68px;
}

.lr-col-creado {
    min-width: 90px;
}

.lr-col-nombre {
    flex: 1;
    min-width: 140px;
}

.lr-col-counter {
    flex: 1;
    min-width: 160px;
}

.lr-col-saldo {
    min-width: 80px;
    text-align: right;
}

.lr-col-total {
    min-width: 80px;
    text-align: right;
}

.lr-col-menu {
    margin-left: auto;
}

/* Fila inferior */
.lr-badge-status {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .22rem .7rem;
    border-radius: 2rem;
    font-size: .7rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.lr-badge-confirmado {
    background: #dcfce7;
    color: #15803d;
}

.lr-badge-pendiente {
    background: #fef9c3;
    color: #a16207;
}

.lr-badge-anulado {
    background: #fee2e2;
    color: #b91c1c;
}

.lr-col-fviaje {
    min-width: 90px;
}

.lr-col-limite {
    min-width: 105px;
}

.lr-col-icon {
    min-width: 60px;
    text-align: center;
}

.lr-icon-ok {
    color: #16a34a;
    font-size: 1.1rem;
}

.lr-icon-no {
    color: #9ca3af;
    font-size: 1.1rem;
}

.lr-date-orange {
    color: #e8a317;
    font-weight: 600;
}

/* Acciones */
.lr-acciones {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.lr-accion {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .76rem;
    font-weight: 600;
    color: #0d2455;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .15s;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
}

    .lr-accion:hover {
        opacity: .7;
        color: #0d2455;
    }

.lr-accion-danger {
    color: #dc2626;
}

    .lr-accion-danger:hover {
        color: #dc2626;
    }

.lr-accion i {
    font-size: .82rem;
}

.lr-accion-sep {
    color: #e5e7eb;
    font-size: .9rem;
    user-select: none;
}

/* Menú de tres puntos */
.lr-menu-btn {
    width: 28px;
    height: 28px;
    border-radius: .35rem;
    border: 1.5px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    font-size: .95rem;
    transition: background .15s;
}

    .lr-menu-btn:hover {
        background: #f3f4f6;
    }

/* ── Pie: paginación ───────────────────────────────────────── */
.lr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .5rem;
    flex-wrap: wrap;
    gap: .5rem;
}

.lr-pag-info {
    font-size: .8rem;
    color: #6b7280;
}

.lr-pag-btns {
    display: flex;
    gap: .2rem;
}

.lr-pag-btn {
    min-width: 34px;
    height: 34px;
    border-radius: .4rem;
    border: 1.5px solid #d1d5db;
    background: #fff;
    font-size: .82rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 .35rem;
    transition: background .15s;
}

    .lr-pag-btn:hover:not(:disabled):not(.active) {
        background: #f3f4f6;
    }

    .lr-pag-btn.active {
        background: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #fff;
        font-weight: 700;
    }

    .lr-pag-btn:disabled {
        opacity: .38;
        cursor: default;
    }

/* ── Checkbox de selección ──────────────────────────────────── */
.lr-card-cb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-right: .2rem;
}

.lr-check {
    width: 19px;
    height: 19px;
    cursor: pointer;
    accent-color: var(--bs-primary);
    flex-shrink: 0;
}

/* ── Cabecera de selección ──────────────────────────────────── */
.lr-select-info {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .83rem;
    font-weight: 600;
    color: #374151;
    flex-shrink: 0;
}

.lr-select-sep {
    color: #d1d5db;
}

.lr-select-hint {
    font-size: .8rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Badge de estado (outlined, en fila superior) ───────────── */
.lr-estado-badge {
    display: inline-flex;
    align-items: center;
    padding: .28rem .75rem;
    border-radius: 2rem;
    font-size: .68rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1.5px solid;
    flex-shrink: 0;
}

.lr-estado--reconfirmado {
    border-color: #16a34a;
    color: #16a34a;
    background: transparent;
}

.lr-estado--confirmado {
    border-color: #16a34a;
    color: #16a34a;
    background: transparent;
}

.lr-estado--pendiente {
    border-color: #d97706;
    color: #d97706;
    background: transparent;
}

.lr-estado--anulado {
    border-color: #dc2626;
    color: #dc2626;
    background: transparent;
}

/* ── Columna de estado en fila superior ─────────────────────── */
.lr-col-estado {
    min-width: 110px;
    display: flex;
    align-items: center;
}

/* ── Botón Pagar ────────────────────────────────────────────── */
.lr-btn-pagar {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    height: 34px;
    padding: 0 .9rem;
    border-radius: .42rem;
    border: none;
    background: #e8a317;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: filter .15s;
}

    .lr-btn-pagar:hover {
        filter: brightness(1.1);
    }

    .lr-btn-pagar i {
        font-size: .72rem;
    }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .lr-filter-group {
        min-width: 120px;
    }

    .lr-col-counter {
        display: none;
    }

    .lr-search-input {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .lr-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .lr-filter-group {
        min-width: unset;
    }

    .lr-btn-buscar {
        width: 100%;
        justify-content: center;
    }

    .lr-card-top, .lr-card-bottom {
        gap: .6rem;
    }

    .lr-col-nombre {
        min-width: 120px;
    }

    .lr-acciones {
        gap: .35rem;
    }

    .lr-search-input {
        width: 160px;
    }

    .lr-select-hint {
        display: none;
    }
}

@media (max-width: 576px) {
    .lr-section-top {
        gap: .5rem;
    }

    .lr-spacer {
        display: none;
    }

    .lr-search-wrap, .lr-btn-filtros {
        width: 100%;
    }

    .lr-search-input {
        width: 100%;
    }

    .lr-col-saldo, .lr-col-total {
        display: none;
    }
}

/* =============================================================
   §26 · NAVBAR — Contabilidad dropdown + Carrito  (st-nav-dd-* / st-cart-*)
   ============================================================= */

/* ── Dropdown hover Contabilidad ────────────────────────────── */
.st-nav-dd {
    position: relative;
}

.st-nav-dd-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
}

.st-nav-dd-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: .6rem;
    box-shadow: 0 10px 28px rgba(0,0,0,.13);
    min-width: 190px;
    padding: .3rem 0;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

    .st-nav-dd-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-bottom-color: #e5e7eb;
        border-top: none;
    }

    .st-nav-dd-menu::after {
        content: '';
        position: absolute;
        top: -4px;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-bottom-color: #fff;
        border-top: none;
    }

.st-nav-dd:hover .st-nav-dd-menu,
.st-nav-dd:focus-within .st-nav-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.st-nav-dd-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .6rem 1.05rem;
    font-size: .85rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background .14s, color .14s;
    white-space: nowrap;
}

    .st-nav-dd-item:hover {
        background: #f0f4ff;
        color: #0d2455;
    }

    .st-nav-dd-item i {
        font-size: .88rem;
        color: #9ca3af;
        width: 16px;
        text-align: center;
    }

.st-nav-dd-sep {
    height: 1px;
    background: #f0f2f5;
    margin: .25rem 0;
}

/* ── Botón del carrito ──────────────────────────────────────── */
.st-cart-btn {
    position: relative;
    background: rgba(255,255,255,.13);
    border: 1.5px solid rgba(255,255,255,.28);
    border-radius: .5rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
}

    .st-cart-btn:hover {
        background: rgba(255,255,255,.24);
    }

.st-cart-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #e8a317;
    color: #fff;
    font-size: .58rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bs-primary, #0d2455);
}

/* ── Offcanvas carrito ──────────────────────────────────────── */
.st-cart-oc {
    width: 380px !important;
}

.st-cart-oc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.st-cart-oc-title {
    font-size: .98rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .45rem;
}

.st-cart-oc-close {
    background: none;
    border: none;
    font-size: 1.15rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    transition: color .15s;
}

    .st-cart-oc-close:hover {
        color: #374151;
    }

.st-cart-oc-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.st-cart-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid #f5f5f7;
}

.st-cart-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: .5rem;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0d2455;
    flex-shrink: 0;
}

.st-cart-item-body {
    flex: 1;
    min-width: 0;
}

.st-cart-item-title {
    font-size: .84rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 .12rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.st-cart-item-sub {
    font-size: .75rem;
    color: #6b7280;
    margin: 0 0 .22rem;
}

.st-cart-item-price {
    font-size: .88rem;
    font-weight: 800;
    color: #0d2455;
    margin: 0;
}

.st-cart-item-del {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: .95rem;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin-top: 2px;
    transition: color .15s;
}

    .st-cart-item-del:hover {
        color: #dc2626;
    }

.st-cart-empty {
    padding: 3rem 1.25rem;
    text-align: center;
    color: #9ca3af;
}

    .st-cart-empty i {
        font-size: 2.8rem;
        display: block;
        margin-bottom: .75rem;
        opacity: .45;
    }

    .st-cart-empty p {
        font-size: .88rem;
        margin: 0;
    }

.st-cart-oc-foot {
    padding: 1rem 1.25rem;
    border-top: 1.5px solid #e5e7eb;
    background: #fff;
}

.st-cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .85rem;
}

.st-cart-total-lbl {
    font-size: .84rem;
    color: #6b7280;
    font-weight: 500;
}

.st-cart-total-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: #111827;
}

.st-cart-go-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    width: 100%;
    padding: .8rem;
    border-radius: .52rem;
    border: none;
    background: #0d2455;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: filter .2s;
}

    .st-cart-go-btn:hover {
        filter: brightness(1.15);
        color: #fff;
    }

/* =============================================================
   §27 · HOTELES LISTA — Detalle de hotel + tarifas  (hl-*)
   Vista   : Views/Home/HotelesLista.cshtml
   ============================================================= */

/* ── Página ────────────────────────────────────────────────── */
.hl-page {
    background: #f3f5f9;
    min-height: calc(100vh - 64px);
    padding: 1.5rem 0 3rem;
}

/* ── Barra de sección (navy) ───────────────────────────────── */
.hl-bar {
    background: #0d2455;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .78rem 1.25rem;
    border-radius: .65rem .65rem 0 0;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

    .hl-bar i {
        font-size: 1.05rem;
        opacity: .85;
    }

/* ── Card principal del hotel ──────────────────────────────── */
.hl-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 .65rem .65rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

/* ── Galería ───────────────────────────────────────────────── */
.hl-gallery {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.hl-main-img-wrap {
    position: relative;
    border-radius: .6rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hl-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hl-main-img-wrap:hover .hl-main-img {
    transform: scale(1.03);
}

.hl-zoom-btn {
    position: absolute;
    top: .65rem;
    right: .65rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #374151;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    transition: background .15s;
}

    .hl-zoom-btn:hover {
        background: #fff;
    }

.hl-thumbs {
    display: flex;
    gap: .45rem;
}

.hl-thumb {
    flex: 1;
    border-radius: .4rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .15s, opacity .15s;
}

    .hl-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hl-thumb:hover {
        border-color: #0d2455;
        opacity: .88;
    }

    .hl-thumb.active {
        border-color: #e8a317;
    }

/* ── Info del hotel ────────────────────────────────────────── */
.hl-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: #111827;
    margin: 0 0 .45rem;
    line-height: 1.15;
}

.hl-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: .85rem;
}

.hl-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.hl-badge-live {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff3cd;
    color: #92620a;
    border: 1px solid #e8c573;
    border-radius: 2rem;
    font-size: .72rem;
    font-weight: 700;
    padding: .22rem .8rem;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s, border-color .18s;
}

    .hl-badge-live:hover {
        background: #ffe8a0;
        border-color: #d4a017;
        color: #7a4e00;
    }

    .hl-badge-live i {
        font-size: .78rem;
        color: #e8a317;
    }

.hl-desc {
    font-size: .88rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 1rem;
}

    .hl-desc p {
        margin-bottom: .65rem;
    }

        .hl-desc p:last-child {
            margin-bottom: 0;
        }

/* ── Amenidades ────────────────────────────────────────────── */
.hl-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .85rem 1rem;
    background: #f8f9fc;
    border-radius: .55rem;
    border: 1px solid #eef0f5;
}

.hl-amenity {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: #374151;
    font-weight: 500;
    padding: .3rem .7rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    white-space: nowrap;
}

    .hl-amenity i {
        color: #0d2455;
        font-size: .85rem;
    }

/* ── Barra de fechas ───────────────────────────────────────── */
.hl-date-bar {
    display: flex;
    border-radius: .55rem;
    overflow: hidden;
    margin-top: 1.1rem;
}

.hl-nights-pill {
    background: #0d2455;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .72rem 1.4rem;
    font-size: .85rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.hl-date-pill {
    flex: 1;
    background: #e8a317;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5rem .5rem;
    border-left: 2px solid rgba(255,255,255,.3);
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.3;
}

.hl-date-pill-top {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .85rem;
}

.hl-date-pill-sub {
    font-size: .72rem;
    font-weight: 500;
    opacity: .88;
}

/* ── Card de tarifas/tabs ──────────────────────────────────── */
.hl-tabs-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .65rem;
    overflow: hidden;
    margin-bottom: .75rem;
}

.hl-tabs-header {
    display: flex;
}

.hl-tab-btn {
    flex: 1;
    padding: .82rem .5rem;
    background: #0d2455;
    color: rgba(255,255,255,.6);
    border: none;
    border-right: 1px solid rgba(255,255,255,.15);
    font-family: 'Urbanist', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s, color .18s;
}

    .hl-tab-btn:last-child {
        border-right: none;
    }

    .hl-tab-btn.active,
    .hl-tab-btn:hover {
        background: #0a1e45;
        color: #fff;
    }

    .hl-tab-btn.active {
        border-bottom: 3px solid #e8a317;
        color: #fff;
    }

/* ── Filas de tarifas ──────────────────────────────────────── */
.hl-tab-content {
    display: none;
}

    .hl-tab-content.active {
        display: block;
    }

.hl-rate-row {
    display: grid;
    grid-template-columns: 85px 1fr 1.4fr auto;
    align-items: center;
    gap: .75rem 1.25rem;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid #f0f2f5;
}

@media (max-width: 992px) {
    .hl-rate-row {
        grid-template-columns: 85px 1fr auto;
    }

    .hl-rate-policy {
        display: none;
    }
}

@media (max-width: 576px) {
    .hl-rate-row {
        grid-template-columns: 70px 1fr auto;
        gap: .5rem .75rem;
        padding: .75rem 1rem;
    }
}

.hl-rate-row:last-child {
    border-bottom: none;
}

.hl-rate-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    min-width: 72px;
    flex-shrink: 0;
}

    .hl-rate-logo img {
        height: 28px;
        width: auto;
        object-fit: contain;
    }

.hl-rate-logo-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d2455, #1a4a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8a317;
    font-size: .82rem;
}

.hl-rate-type {
    min-width: 0;
}

.hl-rate-type-name {
    font-size: .86rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 .15rem;
}

.hl-rate-type-meal {
    display: flex;
    align-items: center;
    gap: .28rem;
    font-size: .76rem;
    color: #6b7280;
    font-weight: 500;
}

    .hl-rate-type-meal i {
        font-size: .8rem;
    }

.hl-rate-photos {
    display: flex;
    align-items: center;
    gap: .38rem;
    font-size: .82rem;
    font-weight: 600;
    color: #0d2455;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s;
}

    .hl-rate-photos:hover {
        opacity: .7;
        color: #0d2455;
    }

    .hl-rate-photos i {
        font-size: .88rem;
    }

.hl-rate-policy {
    min-width: 0;
}

.hl-rate-policy-text {
    display: flex;
    align-items: flex-start;
    gap: .35rem;
    font-size: .76rem;
    color: #374151;
    line-height: 1.45;
}

    .hl-rate-policy-text i {
        font-size: .82rem;
        color: #6b7280;
        margin-top: 1px;
        flex-shrink: 0;
    }

.hl-rate-policy-sub {
    font-size: .68rem;
    color: #9ca3af;
    margin-top: .1rem;
    padding-left: 1.1rem;
}

.hl-rate-price-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: .48rem;
    border: none;
    background: #0d2455;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: filter .18s;
}

    .hl-rate-price-btn:hover {
        filter: brightness(1.18);
    }

    .hl-rate-price-btn i {
        font-size: .75rem;
    }

/* ── Nota al pie ───────────────────────────────────────────── */
.hl-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .78rem;
    color: #6b7280;
    padding: .65rem 1rem 0;
    text-align: center;
    flex-wrap: wrap;
}

    .hl-footer-note i {
        font-size: .82rem;
    }

.hl-footer-note-sep {
    color: #d1d5db;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .hl-rate-policy {
        display: none;
    }
}

@media (max-width: 768px) {
    .hl-date-bar {
        flex-direction: column;
    }

    .hl-nights-pill {
        justify-content: center;
    }

    .hl-rate-row {
        gap: .65rem;
    }

    .hl-rate-photos {
        display: none;
    }
}

@media (max-width: 576px) {
    .hl-name {
        font-size: 1.15rem;
    }

    .hl-tab-btn {
        font-size: .72rem;
        padding: .7rem .3rem;
    }
}

/* =============================================================
   §28 · HOTEL SELECT — Detalle completo + reserva  (hs-*)
   Vista   : Views/Home/HotelSelect.cshtml
   ============================================================= */

/* ── Hero: carrusel + panel info ───────────────────────────── */
.hs-hero {
    display: flex;
    height: calc(100vh - 64px);
    background: #0d2455;
    position: relative;
}

.hs-hero-carousel {
    flex: 0 0 57%;
    position: relative;
    overflow: hidden;
}

.hs-carousel-track {
    display: flex;
    height: 100%;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.hs-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
}

    .hs-carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* ── Scroll indicator ───────────────────────────────────────── */
.hs-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
    animation: hs-bounce 2s infinite;
}

.hs-scroll-hint-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}

.hs-scroll-hint-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(4px);
}

@keyframes hs-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ── Pasajero: fila por persona ─────────────────────────────── */
.hs-pax-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin-bottom: .75rem;
    align-items: end;
}

    .hs-pax-row.with-age {
        grid-template-columns: 1fr 1fr auto;
    }

    .hs-pax-row:last-child {
        margin-bottom: 0;
    }

.hs-pax-type-tag {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: -.15rem;
}

    .hs-pax-type-tag i {
        font-size: .85rem;
    }

    .hs-pax-type-tag.child {
        color: #e8a317;
    }

.hs-age-wrap {
    width: 72px;
    flex-shrink: 0;
}

.hs-age-input {
    width: 100%;
    height: 42px;
    border: 1.5px solid #d1d5db;
    border-radius: .48rem;
    padding: 0 .6rem;
    font-size: .88rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    outline: none;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}

    .hs-age-input:focus {
        border-color: #0d2455;
        box-shadow: 0 0 0 3px rgba(13,36,85,.1);
    }

.hs-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 3;
}

    .hs-carousel-btn:hover {
        background: rgba(255,255,255,.32);
    }

    .hs-carousel-btn.prev {
        left: .85rem;
    }

    .hs-carousel-btn.next {
        right: .85rem;
    }

.hs-carousel-dots {
    position: absolute;
    bottom: .75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .45rem;
    z-index: 3;
}

.hs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

    .hs-dot.active {
        background: #fff;
        transform: scale(1.25);
    }

.hs-hero-info {
    flex: 1;
    background: #0d2455;
    color: #fff;
    padding: 2.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hs-location {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    margin-bottom: .45rem;
}

.hs-location-stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: .9rem;
}

.hs-hotel-name {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 .85rem;
    line-height: 1.15;
}

.hs-hero-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

    .hs-hero-desc p {
        margin-bottom: .5rem;
    }

        .hs-hero-desc p:last-child {
            margin-bottom: 0;
        }

/* Barra de noches / fechas */
.hs-date-bar {
    display: flex;
    border-radius: .55rem;
    overflow: hidden;
}

.hs-nights-pill {
    background: rgba(255,255,255,.12);
    color: #fff;
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem 1.2rem;
    font-size: .83rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,.2);
    border-right: none;
    border-radius: .55rem 0 0 .55rem;
}

.hs-date-pill {
    flex: 1;
    background: #e8a317;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem .9rem;
    font-size: .82rem;
    font-weight: 700;
    border-left: 1.5px solid rgba(255,255,255,.25);
}

    .hs-date-pill:last-child {
        border-radius: 0 .55rem .55rem 0;
    }

    .hs-date-pill i {
        font-size: .8rem;
    }

.hs-date-pill-label {
    font-size: .68rem;
    font-weight: 500;
    opacity: .85;
    display: block;
}

/* ── Características del hotel ─────────────────────────────── */
.hs-features-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .65rem;
    padding: 1.1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.hs-features-title {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #374151;
    margin-bottom: 1rem;
}

.hs-features-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.hs-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    color: #374151;
    text-align: center;
    min-width: 68px;
}

    .hs-feature i {
        font-size: 1.4rem;
        color: #0d2455;
    }

/* ── Galería ───────────────────────────────────────────────── */
.hs-gallery-section {
    margin-bottom: 1.5rem;
}

.hs-gallery-title {
    font-size: .9rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: .85rem;
}

.hs-gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.hs-gallery-main-wrap {
    position: relative;
    border-radius: .55rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

    .hs-gallery-main-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s;
    }

    .hs-gallery-main-wrap:hover img {
        transform: scale(1.03);
    }

.hs-gallery-zoom-btn {
    position: absolute;
    top: .6rem;
    right: .6rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    transition: background .15s;
}

    .hs-gallery-zoom-btn:hover {
        background: #fff;
    }

.hs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}

.hs-gallery-thumb {
    border-radius: .42rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .15s, opacity .15s;
}

    .hs-gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hs-gallery-thumb:hover {
        border-color: #0d2455;
        opacity: .88;
    }

    .hs-gallery-thumb.active {
        border-color: #e8a317;
    }

/* ── Pasajeros ─────────────────────────────────────────────── */
.hs-passengers-bar {
    background: #0d2455;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1.25rem;
    border-radius: .65rem .65rem 0 0;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hs-passengers-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 .65rem .65rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.hs-passengers-notice {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: #0d2455;
    font-weight: 600;
    background: #eef3ff;
    border: 1px solid #c7d7f7;
    border-radius: .45rem;
    padding: .6rem 1rem;
    margin-bottom: 1.25rem;
}

    .hs-passengers-notice i {
        font-size: .9rem;
        flex-shrink: 0;
    }

.hs-room-title {
    font-size: .95rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: .85rem;
}

.hs-form-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: .3rem;
    display: block;
}

.hs-form-input {
    width: 100%;
    height: 42px;
    border: 1.5px solid #d1d5db;
    border-radius: .48rem;
    padding: 0 .9rem;
    font-size: .88rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

    .hs-form-input:focus {
        border-color: #0d2455;
        box-shadow: 0 0 0 3px rgba(13,36,85,.1);
    }

    .hs-form-input::placeholder {
        color: #b0b8cc;
    }

/* ── Resumen de reserva ────────────────────────────────────── */
.hs-res-bar {
    background: #e8a317;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.25rem;
    border-radius: .65rem .65rem 0 0;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hs-res-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 .65rem .65rem;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.hs-res-subtitle {
    font-size: .83rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: .85rem;
}

.hs-res-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: .5rem 1rem;
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: .85rem;
    margin-bottom: .85rem;
}

.hs-res-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: .5rem 1rem;
}

.hs-res-cell {
}

.hs-res-cell-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: .18rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

    .hs-res-cell-label i {
        font-size: .78rem;
    }

.hs-res-cell-val {
    font-size: .88rem;
    font-weight: 700;
    color: #111827;
}

/* ── Tarifa total ──────────────────────────────────────────── */
.hs-tarifa-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hs-tarifa-card {
    border: 1.5px solid #e8a317;
    border-radius: .75rem;
    padding: 1.25rem 2rem;
    text-align: center;
    min-width: 260px;
    background: #fff;
}

.hs-tarifa-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: .5rem;
}

.hs-tarifa-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #e8a317;
    line-height: 1;
    margin-bottom: 1rem;
}

    .hs-tarifa-price span {
        font-size: 1.2rem;
        font-weight: 700;
        margin-right: .1rem;
    }

.hs-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .8rem;
    border-radius: .5rem;
    border: none;
    background: #0d2455;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter .2s;
}

    .hs-reserve-btn:hover {
        filter: brightness(1.15);
    }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .hs-hero {
        flex-direction: column;
        min-height: unset;
    }

    .hs-hero-carousel {
        flex: none;
        height: 280px;
    }

    .hs-hero-info {
        padding: 1.5rem;
    }

    .hs-gallery-layout {
        grid-template-columns: 1fr;
    }

    .hs-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hs-res-grid, .hs-res-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hs-features-row {
        gap: .65rem;
    }

    .hs-feature {
        min-width: 56px;
        font-size: .68rem;
    }

    .hs-date-bar {
        flex-direction: column;
    }

    .hs-nights-pill {
        border-radius: .55rem .55rem 0 0;
        border-right: 1.5px solid rgba(255,255,255,.2);
        border-bottom: none;
    }

    .hs-date-pill:last-child {
        border-radius: 0 0 .55rem .55rem;
    }

    .hs-res-grid, .hs-res-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================================================
   §29 · CARRITO DE COMPRAS  (ct-*)
   Vista   : Views/Home/Carrito.cshtml
   ============================================================= */

.ct-page {
    background: #f3f5f9;
    min-height: calc(100vh - 64px);
    padding: 1.25rem 0 3rem;
}

.ct-notice {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #eef7ff;
    border: 1px solid #bfdbfe;
    border-radius: .6rem;
    padding: .85rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: .88rem;
    color: #374151;
}

    .ct-notice i {
        font-size: 1.3rem;
        color: #2563eb;
        flex-shrink: 0;
    }

    .ct-notice strong {
        color: #111827;
    }

.ct-tabs {
    display: flex;
    border-radius: .6rem .6rem 0 0;
    overflow: hidden;
}

.ct-tab-btn {
    flex: 1;
    padding: .78rem .5rem;
    font-family: 'Urbanist', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1.5px solid #e5e7eb;
    border-right: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}

    .ct-tab-btn:last-child {
        border-right: 1.5px solid #e5e7eb;
    }

    .ct-tab-btn.active {
        background: #0d2455;
        color: #fff;
        border-color: #0d2455;
    }

    .ct-tab-btn:not(.active) {
        background: #fff;
        color: #0d2455;
    }

        .ct-tab-btn:not(.active):hover {
            background: #f0f4ff;
        }

.ct-tab-body {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 .6rem .6rem;
}

.ct-tab-panel {
    display: none;
}

    .ct-tab-panel.active {
        display: block;
    }

.ct-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #f0f2f5;
}

    .ct-item:last-child {
        border-bottom: none;
    }

.ct-item-del {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: none;
    background: #ef4444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background .15s;
}

    .ct-item-del:hover {
        background: #dc2626;
    }

.ct-item-img {
    width: 88px;
    height: 66px;
    min-width: 88px;
    object-fit: cover;
    border-radius: .42rem;
    flex-shrink: 0;
}

.ct-item-body {
    flex: 1;
    min-width: 0;
}

.ct-item-badge {
    display: inline-block;
    background: #e8a317;
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .05em;
    padding: .15rem .65rem;
    border-radius: 2rem;
    margin-bottom: .3rem;
}

.ct-item-name {
    font-size: .92rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 .2rem;
}

.ct-item-stars {
    color: #f59e0b;
    font-size: .82rem;
    letter-spacing: 1px;
    margin-bottom: .3rem;
}

.ct-item-hotel {
    font-size: .78rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: .3rem;
    margin-bottom: .25rem;
}

.ct-item-dates {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: #374151;
    margin-bottom: .25rem;
    font-weight: 500;
}

    .ct-item-dates i {
        color: #9ca3af;
        font-size: .8rem;
    }

.ct-item-nights {
    color: #6b7280;
    font-weight: 400;
}

.ct-item-detail {
    font-size: .78rem;
    color: #374151;
    margin-bottom: .15rem;
}

    .ct-item-detail strong {
        color: #111827;
    }

.ct-item-desc {
    font-size: .78rem;
    color: #374151;
    line-height: 1.55;
    margin-bottom: .35rem;
    font-weight: 600;
}

.ct-item-cortesia {
    font-size: .75rem;
    color: #6b7280;
    margin-bottom: .2rem;
}

.ct-item-warning {
    font-size: .72rem;
    color: #e8a317;
    font-weight: 600;
    margin-bottom: .35rem;
}

.ct-item-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #e8a317;
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: .2rem;
    min-width: 100px;
    text-align: right;
}

.ct-route {
    margin: .45rem 0 .35rem;
}

.ct-route-label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #374151;
    margin-bottom: .25rem;
}

.ct-route-stop {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .73rem;
    color: #374151;
    line-height: 1.45;
}

    .ct-route-stop i {
        font-size: .7rem;
        color: #0d2455;
        flex-shrink: 0;
    }

.ct-subtotal-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1.1rem;
    border-bottom: 1px solid #f0f2f5;
}

    .ct-subtotal-row:last-child {
        border-bottom: none;
    }

    .ct-subtotal-row img {
        width: 52px;
        height: 40px;
        object-fit: cover;
        border-radius: .35rem;
        flex-shrink: 0;
    }

.ct-subtotal-name {
    flex: 1;
    font-size: .84rem;
    font-weight: 700;
    color: #111827;
}

.ct-subtotal-price {
    font-size: .9rem;
    font-weight: 800;
    color: #e8a317;
    white-space: nowrap;
}

.ct-subtotal-total-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: .9rem 1.1rem;
    border-top: 2px solid #e5e7eb;
    background: #fafbfc;
    border-radius: 0 0 .6rem .6rem;
}

.ct-subtotal-total-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6b7280;
}

.ct-subtotal-total-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: #e8a317;
}

.ct-bottom-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1.5px solid #e5e7eb;
    border-radius: .65rem;
    background: #fff;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.ct-bottom-icon {
    font-size: 2rem;
    color: #0d2455;
    flex-shrink: 0;
}

.ct-bottom-info {
    flex: 1;
}

.ct-bottom-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: .1rem;
}

.ct-bottom-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e8a317;
    line-height: 1;
}

.ct-bottom-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .78rem 2rem;
    border-radius: .52rem;
    border: none;
    background: #0d2455;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: filter .2s;
}

    .ct-bottom-reserve:hover {
        filter: brightness(1.15);
    }

.ct-sidebar {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    position: sticky;
    top: 76px;
}

.ct-side-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: .7rem;
    padding: 1.1rem 1.25rem;
}

.ct-side-card-head {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .75rem;
}

.ct-side-card-icon {
    font-size: 1.6rem;
    color: #0d2455;
}

.ct-side-card-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6b7280;
}

.ct-side-total {
    font-size: 1.65rem;
    font-weight: 900;
    color: #e8a317;
    margin-bottom: .9rem;
    line-height: 1;
}

    .ct-side-total span {
        font-size: 1rem;
        font-weight: 700;
        margin-right: .1rem;
    }

.ct-btn-reservar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .8rem;
    border-radius: .52rem;
    border: none;
    background: #0d2455;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter .2s;
}

    .ct-btn-reservar:hover {
        filter: brightness(1.15);
    }

.ct-btn-descargar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    width: 100%;
    padding: .72rem;
    border-radius: .52rem;
    border: 1.5px solid #0d2455;
    background: #fff;
    color: #0d2455;
    font-family: 'Urbanist', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}

    .ct-btn-descargar:hover {
        background: #f0f4ff;
    }

.ct-client-title {
    font-size: .9rem;
    font-weight: 800;
    color: #0d2455;
    margin-bottom: .3rem;
}

.ct-client-sub {
    font-size: .78rem;
    color: #6b7280;
    margin-bottom: .9rem;
    line-height: 1.45;
}

.ct-client-label {
    font-size: .75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .28rem;
    display: block;
}

.ct-client-select {
    width: 100%;
    height: 38px;
    border: 1.5px solid #d1d5db;
    border-radius: .45rem;
    padding: 0 .75rem;
    font-size: .84rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    appearance: none;
    cursor: pointer;
    outline: none;
    margin-bottom: .65rem;
    transition: border-color .2s;
}

    .ct-client-select:focus {
        border-color: #0d2455;
    }

.ct-client-input {
    width: 100%;
    height: 38px;
    border: 1.5px solid #d1d5db;
    border-radius: .45rem;
    padding: 0 .75rem;
    font-size: .84rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    outline: none;
    margin-bottom: .65rem;
    transition: border-color .2s;
}

    .ct-client-input::placeholder {
        color: #b0b8cc;
    }

    .ct-client-input:focus {
        border-color: #0d2455;
    }

.ct-client-check {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: #374151;
    cursor: pointer;
}

    .ct-client-check input {
        accent-color: #0d2455;
        width: 15px;
        height: 15px;
        cursor: pointer;
    }

@media (max-width: 992px) {
    .ct-sidebar {
        position: static;
    }
}

@media (max-width: 576px) {
    .ct-item {
        flex-wrap: wrap;
    }

    .ct-item-price {
        width: 100%;
        text-align: left;
        padding-top: 0;
    }

    .ct-bottom-bar {
        flex-direction: column;
        text-align: center;
    }

    .ct-bottom-reserve {
        width: 100%;
    }
}

/* =============================================================
   §30 · VER RESERVA  (vr-*)
   Vista   : Views/Home/VerReserva.cshtml
   ============================================================= */

.vr-page {
    background: #f3f5f9;
    min-height: calc(100vh - 64px);
    padding: 1.5rem 0 3rem;
}

/* ── Encabezado ────────────────────────────────────────────── */
.vr-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: .5rem;
    flex-wrap: wrap;
    gap: .5rem;
}

.vr-res-label {
    font-size: .82rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: .15rem;
}

.vr-res-num {
    font-size: 1.2rem;
    font-weight: 900;
    color: #111827;
    margin: 0;
}

    .vr-res-num span {
        color: #e8a317;
    }

.vr-res-sub {
    font-size: .78rem;
    color: #9ca3af;
    margin: 0;
}



.vr-status-badge-anulado {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 2px solid #c82333;
    color: #c82333;
    /*background: #f0fdf4;*/
    border-radius: 2rem;
    padding: .3rem 1rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
}


.vr-status-badge-solicitado {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 2px solid #0E2F91;
    color: #0E2F91;
    /*background: #f0fdf4;*/
    border-radius: 2rem;
    padding: .3rem 1rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.vr-status-badge-confirmado {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 2px solid #e8a317;
    color: #e8a317;
    /*background: #f0fdf4;*/
    border-radius: 2rem;
    padding: .3rem 1rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
}


.vr-status-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 2px solid #22c55e;
    color: #15803d;
    background: #f0fdf4;
    border-radius: 2rem;
    padding: .3rem 1rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
}

    .vr-status-badge i {
        font-size: .88rem;
        color: #22c55e;
    }

.vr-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: .75rem 0 1.25rem;
}

/* ── Card genérica ─────────────────────────────────────────── */
.vr-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .65rem;
    overflow: hidden;
    height: 100%;
}

.vr-card-header {
    background: #0d2455;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem 1rem;
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

    .vr-card-header i {
        font-size: .95rem;
        opacity: .85;
    }

.vr-card-body {
    padding: .9rem 1rem;
}

/* ── Filas de datos ────────────────────────────────────────── */
.vr-info-row {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    padding: .3rem 0;
    font-size: .82rem;
}

    .vr-info-row + .vr-info-row {
        border-top: 1px solid #f5f5f7;
    }

.vr-info-icon {
    color: #0d2455;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 1px;
    width: 18px;
    text-align: center;
}

.vr-info-label {
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
    min-width: 110px;
}

.vr-info-val {
    color: #111827;
    font-weight: 500;
    flex: 1;
}

.vr-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Fila especial inline (ingreso → salida) */
.vr-inline-pair {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .82rem;
    padding: .3rem 0;
    border-top: 1px solid #f5f5f7;
}

    .vr-inline-pair i {
        color: #0d2455;
        font-size: .9rem;
        flex-shrink: 0;
        width: 18px;
        text-align: center;
    }

    .vr-inline-pair .vr-info-label {
        min-width: auto;
    }

    .vr-inline-pair .vr-arrow {
        color: #9ca3af;
        font-size: .8rem;
    }

/* Fila total destacada */
.vr-total-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    margin: .5rem -.75rem -.5rem;
    background: #eef3ff;
    border-top: 1px solid #d4e0ff;
    font-size: .84rem;
}

    .vr-total-row .vr-info-icon {
        color: #0d2455;
    }

    .vr-total-row .vr-info-label {
        color: #0d2455;
        font-weight: 800;
    }

    .vr-total-row .vr-info-val {
        color: #e8a317;
        font-weight: 900;
        font-size: .95rem;
    }

/* ── Tabla de servicios ────────────────────────────────────── */
.vr-srv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .81rem;
}

    .vr-srv-table thead tr {
        background: #0d2455;
        color: #fff;
    }

    .vr-srv-table thead th {
        padding: .6rem .85rem;
        font-weight: 700;
        font-size: .74rem;
        letter-spacing: .04em;
        text-align: left;
        white-space: nowrap;
    }

        .vr-srv-table thead th:last-child {
            text-align: right;
        }

    .vr-srv-table tbody tr {
        border-bottom: 1px solid #f0f2f5;
        transition: background .12s;
    }

        .vr-srv-table tbody tr:hover {
            background: #fafbfd;
        }

    .vr-srv-table tbody td {
        padding: .62rem .85rem;
        color: #374151;
        vertical-align: top;
    }

        .vr-srv-table tbody td:last-child {
            text-align: right;
            font-weight: 700;
            color: #111827;
            white-space: nowrap;
        }

.vr-srv-date {
    display: flex;
    align-items: center;
    gap: .3rem;
    white-space: nowrap;
    font-size: .78rem;
}

    .vr-srv-date i {
        color: #9ca3af;
        font-size: .75rem;
    }

/* ── Tabla de pasajeros ────────────────────────────────────── */
.vr-pax-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .81rem;
}

    .vr-pax-table thead tr {
        background: #0d2455;
        color: #fff;
    }

    .vr-pax-table thead th {
        padding: .55rem .8rem;
        font-weight: 700;
        font-size: .74rem;
        letter-spacing: .04em;
    }

        .vr-pax-table thead th:not(:first-child) {
            text-align: center;
        }

    .vr-pax-table tbody tr {
        border-bottom: 1px solid #f0f2f5;
    }

    .vr-pax-table tbody td {
        padding: .45rem .8rem;
        color: #374151;
    }

        .vr-pax-table tbody td:not(:first-child) {
            text-align: center;
            color: #6b7280;
        }

    .vr-pax-table tfoot tr {
        background: #0d2455;
    }

    .vr-pax-table tfoot td {
        padding: .55rem .8rem;
        font-size: .78rem;
        font-weight: 800;
        color: #fff;
    }

        .vr-pax-table tfoot td:last-child {
            text-align: right;
            color: #e8a317;
        }

/* ── Acomodación ───────────────────────────────────────────── */
.vr-accom-body {
    padding: .9rem 1rem;
}

.vr-accom-row {
    display: flex;
    gap: .35rem;
    font-size: .83rem;
    padding: .2rem 0;
}

.vr-accom-label {
    color: #6b7280;
    font-weight: 600;
    min-width: 80px;
}

.vr-accom-val {
    color: #111827;
    font-weight: 500;
}

.vr-accom-btns {
    display: flex;
    gap: .6rem;
    padding: .85rem 1rem .9rem;
}

.vr-btn-resumen {
    flex: 1;
    padding: .65rem;
    border-radius: .48rem;
    border: 1.5px solid #0d2455;
    background: #fff;
    color: #0d2455;
    font-family: 'Urbanist', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    cursor: pointer;
    transition: background .15s;
}

    .vr-btn-resumen:hover {
        background: #f0f4ff;
    }

.vr-btn-detalles {
    flex: 1;
    padding: .65rem;
    border-radius: .48rem;
    border: none;
    background: #0d2455;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    cursor: pointer;
    transition: filter .2s;
}

    .vr-btn-detalles:hover {
        filter: brightness(1.15);
    }

/* ── Sidebar ───────────────────────────────────────────────── */
.vr-sidebar {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    position: sticky;
    top: 76px;
}

/* Card: Reconfirmar (navy alert) */
.vr-reconf-card {
    background: #0d2455;
    border-radius: .65rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.vr-reconf-icon {
    font-size: 1.8rem;
    color: #e8a317;
    flex-shrink: 0;
    margin-top: 2px;
}

.vr-reconf-title {
    font-size: .88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .2rem;
}

.vr-reconf-sub {
    font-size: .77rem;
    color: rgba(255,255,255,.65);
    margin: 0;
}

/* Card: WhatsApp */
.vr-wsp-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .65rem;
    padding: 1rem 1.1rem;
}

.vr-wsp-head {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .45rem;
}

.vr-wsp-icon {
    font-size: 1.5rem;
    color: #25D366;
}

.vr-wsp-title {
    font-size: .88rem;
    font-weight: 800;
    color: #111827;
}

.vr-wsp-sub {
    font-size: .78rem;
    color: #6b7280;
    margin-bottom: .85rem;
    line-height: 1.45;
}

.vr-phone-row {
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
}

.vr-phone-flag {
    display: flex;
    align-items: center;
    gap: .35rem;
    height: 38px;
    padding: 0 .65rem;
    border: 1.5px solid #d1d5db;
    border-radius: .45rem;
    background: #f8f9fc;
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

    .vr-phone-flag img {
        width: 20px;
        border-radius: 2px;
    }

.vr-phone-input {
    flex: 1;
    height: 38px;
    border: 1.5px solid #d1d5db;
    border-radius: .45rem;
    padding: 0 .75rem;
    font-size: .84rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    outline: none;
    transition: border-color .2s;
}

    .vr-phone-input:focus {
        border-color: #0d2455;
    }

.vr-btn-reconf-now {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .8rem;
    border-radius: .52rem;
    border: none;
    background: #0d2455;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .04em;
    transition: filter .2s;
}

    .vr-btn-reconf-now:hover {
        filter: brightness(1.15);
    }

/* Card: ¿Por qué? */
.vr-why-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .65rem;
    padding: 1rem 1.1rem;
}

.vr-why-title {
    font-size: .86rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: .85rem;
}

.vr-why-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .85rem;
}

    .vr-why-item:last-child {
        margin-bottom: 0;
    }

.vr-why-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #0d2455;
    flex-shrink: 0;
}

.vr-why-text {
    font-size: .78rem;
    color: #4b5563;
    line-height: 1.55;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .vr-sidebar {
        position: static;
    }

    .vr-info-label {
        min-width: 90px;
    }
}

@media (max-width: 576px) {
    .vr-srv-table {
        font-size: .74rem;
    }

        .vr-srv-table thead th, .vr-srv-table tbody td {
            padding: .5rem .55rem;
        }

    .vr-phone-row {
        flex-direction: column;
    }
}

/* =============================================================
   §31 · INICIAR PAGO  (ip-*)
   Vista   : Views/Home/IniciarPago.cshtml
   ============================================================= */

.ip-page {
    background: #f3f5f9;
    min-height: calc(100vh - 64px);
    padding: 1.75rem 0 3rem;
}

/* ── Page header ────────────────────────────────────────────── */
.ip-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: .75rem;
}

.ip-page-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ip-page-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #eef3ff;
    border: 2px solid #c7d7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #0d2455;
    flex-shrink: 0;
}

.ip-page-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 .15rem;
}

.ip-page-sub {
    font-size: .84rem;
    color: #6b7280;
    margin: 0;
}

.ip-security-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.ip-security-badge-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #eef3ff;
    border: 2px solid #c7d7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0d2455;
}

.ip-security-title {
    font-size: .88rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 .1rem;
}

.ip-security-sub {
    font-size: .76rem;
    color: #6b7280;
    margin: 0;
}

.ip-divider {
    border: none;
    border-top: 2px solid #d4e0ff;
    margin: .75rem 0 1.5rem;
}

/* ── Card de pago ───────────────────────────────────────────── */
.ip-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    padding: 1.5rem;
}

.ip-form-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ip-form-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #eef3ff;
    border: 2px solid #c7d7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0d2455;
    flex-shrink: 0;
}

.ip-form-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 .12rem;
}

.ip-form-sub {
    font-size: .82rem;
    color: #6b7280;
    margin: 0;
}

/* ── Inputs ─────────────────────────────────────────────────── */
.ip-label {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .38rem;
}

.ip-input {
    width: 100%;
    height: 48px;
    border: 1.5px solid #d1d5db;
    border-radius: .55rem;
    padding: 0 1rem;
    font-size: .92rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

    .ip-input:focus {
        border-color: #0d2455;
        box-shadow: 0 0 0 3px rgba(13,36,85,.10);
    }

    .ip-input::placeholder {
        color: #b0b8cc;
    }

/* Input con ícono de tarjeta */
.ip-card-wrap {
    position: relative;
}

    .ip-card-wrap > i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        font-size: 1rem;
        pointer-events: none;
    }

    .ip-card-wrap .ip-input {
        padding-left: 2.65rem;
        letter-spacing: .12em;
        font-size: .9rem;
    }

/* Select expiry */
.ip-select-wrap {
    position: relative;
}

    .ip-select-wrap::after {
        content: '';
        position: absolute;
        right: .85rem;
        top: 50%;
        transform: translateY(-50%);
        border: 5px solid transparent;
        border-top-color: #6b7280;
        border-bottom: none;
        pointer-events: none;
    }

.ip-select {
    width: 100%;
    height: 48px;
    border: 1.5px solid #d1d5db;
    border-radius: .55rem;
    padding: 0 2.2rem 0 1rem;
    font-size: .9rem;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}

    .ip-select:focus {
        border-color: #0d2455;
        box-shadow: 0 0 0 3px rgba(13,36,85,.10);
    }

/* Fila expiración + CVC */
.ip-expiry-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: .75rem;
    align-items: end;
}

.ip-cvc-group {
    min-width: 110px;
}

.ip-cvc-label {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .38rem;
}

    .ip-cvc-label span {
        font-size: .84rem;
        font-weight: 600;
        color: #374151;
    }

.ip-cvc-help {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1.5px solid #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: #9ca3af;
    cursor: help;
    flex-shrink: 0;
    font-weight: 700;
}

.ip-cvc-input {
    width: 100%;
    height: 48px;
    border: 1.5px solid #d1d5db;
    border-radius: .55rem;
    padding: 0 1rem;
    font-size: .92rem;
    letter-spacing: .15em;
    font-family: 'Urbanist', sans-serif;
    color: #374151;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

    .ip-cvc-input:focus {
        border-color: #0d2455;
        box-shadow: 0 0 0 3px rgba(13,36,85,.10);
    }

    .ip-cvc-input::placeholder {
        letter-spacing: .05em;
        color: #b0b8cc;
    }

/* Checkbox términos */
.ip-terms-row {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 1.1rem 0;
    font-size: .84rem;
    color: #374151;
}

    .ip-terms-row input[type="checkbox"] {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-top: 2px;
        accent-color: #0d2455;
        cursor: pointer;
    }

.ip-terms-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

    .ip-terms-link:hover {
        text-decoration: underline;
    }

/* Botón pagar */
.ip-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    width: 100%;
    padding: .9rem;
    border-radius: .6rem;
    border: none;
    background: #0d2455;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: filter .2s;
    margin-top: 1rem;
}

    .ip-pay-btn:hover {
        filter: brightness(1.18);
    }

.ip-pay-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-size: .76rem;
    color: #9ca3af;
    margin-top: .65rem;
    text-align: center;
}

/* ── Sidebar de facturación ─────────────────────────────────── */
.ip-billing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    overflow: hidden;
    position: sticky;
    top: 76px;
}

.ip-billing-header {
    background: #0d2455;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1.1rem;
    font-size: .9rem;
    font-weight: 700;
}

    .ip-billing-header i {
        font-size: 1.05rem;
        opacity: .85;
    }

.ip-billing-body {
    padding: .85rem 1.1rem;
}

.ip-billing-item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .55rem 0;
    border-bottom: 1px solid #f5f5f7;
}

    .ip-billing-item:last-child {
        border-bottom: none;
    }

.ip-billing-item-icon {
    font-size: .95rem;
    color: #0d2455;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.ip-billing-item-body {
}

.ip-billing-item-label {
    font-size: .75rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: .1rem;
}

.ip-billing-item-val {
    font-size: .85rem;
    color: #111827;
    font-weight: 500;
    line-height: 1.4;
}

/* Sección de totales */
.ip-totals {
    background: #f8f9fc;
    border-top: 1px solid #e5e7eb;
    padding: .85rem 1.1rem;
}

.ip-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .28rem 0;
    font-size: .85rem;
}

.ip-total-label {
    color: #374151;
}

.ip-total-val {
    font-weight: 700;
    color: #0d2455;
}

.ip-total-sep {
    border: none;
    border-top: 1.5px dashed #d1d5db;
    margin: .55rem 0;
}

.ip-total-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .35rem 0;
}

.ip-total-final-label {
    font-size: .92rem;
    font-weight: 800;
    color: #111827;
}

.ip-total-final-val {
    font-size: 1.2rem;
    font-weight: 900;
    color: #0d2455;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .ip-billing-card {
        position: static;
    }
}

@media (max-width: 576px) {
    .ip-expiry-row {
        grid-template-columns: 1fr 1fr;
    }

    .ip-cvc-group {
        grid-column: span 2;
        min-width: unset;
    }

    .ip-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════════
   TEAM PAGE  (.st-team-*)
════════════════════════════════════════════════════════════ */

/* ── Hero con carrusel de fondos ────────────────────────────── */
.st-team-hero-wrap {
    position: relative;
    overflow: hidden;
}

#teamBgCarousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    #teamBgCarousel .carousel-inner {
        height: 100%;
    }

.st-team-hero-slide {
    min-height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.st-team-hero-content {
    position: relative;
    z-index: 3;
    min-height: 580px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 5rem 0 6rem;
}

/* Controles de carrusel */
.st-team-ctrl {
    position: absolute;
    z-index: 10;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.18) !important;
    border: 1.5px solid rgba(255,255,255,.35) !important;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    -webkit-transition: background .2s;
    transition: background .2s;
    padding: 0;
    line-height: 1;
}

    .st-team-ctrl:hover {
        background: rgba(255,255,255,.32) !important;
    }

.st-team-ctrl-prev {
    left: 1.25rem;
}

.st-team-ctrl-next {
    right: 1.25rem;
}

/* Indicadores (dots) */
.st-team-dots-wrap {
    position: absolute;
    z-index: 10;
    bottom: 4.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-flex;
    display: flex;
    gap: .55rem;
    pointer-events: none;
}

.st-team-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.60);
    background: rgba(255,255,255,.25);
    cursor: pointer;
    padding: 0;
    pointer-events: all;
    -webkit-transition: background .2s, border-color .2s;
    transition: background .2s, border-color .2s;
}

    .st-team-dot.active,
    .st-team-dot:hover {
        background: var(--st-accent);
        border-color: var(--st-accent);
    }

/* ── Features strip ──────────────────────────────────────────── */
.st-feat-strip {
    background: #ffffff;
    border-radius: var(--bs-border-radius-xl);
    box-shadow: 0 4px 32px rgba(0,0,0,.08);
    padding: 1.75rem 2rem;
    border: 1px solid var(--bs-border-color);
}

.st-feat-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: .85rem;
}

.st-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), .07);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--st-accent);
    font-size: 1.15rem;
}

.st-feat-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin: 0 0 .15rem;
}

.st-feat-desc {
    font-size: .77rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.45;
}

/* ── Secciones de equipo ─────────────────────────────────────── */
.st-team-section {
    background: var(--bs-body-bg);
}

.st-colombia-section {
    background: var(--st-section-alt);
}

/* Encabezado "STYLE Team" / "COLOMBIA Team" */
.st-team-heading {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--bs-body-color);
    letter-spacing: -.02em;
    line-height: 1;
    margin: 0;
}

    .st-team-heading span {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-weight: 400;
        color: var(--st-accent);
        margin-left: .35rem;
    }

.st-team-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(to right, var(--st-accent), transparent);
    border-radius: 2px;
}

/* ── Tarjeta de miembro ──────────────────────────────────────── */
.st-member-card {
    background: #ffffff;
    border-radius: var(--bs-border-radius-lg);
    box-shadow: var(--st-card-shadow);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--bs-border-color);
    -webkit-transition: box-shadow .25s, -webkit-transform .25s;
    transition: box-shadow .25s, transform .25s;
}

    .st-member-card:hover {
        box-shadow: var(--st-card-shadow-hover);
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

.st-member-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bs-body-bg);
}

    .st-member-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        -webkit-transition: -webkit-transform .35s ease;
        transition: transform .35s ease;
    }

.st-member-card:hover .st-member-img-wrap img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.st-member-info {
    padding: .9rem 1rem 1rem;
}

.st-member-name {
    font-size: .92rem;
    font-weight: 700;
    color: var(--bs-body-color);
    margin: 0 0 .1rem;
    line-height: 1.3;
}

.st-member-role {
    font-size: .78rem;
    color: #6b7280;
    margin: 0 0 .55rem;
    line-height: 1.4;
}

.st-member-email {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    color: rgba(var(--bs-primary-rgb), .8);
    text-decoration: none;
    word-break: break-all;
}

    .st-member-email i {
        font-size: .75rem;
        flex-shrink: 0;
        color: var(--st-accent);
    }

    .st-member-email:hover {
        color: rgba(var(--bs-primary-rgb), 1);
        text-decoration: underline;
    }

/* ── Banner CTA ──────────────────────────────────────────────── */
.st-team-cta-banner {
    background: var(--st-footer-main-bg);
    padding: 2.75rem 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--bs-border-radius-xl);
}

    .st-team-cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 72% 50%, rgba(var(--st-accent-rgb), .14) 0%, transparent 62%);
        pointer-events: none;
    }

.st-team-cta-icon {
    font-size: 2.5rem;
    color: var(--st-accent);
    opacity: .85;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.st-team-cta-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 .3rem;
    position: relative;
    z-index: 1;
}

.st-team-cta-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.70);
    margin: 0;
    position: relative;
    z-index: 1;
}

.st-team-cta-btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: .5rem;
    background: var(--st-accent);
    color: #1a1100 !important;
    border: none;
    border-radius: 10px;
    padding: .9rem 2.2rem;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
    -webkit-transition: filter .2s, -webkit-transform .2s;
    transition: filter .2s, transform .2s;
    position: relative;
    z-index: 1;
}

    .st-team-cta-btn:hover {
        filter: brightness(1.10);
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
        color: #1a1100 !important;
    }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .st-team-hero-slide,
    .st-team-hero-content {
        min-height: 480px;
    }

    .st-team-dots-wrap {
        bottom: 4rem;
    }
}

@media (max-width: 575.98px) {
    .st-feat-strip {
        padding: 1.25rem 1rem;
    }

    .st-feat-item {
        gap: .6rem;
    }

    .st-feat-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .st-team-hero-slide,
    .st-team-hero-content {
        min-height: 420px;
    }

    .st-team-hero-content {
        padding: 4rem 0 5rem;
    }

    .st-team-cta-banner {
        padding: 2rem 1.5rem;
    }

    .st-team-ctrl {
        width: 36px;
        height: 36px;
        font-size: .85rem;
    }

    .st-team-ctrl-prev {
        left: .5rem;
    }

    .st-team-ctrl-next {
        right: .5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   HISTORIA V2  (.st-histv2-*)
   Tarjetas rediseñadas: ícono sobre título, texto extenso, collage.
════════════════════════════════════════════════════════════ */

/* Tarjeta base (altura automática, sin height fijo) */
.st-histv2-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--st-card-shadow);
    -webkit-transition: box-shadow .25s;
    transition: box-shadow .25s;
}

    .st-histv2-card:nth-child(even) {
        background: var(--bs-tertiary-bg, #f8f9fa);
    }

    .st-histv2-card:hover {
        box-shadow: var(--st-card-shadow-hover);
    }

/* Columna de contenido — ícono lateral + bloque de texto */
.st-histv2-content-col {
    padding: 2.5rem 2.25rem;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 1.1rem;
}

/* Ícono circular al costado de todo el contenido */
.st-histv2-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--st-accent-rgb), .12);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: var(--st-accent);
    font-size: 1.25rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-top: .15rem;
}

/* Bloque de texto (título + párrafos) a la derecha del ícono */
.st-histv2-text {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
}

/* Título en color accent */
.st-histv2-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--st-accent);
    margin: 0 0 .75rem;
    line-height: 1.3;
}

/* Párrafo descriptivo */
.st-histv2-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: .875rem;
    color: var(--bs-body-color);
    line-height: 1.78;
    margin: 0;
}

    .st-histv2-desc + .st-histv2-desc {
        margin-top: .85rem;
    }

/* Columna imagen — ocupa todo el alto del card */
.st-histv2-img-col {
    overflow: hidden;
    min-height: 300px;
}

.st-histv2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Columna collage 2×2 */
.st-histv2-collage-col {
    overflow: hidden;
    min-height: 320px;
}

.st-histv2-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    min-height: 320px;
    gap: 3px;
}

    .st-histv2-collage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .st-histv2-content-col {
        padding: 1.75rem 1.5rem;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .st-histv2-icon-wrap {
        margin-top: 0;
    }

    .st-histv2-img-col {
        min-height: unset;
        height: 220px;
    }

    .st-histv2-collage-col {
        min-height: 220px;
    }

    .st-histv2-collage {
        min-height: 220px;
    }
}

@media (max-width: 575.98px) {
    .st-histv2-content-col {
        padding: 1.5rem 1.25rem;
    }

    .st-histv2-img-col {
        height: 185px;
    }

    .st-histv2-collage-col {
        min-height: 185px;
    }

    .st-histv2-collage {
        min-height: 185px;
    }
}
