/* ============================================
   VIAJESPLUS APP - Réplica Exacta Cóndor Estrella
   Especificación pixel-perfect
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #F0F0F0;
    color: #222222;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   APP CONTAINER - Estructura principal
   Centrado y responsivo para mobile/tablet/desktop
   ============================================ */
.app-container {
    max-width: 430px;
    margin: 0 auto;
    background: #FFFFFF;
    min-height: 100vh;
    position: relative;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: 'Roboto', sans-serif; cursor: pointer; border: none; outline: none; background: none; }
input, select { font-family: 'Roboto', sans-serif; outline: none; border: none; }
ul { list-style: none; }

/* === HEADER === */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 16px;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-header-logo img {
    height: 32px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    font-size: 24px;
    border-radius: 50%;
    transition: background 250ms;
}
.header-icon:active {
    background: #f5f5f5;
}

.header-locale {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 6px;
    font-size: 13px;
    font-weight: 500;
    color: #666666;
    letter-spacing: 0.3px;
    cursor: pointer;
    user-select: none;
    transition: opacity 250ms;
}
.header-locale:active {
    opacity: 0.6;
}

.lang-arrow {
    font-size: 7px;
    color: #999999;
    margin-left: 1px;
    transition: transform 250ms;
}

/* === BANNER SLIDER === */
.hero-banner {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 250ms ease;
    z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,31,87,0.65) 0%, rgba(255,31,87,0.1) 60%, transparent 100%);
    z-index: 2;
}

.hero-slide-content {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: #FFFFFF;
}

.hero-slide-content h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-slide-content p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    transition: all 250ms;
}

.hero-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #FFFFFF;
}

/* === SEARCH SECTION === */
.search-section {
    background: #061B6A;
    padding: 0 24px 14px;
    width: 100%;
}

.search-title {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 12px;
    padding-top: 14px;
}

.search-form {
    display: flex;
    flex-direction: column;
}

/* === OD WRAPPER (ORIGEN + DESTINO como bloque único) === */
.od-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.od-card-inner {
    width: 100%;
    height: 71px;
    background: #FFFFFF;
    cursor: pointer;
}

.od-card-inner:first-child {
    border-radius: 8px 8px 0 0;
    margin-bottom: 3px;
}

.od-card-inner:last-child {
    border-radius: 0 0 8px 8px;
}

.od-card-content {
    display: flex;
    flex-direction: column;
    padding: 8px 14px 0;
    height: 100%;
}

.od-label {
    font-size: 10px;
    font-weight: 700;
    color: #0D4EA3;
    text-transform: uppercase;
}

.od-value {
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    padding-left: 14px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.od-value.placeholder {
    color: #999999;
}

/* === SWAP BUTTON (flotante) === */
.swap-btn {
    position: absolute;
    top: 50%;
    right: -21px;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid #D9D9D9;
    box-shadow: 0 2px 5px rgba(0,0,0,.15);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #173D8A;
}
.swap-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.swap-btn .material-icons {
    font-size: 18px;
}

/* === DATE CARD === */
.date-card {
    width: 100%;
    height: 71px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    margin-bottom: 10px;
}

.date-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 14px;
    position: relative;
}

.date-col:first-child {
    border-right: 1px solid #D8D8D8;
}

.date-label {
    font-size: 10px;
    font-weight: 700;
    color: #0D4EA3;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.date-label .material-icons {
    font-size: 12px;
    color: #0D4EA3;
}

.date-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #222222;
}

.date-value .material-icons {
    font-size: 16px;
    color: #173D8A;
}

.date-value.placeholder {
    color: #BDBDBD;
}

.date-value.placeholder .material-icons {
    font-size: 17px;
    color: #173D8A;
}

.date-value input[type="date"] {
    border: none;
    background: transparent;
    width: 100%;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #222222;
}

/* === PASSENGERS CARD === */
.passenger-card {
    width: 100%;
    height: 71px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 14px;
    cursor: default;
    margin-bottom: 14px;
}

.passenger-card-content {
    display: flex;
    flex-direction: column;
    padding: 8px 0 0;
}

.passenger-label {
    font-size: 10px;
    font-weight: 700;
    color: #0D4EA3;
    text-transform: uppercase;
}

.passenger-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #222222;
    padding-left: 14px;
    margin-top: 5px;
}

.passenger-value .material-icons {
    font-size: 16px;
    color: #173D8A;
}

.passenger-value select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #222222;
    cursor: pointer;
    padding: 0;
}

/* === SEARCH BUTTON === */
.search-btn-container {
    width: 100%;
}

.search-btn {
    width: 100%;
    height: 52px;
    background: #FF174F;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    transition: background 250ms, transform 250ms;
}

.search-btn:active {
    background: #d91848;
    transform: scale(0.98);
}

.search-btn .material-icons {
    font-size: 17px;
}

/* === PAYMENT METHODS === */
.payment-section {
    padding: 0 20px;
    background: #FFFFFF;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0;
}
.payment-logos::-webkit-scrollbar { display: none; }

.payment-logo {
    height: 20px;
    flex-shrink: 0;
}

.payment-logo svg,
.payment-logo img {
    height: 100%;
    width: auto;
    display: block;
}

@media (max-width: 380px) {
    .payment-section { height: 60px; }
    .payment-logo { height: 17px; }
    .payment-logos { gap: 7px; }
}

@media (max-width: 360px) {
    .payment-section { height: 60px; }
    .payment-logo { height: 14px; }
    .payment-logos { gap: 5px; }
}

/* === BOTTOM SHEET === */
.sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
}
.sheet-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 201;
    background: #FFFFFF;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    transform: translateY(100%);
    transition: transform 350ms cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    max-width: 430px;
    margin: 0 auto;
}
.sheet.open {
    transform: translateY(0);
}

.sheet-handle {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: #DDDDDD;
    margin: 10px auto 0;
    flex-shrink: 0;
}

.sheet-header {
    background: #06175E;
    padding: 14px 20px;
    color: #FFFFFF;
    margin: 0;
    flex-shrink: 0;
}

.sheet-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.sheet-search-wrap {
    padding: 12px 16px;
    position: relative;
    flex-shrink: 0;
}

.sheet-search-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border-radius: 8px;
    background: #F5F5F5;
    font-size: 14px;
    color: #222222;
    border: none;
}

.sheet-search-input::placeholder {
    color: #999999;
}

.sheet-search-input:focus {
    background: #FFFFFF;
    box-shadow: 0 0 0 2px #06175E;
}

.sheet-search-icon {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999999;
}

.sheet-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 20px;
}

.sheet-section {
    padding: 0 16px;
}

.sheet-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #06175E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 4px 8px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    transition: background 250ms;
}

.city-item:active {
    background: #F9F9F9;
}

.city-item:last-child {
    border-bottom: none;
}

.city-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #999999;
    font-size: 18px;
}

.city-item-info {
    flex: 1;
    min-width: 0;
}

.city-item-name {
    font-size: 15px;
    font-weight: 500;
    color: #222222;
}

.city-item-sub {
    font-size: 12px;
    color: #999999;
    margin-top: 1px;
}

/* === RESPONSIVE === */
@media (min-width: 431px) {
    body {
        border-left: 1px solid #E0E0E0;
        border-right: 1px solid #E0E0E0;
    }
}

/* ============================================
   NEW SECTIONS - Promos, Features, FAQ, Footer
   ============================================ */

/* === SECTION COMMON === */
.section {
    padding: 28px 16px;
    background: #FFFFFF;
}

.section-gray {
    background: #F5F6FA;
    padding: 28px 16px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #06175E;
    margin-bottom: 4px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 13px;
    color: #888888;
    margin-bottom: 18px;
}

/* === PROMOTIONS === */
.promos-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.promos-scroll::-webkit-scrollbar { display: none; }

.promo-card {
    min-width: 260px;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.promo-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.promo-card-body {
    padding: 14px;
}

.promo-card-body h4 {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 3px;
}

.promo-card-body p {
    font-size: 12px;
    color: #888888;
    line-height: 1.4;
}

/* === FEATURE COLUMNS === */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.feature-item {
    text-align: center;
    padding: 20px 12px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.feature-item .material-icons {
    font-size: 32px;
    color: #06175E;
    margin-bottom: 8px;
    display: block;
}

.feature-item h3 {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 11px;
    color: #888888;
    line-height: 1.4;
}

/* === ICON GRID === */
.icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.icon-grid-item {
    text-align: center;
    padding: 24px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid #F5F5F5;
    transition: box-shadow 250ms;
}
.icon-grid-item:active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.icon-grid-item .material-icons {
    font-size: 36px;
    color: #06175E;
    margin-bottom: 8px;
    display: block;
}

.icon-grid-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 2px;
}

.icon-grid-item p {
    font-size: 11px;
    color: #888888;
}

/* === PUZZLE GRID === */
.puzzle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.puzzle-item {
    position: relative;
    height: 130px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.puzzle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms;
}
.puzzle-item:active img {
    transform: scale(1.05);
}

.puzzle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,23,94,0.75) 0%, rgba(6,23,94,0.1) 60%);
}

.puzzle-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    color: #FFFFFF;
}

.puzzle-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1px;
}

.puzzle-content p {
    font-size: 10px;
    opacity: 0.8;
}

/* === ENCOMIENDAS === */
.encomiendas-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.encomiendas-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.encomiendas-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6,23,94,0.85) 0%, rgba(6,23,94,0.2) 100%);
    display: flex;
    align-items: center;
    padding: 24px;
}

.encomiendas-text {
    color: #FFFFFF;
    max-width: 280px;
}

.encomiendas-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.encomiendas-text p {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 12px;
}

.encomiendas-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    transition: all 250ms;
}
.encomiendas-btn:active {
    background: #FFFFFF;
    color: #06175E;
}

/* === FAQ === */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid #F0F0F0;
    transition: box-shadow 250ms;
    cursor: pointer;
}
.faq-item:active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item .material-icons {
    font-size: 28px;
    color: #06175E;
    margin-bottom: 6px;
    display: block;
}

.faq-item h4 {
    font-size: 12px;
    font-weight: 500;
    color: #222222;
    line-height: 1.2;
}

/* === GROUP TRAVEL === */
.grupales-card {
    border-radius: 12px;
    overflow: hidden;
    background: #06175E;
    color: #FFFFFF;
}

.grupales-image {
    height: 180px;
    overflow: hidden;
}

.grupales-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grupales-content {
    padding: 24px;
}

.grupales-badge {
    display: inline-block;
    background: #FF1F57;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.grupales-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.grupales-content p {
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.4;
    margin-bottom: 16px;
}

.grupales-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FF1F57;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 250ms;
}
.grupales-btn:active {
    background: #e0184a;
    transform: scale(0.98);
}

/* === NEWSLETTER === */
.newsletter-section {
    background: #06175E;
    padding: 32px 24px;
    text-align: center;
    color: #FFFFFF;
}

.newsletter-section .grupales-badge {
    margin-bottom: 12px;
}

.newsletter-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.newsletter-section p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 380px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.18);
}

.newsletter-form button {
    padding: 12px 20px;
    background: #FF1F57;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background 250ms;
    white-space: nowrap;
}
.newsletter-form button:active {
    background: #e0184a;
}

/* === FOOTER === */
.app-footer {
    background: #0A0A1A;
    padding: 32px 16px 20px;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    transition: color 250ms;
}
.footer-col ul li a:active {
    color: #FFFFFF;
}

.footer-col p {
    font-size: 12px;
    opacity: 0.5;
    line-height: 1.5;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: all 250ms;
}
.footer-social a:active {
    background: #FF1F57;
    color: #FFFFFF;
}

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.2);
    font-size: 10px;
}
.footer-bottom-links a:active {
    color: #FFFFFF;
}

/* ============================================
   RESULTS SCREEN
   ============================================ */

.results-screen {
    min-height: 100vh;
    background: #F5F6FA;
    padding-bottom: 100px;
}

/* Header - Summary card (flotante) */
.res-header {
    width: 100%;
    color: #FFFFFF;
    z-index: 50;
}

.res-back-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
}

.res-back-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    color: #FFFFFF;
    cursor: pointer;
    transition: background 250ms;
    border: none;
}
.res-back-btn:active { background: rgba(0,0,0,0.4); }
.res-back-btn .material-icons { font-size: 20px; }

/* Summary card flotante - compact variant for completed ida trip in vuelta view */
.res-summary-card.compact {
    padding: 10px 16px;
    min-height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.res-summary-card.compact .res-card-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.75;
}

.res-summary-card.compact .res-card-route {
    font-size: 12px;
    font-weight: 400;
}

.res-summary-card.compact .res-card-info-item {
    font-size: 11px;
}

.res-summary-card.compact .res-card-icon {
    font-size: 16px;
}

/* ===== COLLAPSED STATE (after ida selection confirmed) ===== */
.res-summary-card.collapsed {
    padding: 10px 16px;
    min-height: auto;
    border-radius: 16px;
    transition: all 300ms ease;
}

.res-summary-card.collapsed .res-card-title,
.res-summary-card.collapsed .res-card-bottom {
    display: none;
}

.res-summary-card.collapsed .res-compact-summary {
    display: flex !important;
}

/* Compact summary inside collapsed card */
.res-compact-summary {
    display: none;
    flex-direction: column;
    gap: 3px;
}

.res-compact-top {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.res-compact-check {
    font-size: 16px;
}

.res-compact-title {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.res-compact-badge {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.15);
    padding: 1px 6px;
    border-radius: 8px;
}

.res-compact-route {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.res-compact-info {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Summary card flotante */
.res-summary-card {
    background: #231A7A;
    border-radius: 24px;
    margin: 0 12px;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.res-card-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.res-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.res-card-icon {
    font-size: 22px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.res-card-route {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    line-height: 1.4;
}

.res-card-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.res-card-info-item {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Date carousel */
.res-dates-wrap {
    background: #FFFFFF;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 49;
    box-shadow: 0 1px 0 #EEEEEE;
}

.res-dates {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.res-dates::-webkit-scrollbar { display: none; }

.date-item {
    min-width: 62px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    border: 1.5px solid #E0E0E0;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 250ms;
    flex-shrink: 0;
    padding: 0 10px;
}
.date-item:active { transform: scale(0.95); }

.date-item.active {
    background: #07195D;
    border-color: #07195D;
}

.date-day {
    font-size: 10px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 1px;
}
.date-num {
    font-size: 16px;
    font-weight: 700;
    color: #07195D;
}
.date-month {
    font-size: 9px;
    font-weight: 500;
    color: #AAAAAA;
    text-transform: uppercase;
    margin-top: 1px;
}

.date-item.active .date-day,
.date-item.active .date-num,
.date-item.active .date-month {
    color: #FFFFFF;
}

/* Sort bar */
.res-sort {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
}
.res-sort::-webkit-scrollbar { display: none; }

.sort-chip {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    border: 1.5px solid #E0E0E0;
    background: #FFFFFF;
    color: #666666;
    cursor: pointer;
    transition: all 250ms;
    flex-shrink: 0;
    font-family: 'Roboto', sans-serif;
}
.sort-chip:active { transform: scale(0.95); }
.sort-chip.active {
    background: #07195D;
    border-color: #07195D;
    color: #FFFFFF;
}

/* Results count */
.res-count {
    padding: 10px 16px 2px;
    font-size: 12px;
    color: #888888;
    font-weight: 500;
}

/* Results list */
.res-list {
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== SERVICE CARDS - Rediseño Réplica Exacta ===== */

.svc-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    animation: fadeUp 0.35s ease forwards;
    opacity: 0;
    transform: translateY(15px);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Card inner wrapper */
.svc-card-inner {}

/* ===== COMPANY LOGO (used in header-left) ===== */
.svc-company-logo {
    width: auto;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-company-logo svg,
.svc-company-logo img {
    height: 100%;
    width: auto;
    display: block;
    border-radius: 4px;
}

/* ===== THREE-COLUMN HEADER ROW ===== */
.svc-header-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

/* Left column: company logo */
.svc-header-left {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding-top: 4px;
    padding-left: 8px;
}

/* Departure time below logo */
.svc-hl-time {
    font-size: 16px;
    font-weight: 800;
    color: #222222;
    line-height: 1;
    white-space: nowrap;
}

/* Center column: duration + direct + bus divider */
.svc-header-center {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* Right column: promotion badge */
.svc-header-right {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding-right: 4px;
    padding-top: 4px;
}

/* Arrival time below promo badge */
.svc-hr-time {
    font-size: 16px;
    font-weight: 800;
    color: #222222;
    line-height: 1;
    white-space: nowrap;
}

/* Center column - time row: 🕒 05:00 hs */
.svc-hc-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.svc-hc-clock {
    font-size: 12px !important;
    color: #444444 !important;
}

.svc-hc-hour {
    font-size: 13px;
    font-weight: 500;
    color: #444444;
}

/* Center column - direct service text */
.svc-hc-direct {
    font-size: 11px;
    font-weight: 400;
    color: #555555;
    text-align: center;
}

/* Center column - bus divider: ───🚌─── */
.svc-hc-divider {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 3px;
    padding: 0 2px;
}

.svc-hc-line {
    flex: 1;
    height: 1px;
    background: #D0D0D0;
}

.svc-hc-bus-icon {
    font-size: 11px !important;
    color: #888888 !important;
    flex-shrink: 0;
}

/* ===== PROMOTION BADGE (inside right column) ===== */
.svc-promo-badge {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.svc-promo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 3px;
    flex: 1;
}

.svc-promo-full {
    background: #F57C00;
    color: #FFFFFF;
    padding: 3px 6px;
}

.svc-promo-left {
    background: #F57C00;
    color: #FFFFFF;
    flex: 1.2;
    gap: 1px;
    padding: 3px 3px;
}

.svc-promo-title {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    text-align: center;
}

.svc-promo-sub {
    font-size: 8px;
    font-weight: 600;
    line-height: 1.1;
    color: #FFFFFF;
    text-align: center;
}

.svc-promo-right {
    background: #7B1FA2;
    color: #FFFFFF;
    flex: 1;
    flex-direction: row;
    gap: 1px;
    padding: 2px 4px;
}

.svc-promo-big {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
}

.svc-promo-right-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.svc-promo-small {
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
}

.svc-promo-med {
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
}

/* ===== LOCATION ROW: origin | destination ===== */
.svc-location-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 18px;
}

.svc-loc-block {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.svc-loc-icon {
    font-size: 22px !important;
    color: #FF2E6A !important;
    flex-shrink: 0;
}

.svc-loc-text {
    display: flex;
    flex-direction: column;
}

.svc-loc-name {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.svc-loc-sub {
    font-size: 12px;
    color: #8C8C8C;
    line-height: 1.2;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.svc-loc-right {
    text-align: right;
    flex-direction: row-reverse;
}

.svc-loc-right .svc-loc-text {
    align-items: flex-end;
}

/* Seat types */
.svc-seats {
    border-top: 1px solid #F0F0F0;
    padding-top: 10px;
    margin-bottom: 12px;
}

.svc-seat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}
.svc-seat-row + .svc-seat-row {
    border-top: 1px solid #F5F5F5;
}

.svc-seat-type {
    display: flex;
    align-items: center;
    gap: 6px;
}
.svc-seat-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.svc-seat-name {
    font-size: 13px;
    font-weight: 500;
    color: #222222;
}
.svc-seat-avail {
    font-size: 10px;
    color: #2E7D32;
    font-weight: 500;
}
.svc-seat-avail.low { color: #E65100; }

.svc-seat-price {
    font-size: 16px;
    font-weight: 800;
    color: #222222;
}

/* Buy button */
.svc-buy {
    width: 100%;
    background: #07195D;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 250ms, transform 250ms;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
}
.svc-buy:active {
    background: #05144a;
    transform: scale(0.98);
}

/* Floating buttons */
.float-btn {
    position: fixed;
    z-index: 90;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #07195D;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(7,25,93,0.25);
    cursor: pointer;
    border: none;
    transition: all 250ms;
}
.float-btn:active { transform: scale(0.92); }
.float-btn .material-icons { font-size: 22px; }

.float-label {
    position: absolute;
    top: calc(100% + 4px);
    font-size: 9px;
    font-weight: 600;
    color: #07195D;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
}

.float-filter {
    left: 16px;
    bottom: 24px;
}

.float-top {
    right: 16px;
    bottom: 24px;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: all 0.3s ease;
}
.float-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Loading state */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.search-btn.loading .material-icons {
    animation: spin 0.8s linear infinite;
}

/* ============================================
   SEAT SELECTION SCREEN
   ============================================ */

.seat-screen {
    min-height: 100vh;
    background: #F5F6FA;
    padding-bottom: 120px;
}

.seat-res-header {
    margin-bottom: 0;
}

/* Service info bar */
.seat-service-bar {
    background: #FFFFFF;
    margin: 12px 12px 0;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.seat-svc-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.seat-svc-company {
    font-size: 12px;
    font-weight: 600;
    color: #07195D;
}
.seat-svc-type {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}

.seat-svc-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.seat-svc-time {
    font-size: 12px;
    color: #888888;
    font-weight: 500;
}
.seat-svc-price {
    font-size: 16px;
    font-weight: 800;
    color: #2E7D32;
}

/* Legend */
.seat-legend {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px 12px;
    flex-wrap: wrap;
    background: #FFFFFF;
    margin: 0 12px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.seat-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    color: #666666;
}

.seat-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}
.seat-legend-dot.avail { background: #81C784; }
.seat-legend-dot.selected { background: #1976D2; }
.seat-legend-dot.occupied { background: #E0E0E0; }
.seat-legend-dot.unavailable { background: #FFB74D; }

/* Seat map card */
.seat-map-card {
    background: #FFFFFF;
    margin: 10px 12px;
    border-radius: 24px;
    padding: 16px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.seat-map-title {
    font-size: 16px;
    font-weight: 700;
    color: #07195D;
    text-align: center;
    margin-bottom: 14px;
}

/* Bus seat map container */
.bus-seatmap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px;
    border: 1.5px solid #E8E8E8;
    border-radius: 12px;
    background: #FAFBFC;
    overflow-x: auto;
}

/* Deck label */
.bus-deck-label {
    width: 100%;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #5C6BC0;
    padding: 8px 0 4px;
    margin-top: 4px;
    border-top: 1px solid #E8E8E8;
}

/* Bus row - each horizontal row of seats */
.bus-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.bus-seats-left,
.bus-seats-right {
    display: flex;
    gap: 4px;
}

.bus-aisle {
    width: 24px;
    min-height: 46px;
    background: #F5F5F5;
    flex-shrink: 0;
    margin: 0 4px;
    border-left: 1px dashed #D0D0D0;
    border-right: 1px dashed #D0D0D0;
}

/* Individual seat */
.bus-seat {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms ease;
    user-select: none;
    position: relative;
    flex-shrink: 0;
    line-height: 0;
}

.bus-seat:active {
    transform: scale(0.92);
}

.bus-seat.occupied {
    cursor: not-allowed;
}
.bus-seat.unavailable {
    cursor: not-allowed;
}

/* Stairs section */
.bus-stairs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
    margin: 4px 0;
    border-top: 1.5px dashed #D0D0D0;
    border-bottom: 1.5px dashed #D0D0D0;
    background: #FAFAFA;
    font-size: 10px;
    font-weight: 600;
    color: #90A4AE;
}

.bus-special-tag {
    display: inline-block;
    padding: 2px 6px;
    background: #ECEFF1;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    color: #78909C;
}

/* Bus back wall */
.bus-back-wall {
    width: 100%;
    height: 20px;
    background: #ECEFF1;
    border-radius: 0 0 8px 8px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 9px;
    color: #90A4AE;
}

.bus-back-wall .bus-special-tag {
    background: #CFD8DC;
    color: #78909C;
}

/* ===== SEAT SUMMARY ===== */
.seat-summary {
    background: #FFFFFF;
    margin: 0 12px 12px;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    animation: fadeUp 0.3s ease forwards;
}

.seat-summary-title {
    font-size: 13px;
    font-weight: 700;
    color: #07195D;
    margin-bottom: 10px;
}

.seat-summary-table {
    width: 100%;
    border-collapse: collapse;
}

.seat-summary-table th {
    text-align: left;
    font-size: 10px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 1px solid #E0E0E0;
}

.seat-summary-table th:nth-child(2) {
    text-align: center;
}

.seat-summary-table th:last-child {
    text-align: right;
}

.seat-summary-table td {
    padding: 8px 0;
    font-size: 12px;
    color: #222222;
    border-bottom: 1px solid #F5F5F5;
    vertical-align: middle;
}

.seat-summary-table td:nth-child(2) {
    text-align: center;
    font-weight: 500;
}

.seat-summary-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: #2E7D32;
}

.seat-summary-icon-row td:first-child {
    display: flex;
    align-items: center;
    gap: 6px;
}

.seat-summary-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.seat-summary-total td {
    border-bottom: none;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #07195D;
}

.seat-summary-total td:last-child {
    color: #2E7D32;
    font-size: 16px;
}

/* ===== STICKY BOTTOM ===== */
.seat-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: #FFFFFF;
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 14px 14px 0 0;
}

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

#seatSelectedCount {
    font-size: 12px;
    font-weight: 500;
    color: #888888;
}

.seat-total-price {
    font-size: 18px;
    font-weight: 800;
    color: #2E7D32;
}

.seat-buy-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 250ms ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seat-buy-btn:disabled {
    background: #E0E0E0;
    color: #AAAAAA;
    cursor: not-allowed;
}

.seat-buy-btn:not(:disabled) {
    background: #2E7D32;
    color: #FFFFFF;
}
.seat-buy-btn:not(:disabled):active {
    background: #1B5E20;
    transform: scale(0.98);
}

/* Floating buttons for seat screen */
.seat-float-filter {
    left: 16px;
    bottom: 100px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1A237E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(26,35,126,0.25);
}

.seat-float-top {
    right: 16px;
    bottom: 100px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #1A237E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(26,35,126,0.25);
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: all 0.3s ease;
}
.seat-float-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* ============================================
   CHECKOUT OVERLAY - Pantalla de carga y pago
   Réplica exacta diseño Cóndor Estrella
   ============================================ */

.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: #F5F6FA;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: screenIn 0.3s ease forwards;
}

/* Header */
.ch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 16px;
    background: #FFFFFF;
}

.ch-header .app-header-logo img {
    height: 32px;
    width: auto;
}

/* Barra azul oscuro */
.ch-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 12px;
    background: #001173;
    color: #FFFFFF;
}

.ch-bar-back {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
    cursor: pointer;
    border: none;
    font-family: 'Roboto', sans-serif;
    transition: background 250ms;
}
.ch-bar-back:active {
    background: rgba(255,255,255,0.3);
}
.ch-bar-back .material-icons {
    font-size: 20px;
}

.ch-bar-title {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.ch-bar-drop {
    font-size: 20px;
    color: #FFFFFF;
    opacity: 0.7;
}

/* Tarjeta principal */
.ch-card-wrap {
    padding: 20px 16px;
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
}

.ch-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ch-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    text-align: center;
    margin-bottom: 24px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

/* Spinner */
.ch-spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    width: 100%;
}

.ch-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #E0E0E0;
    border-top-color: #001173;
    border-radius: 50%;
    animation: ch-spin 0.8s linear infinite;
}

@keyframes ch-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Botón verde */
.ch-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 250ms ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.ch-btn-disabled {
    background: #E0E0E0;
    color: #AAAAAA;
    cursor: not-allowed;
}

.ch-btn-active {
    background: #2E7D32;
    color: #FFFFFF;
}
.ch-btn-active:active {
    background: #1B5E20;
    transform: scale(0.98);
}

/* Footer */
.ch-footer {
    font-size: 11px;
    color: #999999;
    text-align: center;
    margin-top: 16px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

/* ============================================
   TARJETA VIRTUAL - Diseños por marca
   ============================================ */

.vc-container {
    width: 100%;
    max-width: 280px;
    height: 170px;
    margin: 0 auto 20px;
    perspective: 800px;
    cursor: pointer;
}

.vc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.vc-card-inner.flipped {
    transform: rotateY(180deg);
}

.vc-card {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backface-visibility: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    transition: background 0.5s ease;
}

.vc-front {
    z-index: 2;
}

.vc-back {
    transform: rotateY(180deg);
    z-index: 1;
}

/* Chip */
.vc-chip {
    width: 34px;
    height: 26px;
    background: linear-gradient(135deg, #D4A84B 0%, #F2D06B 50%, #D4A84B 100%);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.vc-chip-line {
    width: 18px;
    height: 2px;
    background: rgba(0,0,0,0.15);
    border-radius: 1px;
}
.vc-chip-short {
    width: 10px;
}

/* Contactless */
.vc-contactless {
    position: absolute;
    top: 16px;
    right: 50px;
}

/* Logo area - esquina superior izquierda como sitio original */
.vc-logo {
    position: absolute;
    top: 14px;
    left: 18px;
    width: 60px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}

.vc-logo svg {
    max-width: 56px;
    max-height: 28px;
    display: block;
}

/* Sub-logo para promos duales */
.vc-sublogo {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 48px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.vc-sublogo svg {
    max-width: 44px;
    max-height: 22px;
    display: block;
}

.vc-logo svg {
    max-width: 52px;
    max-height: 28px;
    display: block;
}

/* Número de tarjeta - centrado */
.vc-number {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    margin-top: 6px;
    font-family: 'Courier New', monospace;
    text-align: center;
}

/* Bottom row */
.vc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.vc-label {
    font-size: 7px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.vc-value {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}

/* Reverso */
.vc-magnetic-strip {
    width: calc(100% + 36px);
    height: 32px;
    background: #1a1a1a;
    margin: -16px -18px 16px;
}

.vc-signature-area {
    width: 100%;
    height: 32px;
    background: repeating-linear-gradient(90deg, #E8E0D0 0px, #E8E0D0 8px, #F5F0E8 8px, #F5F0E8 16px);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.vc-cvv {
    background: #FFFFFF;
    padding: 2px 6px;
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    border-radius: 2px;
    font-family: 'Courier New', monospace;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.vc-back-text {
    font-size: 7px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin-top: 8px;
}

/* ===== DISEÑOS POR MARCA ===== */

/* VISA - azul degradado */
.vc-card.visa {
    background: linear-gradient(135deg, #0C3B7A 0%, #1A5BB5 40%, #2D7DD2 100%);
}

/* MASTERCARD - gris oscuro */
.vc-card.mastercard {
    background: linear-gradient(135deg, #1A1A1A 0%, #3D3D3D 50%, #5C5C5C 100%);
}

/* MASTERCARD DÉBITO - cobre metálico */
.vc-card.mastercard-debito {
    background: linear-gradient(135deg, #4A3728 0%, #8B6F47 40%, #A68B5C 100%);
}

/* AMEX - celeste */
.vc-card.amex {
    background: linear-gradient(135deg, #0A6EBD 0%, #3498DB 50%, #6BB5E8 100%);
}

/* NARANJA - naranja */
.vc-card.naranja {
    background: linear-gradient(135deg, #CC5500 0%, #FF6600 50%, #FF8833 100%);
}

/* CABAL - gris */
.vc-card.cabal {
    background: linear-gradient(135deg, #2C3E50 0%, #4A6A8A 50%, #6B8EAB 100%);
}

/* DINERS - azul oscuro */
.vc-card.diners {
    background: linear-gradient(135deg, #0A1628 0%, #1A3A6E 50%, #2D5A9E 100%);
}

/* BANCO PROVINCIA - verde */
.vc-card.banco-provincia {
    background: linear-gradient(135deg, #0D4F1E 0%, #1B7A3D 50%, #2EA85B 100%);
}

/* CUOTA MIPYME - azul */
.vc-card.cuota-mipyme {
    background: linear-gradient(135deg, #005B8F 0%, #009EE3 50%, #33B8F0 100%);
}

/* PERSONAL PAY - celeste claro */
.vc-card.personal-pay {
    background: linear-gradient(135deg, #0097A7 0%, #00BCD4 50%, #4DD0E1 100%);
}

/* MAESTRO - azul oscuro */
.vc-card.maestro {
    background: linear-gradient(135deg, #0D1B3E 0%, #1A3A6E 50%, #2A5298 100%);
}

/* VISA DÉBITO - azul con acento dorado */
.vc-card.visa-debito {
    background: linear-gradient(135deg, #0A3D6B 0%, #1A5BB5 50%, #3A7BD5 100%);
}

/* ===== ANIMACIÓN DE TRANSICIÓN ===== */
@keyframes vc-appear {
    0% {
        opacity: 0;
        transform: scale(0.85) rotateY(-15deg) translateY(10px);
    }
    60% {
        opacity: 1;
        transform: scale(1.02) rotateY(2deg) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) translateY(0);
    }
}

.vc-card.animating {
    animation: vc-appear 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ===== PANTALLA DE PAGO - Radio Buttons ===== */
.ch-payment-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.ch-radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 200ms;
    border: 1.5px solid #EEEEEE;
}
.ch-radio-item:active {
    background: #F5F5F5;
}

.ch-radio-item input[type="radio"] {
    display: none;
}

.ch-radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 200ms;
    position: relative;
}

.ch-radio-item input[type="radio"]:checked + .ch-radio-custom {
    border-color: #07195D;
}

.ch-radio-item input[type="radio"]:checked + .ch-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #07195D;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ch-radio-label {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    font-family: 'Roboto', sans-serif;
}

/* Sección seleccionar tarjeta */
.ch-card-select-section {
    width: 100%;
    margin-bottom: 16px;
}

.ch-card-select-label {
    font-size: 13px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}

.ch-card-select-btn {
    width: 100%;
    height: 48px;
    border: 1.5px solid #07195D;
    border-radius: 10px;
    background: #FFFFFF;
    color: #07195D;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 200ms;
}
.ch-card-select-btn:active {
    background: #F0F2FF;
    transform: scale(0.98);
}

/* Mensaje */
.ch-message-section {
    width: 100%;
    text-align: center;
    padding: 12px 0;
}

.ch-message-title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;
}

.ch-message-sub {
    font-size: 13px;
    color: #888888;
    font-family: 'Roboto', sans-serif;
}

/* ============================================
   SELECCIÓN DE TARJETA O BANCO
   Réplica exacta diseño Cóndor Estrella
   ============================================ */

/* Línea azul debajo del título */
.ch-cards-underline {
    height: 3px;
    background: #001173;
    width: 100%;
}

/* Lista de botones */
.ch-cards-list {
    padding: 16px;
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Botón de tarjeta */
.ch-card-btn {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 250ms;
}
.ch-card-btn:active {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.ch-card-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
    min-height: 56px;
}

.ch-card-btn-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ch-card-logo {
    width: 48px;
    height: 16px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.ch-card-btn-name {
    font-size: 14px;
    font-weight: 700;
    color: #2EA3F2;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.ch-card-arrow {
    font-size: 24px;
    color: #888888;
    transition: transform 250ms;
}

.ch-arrow-nav {
    color: #BBBBBB;
}

/* Acordeón abierto */
.accordion-btn.open .ch-card-arrow {
    transform: rotate(180deg);
}

/* Contenido del acordeón */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #FAFBFC;
    border-top: 1px solid #EEEEEE;
}

.accordion-btn.open .accordion-content {
    max-height: 600px;
}

/* Filas de cuotas */
.installment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    color: #222222;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    transition: background 200ms;
}
.installment-row:active {
    background: #F0F2FF;
}
.installment-row:last-child {
    border-bottom: none;
}

.inst-interest {
    color: #888888;
    font-size: 12px;
}

/* Fila seleccionada */
.installment-row.selected {
    background: #E8EAF6;
    font-weight: 600;
}
.installment-row.selected .inst-interest {
    color: #07195D;
    font-weight: 600;
}

.inst-check {
    margin-left: 6px;
    color: #2E7D32;
    font-weight: 700;
}

/* ============================================
   FORMULARIO PASAJERO - Estilo Cóndor Estrella
   ============================================ */

.checkout-form {
    background: #F5F6FA;
    min-height: 100vh;
}

.pf-content {
    padding: 16px;
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 40px;
}

/* Tarjeta principal */
.pf-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 16px;
}

.pf-card-header {
    background: #E3F2FD;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #07195D;
    font-family: 'Roboto', sans-serif;
}

.pf-card-header .material-icons {
    font-size: 20px;
    color: #07195D;
}

.pf-card-body {
    padding: 16px;
}

/* Field group */
.pf-field-group {
    margin-bottom: 16px;
}

.pf-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 6px;
    font-family: 'Roboto', sans-serif;
}

.pf-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #222222;
    font-family: 'Roboto', sans-serif;
    background: #FFFFFF;
    transition: border-color 200ms;
}
.pf-input:focus {
    border-color: #07195D;
    outline: none;
}

.pf-select {
    appearance: auto;
    cursor: pointer;
}

/* DNI row */
.pf-dni-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.pf-dni-select-wrap {
    position: relative;
    flex: 0 0 100px;
}

.pf-dni-select-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: #4CAF50;
    border-radius: 2px;
    z-index: 1;
}

.pf-dni-select {
    width: 100%;
    height: 44px;
    padding: 0 8px 0 12px;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    font-family: 'Roboto', sans-serif;
    background: #FFFFFF;
    cursor: pointer;
    appearance: auto;
}
.pf-dni-select:focus {
    border-color: #07195D;
    outline: none;
}

.pf-dni-input-wrap {
    flex: 1;
    display: flex;
    gap: 6px;
}

.pf-search-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #07195D;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 200ms;
}
.pf-search-btn:active {
    background: #05144a;
}
.pf-search-btn .material-icons {
    font-size: 20px;
}

/* Date of birth */
.pf-dob-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pf-dob {
    width: 56px;
    text-align: center;
    padding: 0 4px;
}

.pf-dob-year {
    width: 80px;
}

.pf-dob-sep {
    font-size: 18px;
    font-weight: 500;
    color: #999999;
    font-family: 'Roboto', sans-serif;
}

/* Error message */
.pf-error {
    font-size: 12px;
    color: #D32F2F;
    font-weight: 500;
    margin-top: 4px;
    font-family: 'Roboto', sans-serif;
}

/* Insurance */
.pf-insurance {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: #07195D;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    border-top: 1px solid #F0F0F0;
    margin-top: 8px;
    padding-top: 14px;
    transition: opacity 250ms;
}
.pf-insurance:active {
    opacity: 0.7;
}
.pf-insurance .material-icons {
    font-size: 20px;
    color: #4CAF50;
}

.pf-optional {
    font-weight: 400;
    color: #999999;
    font-size: 13px;
}

/* ===== SEGURO MENOR (formulario dinámico) ===== */
.pf-minors-container {
    margin-bottom: 4px;
}

.pf-minor-card {
    background: #FFFFFF;
    border: 1.5px solid #E8F5E9;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
    animation: minorSlideIn 0.3s ease forwards;
}

@keyframes minorSlideIn {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 600px;
    }
}

.pf-minor-header {
    background: #E8F5E9;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #2E7D32;
    font-family: 'Roboto', sans-serif;
}

.pf-minor-header-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf-minor-header-left .material-icons {
    font-size: 18px;
    color: #4CAF50;
}

.pf-minor-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888888;
    transition: all 200ms;
    flex-shrink: 0;
    padding: 0;
}
.pf-minor-remove:active {
    background: #FFCDD2;
    color: #D32F2F;
    transform: scale(0.92);
}
.pf-minor-remove .material-icons {
    font-size: 16px;
}

.pf-minor-card .pf-card-body {
    padding: 12px 14px;
}

.pf-minor-card .pf-field-group {
    margin-bottom: 12px;
}

.pf-minor-card .pf-field-group:last-child {
    margin-bottom: 0;
}

/* Section title */
.pf-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

/* Service accordion */
.pf-svc-accordion {
    border-bottom: 1px solid #F0F0F0;
}
.pf-svc-accordion:last-child {
    border-bottom: none;
}

.pf-svc-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
}

.pf-svc-acc-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-svc-logo {
    width: 110px;
    height: 32px;
    flex-shrink: 0;
    display: block;
}

.pf-svc-arrow {
    font-size: 20px;
    color: #888888;
    transition: transform 250ms;
}
.pf-svc-accordion.open .pf-svc-arrow {
    transform: rotate(180deg);
}

.pf-svc-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pf-svc-accordion.open .pf-svc-acc-body {
    max-height: 600px;
}

/* Service item row */
.pf-svc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 4px;
    border-top: 1px solid #F5F5F5;
    flex-wrap: wrap;
    gap: 4px;
}
.pf-svc-item:first-child {
    border-top: none;
}

.pf-svc-item-info {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
}

.pf-svc-info-icon {
    font-size: 16px !important;
    color: #90A4AE !important;
    flex-shrink: 0;
}

.pf-svc-item-name {
    font-size: 12px;
    font-weight: 500;
    color: #444444;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
}

.pf-svc-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.pf-minus,
.pf-plus {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #CCCCCC;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #07195D;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 200ms;
    line-height: 1;
    padding: 0;
}
.pf-minus:active,
.pf-plus:active {
    background: #F0F2FF;
    transform: scale(0.92);
}

.pf-qty {
    min-width: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    font-family: 'Roboto', sans-serif;
}

.pf-svc-item-controls-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pf-svc-item-subtotal {
    font-size: 18px;
    font-weight: 600;
    color: #2E7D32;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    white-space: nowrap;
}

@keyframes pfSubtotalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pfSubtotalFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-4px);
    }
}

.pf-svc-item-subtotal.show {
    animation: pfSubtotalFadeIn 0.2s ease forwards;
}

.pf-svc-item-subtotal.hiding {
    animation: pfSubtotalFadeOut 0.2s ease forwards;
}

/* Submit button */
.pf-submit-btn {
    margin-top: 0;
    margin-bottom: 16px;
}

/* Dual logos para sub-pantallas */
.ch-dual-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.ch-logo-sm {
    width: 24px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.ch-dual-logo svg {
    display: block;
}

.ch-dual-logo img {
    display: block;
}

/* ===== PROMO CARD BUTTONS (anidados en Banco Provincia, Cuota MiPYME, Personal Pay) ===== */
.promo-card-btn {
    background: #FFFFFF;
    border-radius: 10px;
    margin: 8px 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #F0F0F0;
    transition: box-shadow 250ms;
}
.promo-card-btn:active {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.promo-card-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    cursor: pointer;
    min-height: 48px;
}

.promo-card-btn .ch-card-btn-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-card-btn .ch-card-btn-name {
    font-size: 13px;
    font-weight: 600;
    color: #2EA3F2;
    text-transform: uppercase;
}

.promo-card-btn .ch-card-arrow {
    font-size: 20px;
    color: #BBBBBB;
    transition: transform 250ms;
}

.promo-card-btn.open .ch-card-arrow {
    transform: rotate(180deg);
}

/* Contenido del acordeón interno */
.promo-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #FAFBFC;
    border-top: 1px solid #EEEEEE;
}

.promo-card-btn.open .promo-accordion-content {
    max-height: 300px;
}

.promo-accordion-content .installment-row {
    padding: 10px 20px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    color: #222222;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    transition: background 200ms;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.promo-accordion-content .installment-row:active {
    background: #F0F2FF;
}
.promo-accordion-content .installment-row:last-child {
    border-bottom: none;
}

.promo-accordion-content .installment-row.selected {
    background: #E8EAF6;
    font-weight: 600;
}
.promo-accordion-content .installment-row.selected .inst-interest {
    color: #07195D;
    font-weight: 600;
}

.promo-accordion-content .inst-check {
    margin-left: 6px;
    color: #2E7D32;
    font-weight: 700;
}

/* Sub-pantallas */
.sub-screen {
    position: absolute;
    inset: 0;
    background: #F5F6FA;
    z-index: 10;
    animation: screenIn 0.3s ease forwards;
    overflow-y: auto;
}

/* ============================================
   RESUMEN DE COMPRA - Cálculo de intereses
   ============================================ */

.ps-container {
    width: 100%;
    background: #F8F9FE;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #E8EAF6;
    animation: psFadeIn 0.4s ease forwards;
}

@keyframes psFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ps-container.ps-updated {
    animation: psSlideUpdate 0.35s ease forwards;
}

@keyframes psSlideUpdate {
    0% {
        opacity: 0.6;
        transform: translateX(-6px);
    }
    50% {
        opacity: 0.8;
        transform: translateX(3px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ps-title {
    font-size: 15px;
    font-weight: 700;
    color: #001173;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.ps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.ps-label {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
    font-family: 'Roboto', sans-serif;
}

.ps-value {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    font-family: 'Roboto', sans-serif;
}

.ps-divider {
    height: 1px;
    background: #E0E0E0;
    margin: 6px 0;
}

.ps-row-final .ps-label {
    font-size: 15px;
    font-weight: 700;
    color: #001173;
}

.ps-value-final {
    font-size: 17px;
    font-weight: 800;
    color: #2E7D32;
}

.ps-row-cuotas .ps-label {
    font-size: 13px;
    font-weight: 600;
    color: #444444;
}

.ps-row-installment .ps-label {
    font-size: 13px;
    font-weight: 600;
    color: #444444;
}

.ps-value-installment {
    font-size: 14px;
    font-weight: 700;
    color: #1976D2;
    text-align: right;
}

/* ============================================
   PIE DE PAGO (badge + botón + footer)
   ============================================ */

.ch-payment-footer {
    width: 100%;
    animation: cfSlideDown 0.4s ease forwards;
}

/* ============================================
   FORMULARIO DATOS DE TARJETA
   ============================================ */

.cf-container {
    width: 100%;
    margin-bottom: 16px;
    animation: cfSlideDown 0.4s ease forwards;
}

.cf-container.cf-visible {
    animation: cfSlideDown 0.4s ease forwards;
}

@keyframes cfSlideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cf-title {
    font-size: 14px;
    font-weight: 700;
    color: #001173;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.cf-field {
    margin-bottom: 12px;
}

.cf-input {
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #222222;
    font-family: 'Roboto', sans-serif;
    background: #FFFFFF;
    transition: border-color 200ms;
    width: 100%;
}
.cf-input:focus {
    border-color: #07195D;
    outline: none;
}

.cf-row {
    display: flex;
    gap: 10px;
}

.cf-field-half {
    flex: 1;
n/* BIN validation error */
.cf-bin-error {
    font-size: 12px;
    color: #D32F2F;
    font-weight: 500;
    margin-top: 6px;
    padding: 6px 10px;
    background: #FFEBEE;
    border-radius: 6px;
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
    animation: cfSlideDown 0.3s ease forwards;
}

.cf-input.cf-input-error {
    border-color: #D32F2F !important;
    background: #FFF5F5;
}

.cf-input.cf-input-valid {
    border-color: #2E7D32 !important;
    background: #F1F8E9;
}

.cf-input.cf-input-valid:focus {
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.cf-input.cf-input-error:focus {
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}
}

/* Animación de entrada de la tarjeta virtual */
.vc-container.vc-visible {
    animation: vc-entry 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes vc-entry {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.85);
    }
    60% {
        opacity: 1;
        transform: translateY(-3px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== INFO DE PAGO SELECCIONADO ===== */
.ch-selected-info {
    width: 100%;
    margin-bottom: 8px;
}

.ch-selected-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #E8F5E9;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #2E7D32;
    font-family: 'Roboto', sans-serif;
    animation: badgePop 0.35s ease forwards;
}

@keyframes badgePop {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ch-selected-badge .material-icons {
    font-size: 20px;
    color: #4CAF50;
}

/* ============================================
   MODAL INFORMACION ADICIONALES
   ============================================ */

.info-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.info-modal {
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    animation: modalSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.info-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 0;
}

.info-modal-title {
    font-size: 17px;
    font-weight: 700;
    color: #222222;
}

.info-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888888;
    transition: all 200ms;
}
.info-modal-close:active {
    background: #E0E0E0;
    color: #333333;
}
.info-modal-close .material-icons {
    font-size: 18px;
}

.info-modal-body {
    padding: 16px 20px;
}

.info-modal-body p {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}

.info-modal-footer {
    padding: 0 20px 18px;
}

.info-modal-btn {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: #07195D;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background 200ms;
}
.info-modal-btn:active {
    background: #05144a;
}

.pf-svc-info-icon {
    cursor: pointer !important;
    transition: color 200ms;
}
.pf-svc-info-icon:active {
    color: #07195D !important;
}

/* ============================================
   MODAL ERROR DE PAGO
   ============================================ */

.pay-error-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: payFadeIn 0.25s ease;
}

@keyframes payFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes payFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes payModalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes payModalOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.pay-error-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 380px;
    width: 100%;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    animation: payModalIn 0.25s ease forwards;
    text-align: center;
}

.pay-error-modal.closing {
    animation: payModalOut 0.2s ease forwards;
}

/* Icono de error */
.pay-error-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.pay-error-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FFF3E0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-error-triangle {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 28px solid #D32F2F;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-error-exclamation {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

/* Título */
.pay-error-title {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    text-align: center;
    margin: 0 0 6px;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
}

/* Subtítulo */
.pay-error-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}

/* Caja informativa */
.pay-error-info-box {
    background: #FFF8E1;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.pay-error-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pay-error-bulb-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FFC107;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pay-error-bulb-icon {
    font-size: 14px;
    line-height: 1;
}

.pay-error-info-title {
    font-size: 14px;
    font-weight: 700;
    color: #222222;
    font-family: 'Roboto', sans-serif;
}

.pay-error-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pay-error-info-list li {
    font-size: 13px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
    font-family: 'Roboto', sans-serif;
}

.pay-error-info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #222222;
    font-weight: 700;
}

.pay-error-info-list li:last-child {
    margin-bottom: 0;
}

/* Botón Aceptar */
.pay-error-accept-btn {
    width: 90%;
    height: 50px;
    border: 2px solid #07195D;
    border-radius: 10px;
    background: #FFFFFF;
    color: #07195D;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 200ms;
}
.pay-error-accept-btn:active {
    background: #F0F2FF;
    transform: scale(0.98);
}

/* Spinner dentro del botón */
@keyframes payBtnSpin {
    to { transform: rotate(360deg); }
}

.pay-btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: payBtnSpin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

/* ===== SCREEN TRANSITIONS ===== */
#screenResults,
#screenSeats {
    animation: screenIn 0.3s ease forwards;
}

@keyframes screenIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE SEAT ADJUSTMENTS ===== */
@media (max-width: 380px) {
    .bus-seatmap {
        padding: 4px;
    }
    .bus-aisle {
        width: 18px;
        min-height: 46px;
    }
}

/* ============================================
/* ============================================
   MOBILE SIDE MENU - Redesign
   ============================================ */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease-out;
}
.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 375px;
    height: 100%;
    background: #FFFFFF;
    z-index: 401;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.menu-drawer.open {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    align-items: center;
    height: 72px;
    padding: 0 12px 0 16px;
    background: #FFFFFF;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
    gap: 6px;
}

.menu-header-logo {
    flex-shrink: 0;
}
.menu-header-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.menu-header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.menu-hdr-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s ease;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    gap: 2px;
}
.menu-hdr-btn:active {
    background: #F5F5F5;
}
.menu-hdr-btn .material-icons {
    font-size: 22px;
}

.menu-locale-btn {
    width: auto;
    padding: 0 6px;
    border-radius: 8px;
    gap: 1px;
}

.menu-locale-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.menu-close-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s ease;
    flex-shrink: 0;
}
.menu-close-btn:active {
    background: #F0F0F0;
}

.menu-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

.menu-section {
    border-bottom: 1px solid #F0F0F0;
}

.menu-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    cursor: pointer;
    transition: background 0.15s ease;
    user-select: none;
}
.menu-section-header:active {
    background: #FAFAFA;
}

.menu-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.menu-sec-arrow {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.menu-section.open .menu-sec-arrow {
    transform: rotate(180deg);
}

.menu-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.menu-section.open .menu-acc-content {
    max-height: 500px;
}

/* Items: padding-left 28px from screen edge to icon */
.menu-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px 0 28px;
    min-height: 62px;
    cursor: pointer;
    transition: background 0.15s ease;
}
.menu-item:active {
    background: #F5F5F5;
}

/* SVG Icons: 36x36, red #E30613 */
.menu-icon-svg,
.menu-icon-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.menu-item-text {
    font-size: 18px;
    font-weight: 400;
    color: #4A4A4A;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-divider {
    height: 1px;
    background: #EEEEEE;
    margin: 0 0 0 28px;
}

@media (max-width: 360px) {
    .menu-drawer {
        width: 100%;
        max-width: 100%;
    }
}
/* ============================================
   CÓMO COMPRAR MODAL
   ============================================ */

.como-comprar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 600;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

@keyframes comoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.como-comprar-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes comoSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.como-comprar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.como-comprar-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.como-comprar-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.como-comprar-close:hover {
    background: #EEEEEE;
}

.como-comprar-close:active {
    background: #E0E0E0;
}

.como-comprar-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

.como-comprar-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #07195D;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #07195D;
}

.como-comprar-requirements {
    background: #FFF8E1;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.como-comprar-req-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 10px;
}

.como-comprar-req-list {
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.como-comprar-req-list li {
    margin-bottom: 4px;
}

.como-comprar-step {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.como-comprar-step:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
}

.como-comprar-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.como-comprar-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #07195D;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.como-comprar-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

.como-comprar-step-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 12px;
    border-radius: 8px;
}

.como-comprar-step-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.como-comprar-cta {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
}

.como-comprar-cta p {
    font-size: 15px;
    color: #666666;
    margin: 0 0 16px;
}

.como-comprar-btn {
    background: #07195D;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 48px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.como-comprar-btn:hover {
    background: #0A237A;
}

.como-comprar-btn:active {
    transform: scale(0.97);
    background: #051344;
}

@media (max-width: 480px) {
    .como-comprar-overlay {
        padding: 12px;
    }
    .como-comprar-modal {
        border-radius: 18px;
    }
    .como-comprar-header {
        padding: 16px 18px 12px;
    }
    .como-comprar-title {
        font-size: 20px;
    }
    .como-comprar-body {
        padding: 16px 18px 18px;
    }
    .como-comprar-subtitle {
        font-size: 18px;
    }
    .como-comprar-step-title {
        font-size: 16px;
    }
}

/* ============================================
   MIS PASAJES MODAL
   ============================================ */

.mis-pasajes-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 650;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.mis-pasajes-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.mis-pasajes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.mis-pasajes-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.mis-pasajes-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.mis-pasajes-close:hover {
    background: #EEEEEE;
}

.mis-pasajes-close:active {
    background: #E0E0E0;
}

.mis-pasajes-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    text-align: left;
}

.mis-pasajes-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.mis-pasajes-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .mis-pasajes-overlay {
        padding: 12px;
    }
    .mis-pasajes-modal {
        border-radius: 18px;
    }
    .mis-pasajes-header {
        padding: 16px 18px 12px;
    }
    .mis-pasajes-title {
        font-size: 18px;
    }
    .mis-pasajes-body {
        padding: 18px;
    }
    .mis-pasajes-text {
        font-size: 15px;
    }
}

.mis-pasajes-section {
    margin-bottom: 20px;
}

.mis-pasajes-section:last-child {
    margin-bottom: 0;
}

.mis-pasajes-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px;
    text-align: left;
}

.mis-pasajes-divider {
    height: 1px;
    background: #F0F0F0;
    margin: 20px 0;
}

.mis-pasajes-btn {
    background: #07195D;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    margin: 16px auto 0;
    transition: background 0.2s ease, transform 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mis-pasajes-btn:hover {
    background: #0A237A;
}

.mis-pasajes-btn:active {
    transform: scale(0.97);
    background: #051344;
}

.mis-pasajes-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    text-align: left;
}

.mis-pasajes-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .mis-pasajes-subtitle {
        font-size: 16px;
    }
    .mis-pasajes-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* ============================================
   DEVOLUCIONES MODAL
   ============================================ */

.devoluciones-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.devoluciones-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.devoluciones-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.devoluciones-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.devoluciones-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.devoluciones-close:hover {
    background: #EEEEEE;
}

.devoluciones-close:active {
    background: #E0E0E0;
}

.devoluciones-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

.devoluciones-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #07195D;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #07195D;
}

.devoluciones-section {
    margin-bottom: 16px;
}

.devoluciones-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 10px;
}

.devoluciones-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 14px;
}

.devoluciones-alert {
    background: #FFF0F0;
    border: 1px solid #FFD0D0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #CC0000;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.devoluciones-alert svg {
    flex-shrink: 0;
}

.devoluciones-info-box {
    background: #F5F8FF;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-left: 4px solid #07195D;
}

.devoluciones-info-title {
    font-size: 16px;
    font-weight: 700;
    color: #07195D;
    margin: 0 0 8px;
}

.devoluciones-info-box .devoluciones-text {
    font-size: 14px;
    margin-bottom: 6px;
}

.devoluciones-info-box .devoluciones-text:last-child {
    margin-bottom: 0;
}

.devoluciones-btn {
    background: #07195D;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: background 0.2s ease, transform 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.devoluciones-btn:hover {
    background: #0A237A;
}

.devoluciones-btn:active {
    transform: scale(0.97);
    background: #051344;
}

@media (max-width: 480px) {
    .devoluciones-overlay {
        padding: 12px;
    }
    .devoluciones-modal {
        border-radius: 18px;
    }
    .devoluciones-header {
        padding: 16px 18px 12px;
    }
    .devoluciones-title {
        font-size: 20px;
    }
    .devoluciones-body {
        padding: 16px 18px 18px;
    }
    .devoluciones-subtitle {
        font-size: 18px;
    }
    .devoluciones-section-title {
        font-size: 16px;
    }
    .devoluciones-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* ============================================
   DEVOLUCIONES MODAL
   ============================================ */

.devoluciones-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.devoluciones-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.devoluciones-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.devoluciones-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.devoluciones-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.devoluciones-close:hover {
    background: #EEEEEE;
}

.devoluciones-close:active {
    background: #E0E0E0;
}

.devoluciones-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

.devoluciones-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #07195D;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #07195D;
}

.devoluciones-section {
    margin-bottom: 16px;
}

.devoluciones-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 10px;
}

.devoluciones-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 14px;
}

.devoluciones-alert {
    background: #FFF0F0;
    border: 1px solid #FFD0D0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #CC0000;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.devoluciones-alert svg {
    flex-shrink: 0;
}

.devoluciones-info-box {
    background: #F5F8FF;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-left: 4px solid #07195D;
}

.devoluciones-info-title {
    font-size: 16px;
    font-weight: 700;
    color: #07195D;
    margin: 0 0 8px;
}

.devoluciones-info-box .devoluciones-text {
    font-size: 14px;
    margin-bottom: 6px;
}

.devoluciones-info-box .devoluciones-text:last-child {
    margin-bottom: 0;
}

.devoluciones-btn {
    background: #07195D;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: background 0.2s ease, transform 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.devoluciones-btn:hover {
    background: #0A237A;
}

.devoluciones-btn:active {
    transform: scale(0.97);
    background: #051344;
}

@media (max-width: 480px) {
    .devoluciones-overlay {
        padding: 12px;
    }
    .devoluciones-modal {
        border-radius: 18px;
    }
    .devoluciones-header {
        padding: 16px 18px 12px;
    }
    .devoluciones-title {
        font-size: 20px;
    }
    .devoluciones-body {
        padding: 16px 18px 18px;
    }
    .devoluciones-subtitle {
        font-size: 18px;
    }
    .devoluciones-section-title {
        font-size: 16px;
    }
    .devoluciones-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* ============================================
   RECORRIDOS MODAL
   ============================================ */

.recorridos-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.recorridos-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.recorridos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.recorridos-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.recorridos-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.recorridos-close:hover {
    background: #EEEEEE;
}

.recorridos-close:active {
    background: #E0E0E0;
}

.recorridos-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.recorridos-hero {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.recorridos-hero-icon {
    margin-bottom: 12px;
}

.recorridos-hero-title {
    font-size: 20px;
    font-weight: 700;
    color: #07195D;
    margin: 0 0 10px;
}

.recorridos-hero-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

.recorridos-map {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.recorridos-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.recorridos-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #07195D;
    margin: 0 0 16px;
}

.recorridos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.recorridos-card {
    background: #F8FAFE;
    border: 1px solid #E8EEF8;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
    cursor: default;
}

.recorridos-card:hover {
    border-color: #0D4EA3;
    background: #F0F5FF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 78, 163, 0.1);
}

.recorridos-card .material-icons {
    font-size: 24px;
    color: #0D4EA3;
    flex-shrink: 0;
    margin-top: 2px;
}

.recorridos-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recorridos-card-info strong {
    font-size: 14px;
    color: #222222;
}

.recorridos-card-info span {
    font-size: 12px;
    color: #888888;
    line-height: 1.4;
}

.recorridos-rutas {
    margin-bottom: 24px;
}

.recorridos-ruta-card {
    background: #FFFFFF;
    border: 1px solid #E8EEF8;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.recorridos-ruta-card:hover {
    border-color: #0D4EA3;
    box-shadow: 0 4px 16px rgba(13, 78, 163, 0.1);
    transform: translateY(-1px);
}

.recorridos-ruta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #F8FAFE;
    border-bottom: 1px solid #E8EEF8;
}

.recorridos-ruta-badge {
    display: inline-block;
    background: #0D4EA3;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.recorridos-ruta-orig {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

.recorridos-ruta-body {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
}

.recorridos-ruta-body .material-icons {
    font-size: 20px;
    color: #0D4EA3;
    flex-shrink: 0;
    margin-top: 2px;
}

.recorridos-ruta-body p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.recorridos-historia {
    background: #F5F8FF;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #07195D;
}

.recorridos-historia p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 480px) {
    .recorridos-overlay {
        padding: 12px;
    }
    .recorridos-modal {
        border-radius: 18px;
    }
    .recorridos-header {
        padding: 16px 18px 12px;
    }
    .recorridos-title {
        font-size: 18px;
    }
    .recorridos-body {
        padding: 18px;
    }
    .recorridos-hero-title {
        font-size: 18px;
    }
    .recorridos-grid {
        grid-template-columns: 1fr;
    }
    .recorridos-card {
        padding: 12px 14px;
    }
}

/* ============================================
   LA EMPRESA MODAL
   ============================================ */

.empresa-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.empresa-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.empresa-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
    position: relative;
}

.empresa-title {
    font-size: 22px;
    font-weight: 700;
    color: #CF2A2A;
    margin: 0;
}

.empresa-header-sub {
    font-size: 15px;
    color: #888888;
    margin: 4px 0 0;
}

.empresa-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
.empresa-close:hover {
    background: #EEEEEE;
}
.empresa-close:active {
    background: #E0E0E0;
}

.empresa-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

/* Hero */
.empresa-hero {
    text-align: center;
    padding: 10px 0 20px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 20px;
}

.empresa-hero-icon {
    margin-bottom: 12px;
}

.empresa-hero-title {
    font-size: 18px;
    font-weight: 700;
    color: #07195D;
    margin: 0 0 10px;
}

.empresa-hero-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

/* Timeline cards */
.empresa-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.empresa-year-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #FAFBFE;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid #F0F0F0;
    transition: all 0.2s ease;
}
.empresa-year-card:active {
    background: #F5F6FA;
    border-color: #E0E0E0;
}

.empresa-year-badge {
    flex-shrink: 0;
    background: #CF2A2A;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    text-align: center;
    min-width: 80px;
}

.empresa-year-content {
    flex: 1;
    min-width: 0;
}

.empresa-year-content p {
    font-size: 14px;
    color: #444444;
    line-height: 1.7;
    margin: 0 0 8px;
}
.empresa-year-content p:last-child {
    margin-bottom: 0;
}

/* Footer quote */
.empresa-footer {
    text-align: center;
    padding: 20px 0 4px;
    border-top: 1px solid #F0F0F0;
    margin-top: 8px;
}

.empresa-footer p {
    font-size: 15px;
    color: #07195D;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 480px) {
    .empresa-year-card {
        flex-direction: column;
        gap: 10px;
    }
    .empresa-year-badge {
        min-width: auto;
        align-self: flex-start;
    }
    .empresa-hero-title {
        font-size: 17px;
    }
    .empresa-hero-text,
    .empresa-year-content p {
        font-size: 13px;
    }
}

/* ============================================
   CONTACTO MODAL
   ============================================ */

.contacto-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.contacto-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.contacto-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.contacto-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.contacto-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
}
.contacto-close:hover { background: #EEEEEE; }
.contacto-close:active { background: #E0E0E0; }

.contacto-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

.contacto-intro {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 16px;
}

.contacto-select-wrap {
    margin-bottom: 16px;
}

.contacto-select {
    width: 100%;
    height: 52px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 16px;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: auto;
}

.contacto-info {
    background: #F8F9FE;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.contacto-info p {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 6px;
}
.contacto-info p:last-child { margin-bottom: 0; }

.contacto-info a {
    color: #0027B5;
    text-decoration: underline;
    font-weight: 600;
}

.contacto-btn-consultar {
    width: 100%;
    height: 50px;
    background: #0027B5;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-bottom: 24px;
}
.contacto-btn-consultar:active {
    background: #001a80;
    transform: scale(0.98);
}

/* === Form section === */
.contacto-form-section {
    border-top: 1px solid #F0F0F0;
    padding-top: 20px;
}

.contacto-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0027B5;
    display: inline-block;
}

.contacto-field {
    margin-bottom: 16px;
}

.contacto-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.contacto-opcional {
    font-weight: 400;
    color: #999999;
    font-size: 13px;
}

.contacto-input {
    width: 100%;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 15px;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.2s ease;
}
.contacto-input:focus {
    border-color: #0027B5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,39,181,0.1);
}
.contacto-input::placeholder {
    color: #AAAAAA;
}

.contacto-textarea {
    width: 100%;
    height: 120px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    resize: vertical;
    transition: border-color 0.2s ease;
}
.contacto-textarea:focus {
    border-color: #0027B5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,39,181,0.1);
}
.contacto-textarea::placeholder {
    color: #AAAAAA;
}

.contacto-hint {
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    margin: 0 0 16px;
    font-style: italic;
}

.contacto-file-area {
    width: 100%;
    min-height: 100px;
    border: 2px dashed #D0D0D0;
    border-radius: 10px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.contacto-file-area:active {
    border-color: #0027B5;
    background: #F8F9FE;
}

.contacto-file-empty {
    font-size: 14px;
    color: #888888;
    margin: 0 0 6px;
}

.contacto-file-drag {
    font-size: 12px;
    color: #AAAAAA;
    margin: 0;
}

.contacto-btn-enviar {
    width: 100%;
    height: 50px;
    background: #0027B5;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 8px;
}
.contacto-btn-enviar:active {
    background: #001a80;
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 480px) {
    .contacto-body {
        padding: 16px 16px 20px;
    }
    .contacto-title {
        font-size: 19px;
    }
    .contacto-intro {
        font-size: 14px;
    }
    .contacto-select {
        font-size: 15px;
    }
}

/* ============================================
   FAQ MODAL
   ============================================ */

.faq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.faq-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.faq-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
}
.faq-close:hover { background: #EEEEEE; }
.faq-close:active { background: #E0E0E0; }

.faq-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

/* Search bar */
.faq-search-wrap {
    position: relative;
    margin-bottom: 20px;
}

.faq-search-wrap .material-icons {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #AAAAAA;
    pointer-events: none;
}

.faq-search {
    width: 100%;
    height: 48px;
    background: #F5F5F5;
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 0 14px 0 44px;
    font-size: 15px;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s ease;
}
.faq-search:focus {
    background: #FFFFFF;
    border-color: #0027B5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,39,181,0.08);
}
.faq-search::placeholder {
    color: #AAAAAA;
}

/* Category icons scroll */
.faq-cats {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.faq-cats::-webkit-scrollbar { display: none; }

.faq-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    padding: 12px 8px;
    background: #F5F6FA;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    text-align: center;
}
.faq-cat-item:active {
    background: #E8EAF6;
    transform: scale(0.95);
}

.faq-cat-item .material-icons {
    font-size: 28px;
    color: #07195D;
}

.faq-cat-item span:last-child {
    font-size: 11px;
    font-weight: 500;
    color: #555555;
    line-height: 1.2;
}

/* Accordion */
.faq-acc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-acc-item {
    background: #F8F9FE;
    border-radius: 14px;
    border: 1px solid #F0F0F0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    user-select: none;
}
.faq-acc-header:active {
    background: #E8EAF6;
}

.faq-acc-title {
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    flex: 1;
    padding-right: 8px;
}

.faq-acc-arrow {
    font-size: 22px;
    color: #888888;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-acc-open .faq-acc-arrow {
    transform: rotate(180deg);
}

.faq-acc-content {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid #F0F0F0;
    animation: fadeUp 0.2s ease forwards;
}

.faq-acc-content p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 10px;
}
.faq-acc-content p:last-child { margin-bottom: 0; }

.faq-acc-content a {
    color: #0027B5;
    text-decoration: underline;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
    .faq-body {
        padding: 16px 16px 20px;
    }
    .faq-title {
        font-size: 19px;
    }
    .faq-cat-item {
        min-width: 68px;
        padding: 10px 6px;
    }
    .faq-cat-item .material-icons {
        font-size: 24px;
    }
    .faq-cat-item span:last-child {
        font-size: 10px;
    }
    .faq-acc-title {
        font-size: 14px;
    }
}

/* ============================================
   CONDICIONES COMERCIALES MODAL
   ============================================ */

.condiciones-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.condiciones-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.condiciones-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.condiciones-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.condiciones-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
}
.condiciones-close:hover { background: #EEEEEE; }
.condiciones-close:active { background: #E0E0E0; }

.condiciones-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

.condiciones-alert {
    background: #FFF5F5;
    border: 1px solid #FFD0D0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #CC0000;
    line-height: 1.6;
}
.condiciones-alert svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.condiciones-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}
.condiciones-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.condiciones-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #CF2A2A;
    margin: 0 0 10px;
}

.condiciones-section p {
    font-size: 14px;
    color: #444444;
    line-height: 1.7;
    margin: 0 0 10px;
}
.condiciones-section p:last-child { margin-bottom: 0; }

.condiciones-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condiciones-list li {
    font-size: 14px;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 4px;
}
.condiciones-list li:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
    .condiciones-body {
        padding: 16px 16px 20px;
    }
    .condiciones-title {
        font-size: 19px;
    }
    .condiciones-section p,
    .condiciones-list li {
        font-size: 13px;
    }
}

/* ============================================
   BOTÓN DE ARREPENTIMIENTO MODAL
   ============================================ */

.arrepentimiento-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.arrepentimiento-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.arrepentimiento-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
    position: relative;
}

.arrepentimiento-title {
    font-size: 22px;
    font-weight: 700;
    color: #CF2A2A;
    margin: 0 0 4px;
}

.arrepentimiento-subtitle {
    font-size: 15px;
    color: #888888;
    margin: 0;
}

.arrepentimiento-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
}
.arrepentimiento-close:hover { background: #EEEEEE; }
.arrepentimiento-close:active { background: #E0E0E0; }

.arrepentimiento-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

.arrepentimiento-hero {
    text-align: center;
    padding: 10px 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}

.arrepentimiento-hero p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

.arrepentimiento-info-box {
    background: #F5F8FF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #E0E8F5;
}

.arrepentimiento-info-box p {
    font-size: 14px;
    color: #444444;
    line-height: 1.7;
    margin: 0;
}

.arrepentimiento-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}
.arrepentimiento-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.arrepentimiento-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #CF2A2A;
    margin: 0 0 12px;
}

.arrepentimiento-section p {
    font-size: 14px;
    color: #444444;
    line-height: 1.7;
    margin: 0 0 10px;
}
.arrepentimiento-section p:last-child { margin-bottom: 0; }

.arrepentimiento-retenciones {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.arrepentimiento-retencion {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFF5F5;
    border: 1px solid #FFE0E0;
    border-radius: 10px;
    padding: 12px 16px;
}

.arrepentimiento-retencion-pct {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 800;
    color: #CF2A2A;
    min-width: 50px;
    text-align: center;
}

.arrepentimiento-retencion-texto {
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
}

.arrepentimiento-importante {
    font-size: 14px;
    font-weight: 600;
    color: #CC0000;
    line-height: 1.6;
    margin: 0;
    padding: 12px;
    background: #FFF5F5;
    border-radius: 10px;
    border: 1px solid #FFD0D0;
}

@media (max-width: 480px) {
    .arrepentimiento-body {
        padding: 16px 16px 20px;
    }
    .arrepentimiento-title {
        font-size: 19px;
    }
    .arrepentimiento-retencion {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .arrepentimiento-retencion-pct {
        text-align: left;
    }
    .arrepentimiento-section p,
    .arrepentimiento-retencion-texto {
        font-size: 13px;
    }
}

/* ============================================
   MODAL MENORES VIAJANDO
   ============================================ */

.menores-overlay {
    position: fixed;
    inset: 0;
    z-index: 700;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}

.menores-modal {
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 430px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: comoSlideUp 0.35s ease forwards;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.menores-header {
    background: #06175E;
    padding: 20px 24px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.menores-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.menores-header-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}

.menores-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #FFFFFF;
    transition: background 250ms;
}
.menores-close:active {
    background: rgba(255,255,255,0.25);
}
.menores-close svg {
    stroke: #FFFFFF;
    width: 20px;
    height: 20px;
}

.menores-body {
    padding: 24px;
}

/* Hero */
.menores-hero {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.menores-hero-icon {
    margin-bottom: 12px;
}

.menores-hero-title {
    font-size: 20px;
    font-weight: 700;
    color: #CF2A2A;
    margin-bottom: 8px;
}

.menores-hero-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

/* Botones de acci&oacute;n */
.menores-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.menores-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 250ms;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    border: none;
}
.menores-btn:active {
    transform: scale(0.98);
}

.menores-btn-primary {
    background: #07195D;
    color: #FFFFFF;
}
.menores-btn-primary:active {
    background: #05144a;
}

.menores-btn-secondary {
    background: #F5F5F5;
    color: #333333;
    border: 1px solid #D9D9D9;
}
.menores-btn-secondary:active {
    background: #E8E8E8;
}

.menores-btn-full {
    margin-top: 12px;
}

.menores-btn .material-icons {
    font-size: 18px;
}

.menores-res-text {
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    margin-bottom: 24px;
    font-style: italic;
}

/* Secciones */
.menores-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}
.menores-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menores-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #CF2A2A;
    margin-bottom: 12px;
}

.menores-text {
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.menores-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}

.menores-list li {
    font-size: 14px;
    color: #444444;
    line-height: 1.5;
    padding: 4px 0 4px 20px;
    position: relative;
}

.menores-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #CF2A2A;
    border-radius: 50%;
}

/* Grid de edades */
.menores-edad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.menores-edad-card {
    text-align: center;
    padding: 20px 12px;
    background: #F5F6FA;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
}

.menores-edad-icon {
    font-size: 32px !important;
    color: #06175E;
    margin-bottom: 8px;
    display: block;
}

.menores-edad-label {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 4px;
}

.menores-edad-desc {
    font-size: 12px;
    color: #888888;
    line-height: 1.3;
}

/* Alerta */
.menores-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    background: #FFF3E0;
    border-radius: 8px;
    border: 1px solid #FFE0B2;
    margin-top: 12px;
}

.menores-alert .material-icons {
    font-size: 20px;
    color: #E65100;
    flex-shrink: 0;
    margin-top: 1px;
}

.menores-alert span:last-child {
    font-size: 13px;
    color: #E65100;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 380px) {
    .menores-edad-grid {
        grid-template-columns: 1fr;
    }
    .menores-body {
        padding: 16px;
    }
    .menores-header {
        padding: 16px 20px;
    }
}

/* ============================================
   MODAL MANTENIMIENTO
   ============================================ */

.mnt-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 800;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: comoFadeIn 0.2s ease-out;
}

.mnt-modal {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 380px;
    width: 100%;
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.mnt-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: #FFF3E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mnt-title {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px;
}

.mnt-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 6px;
}

.mnt-disculpa {
    font-size: 15px;
    color: #888888;
    margin: 0 0 24px;
    font-style: italic;
}

.mnt-btn {
    width: 100%;
    height: 48px;
    background: #07195D;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.mnt-btn:active {
    background: #05144a;
    transform: scale(0.97);
}

@media (max-width: 480px) {
    .mnt-modal {
        padding: 28px 20px 24px;
    }
    .mnt-icon-wrap {
        width: 64px;
        height: 64px;
    }
    .mnt-icon-wrap svg {
        width: 44px;
        height: 44px;
    }
    .mnt-title {
        font-size: 18px;
    }
    .mnt-text,
    .mnt-disculpa {
        font-size: 14px;
    }
}

/* ============================================
   SEGUIMIENTO ENCOMIENDAS MODAL
   ============================================ */

.encomienda-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.encomienda-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.encomienda-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.encomienda-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.encomienda-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.encomienda-close:hover {
    background: #EEEEEE;
}

.encomienda-close:active {
    background: #E0E0E0;
}

.encomienda-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
}

.encomienda-image-wrap {
    width: 100%;
    overflow: hidden;
}

.encomienda-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.encomienda-intro {
    font-size: 17px;
    color: #222222;
    line-height: 1.6;
    margin: 24px 24px 0;
    text-align: center;
}

.encomienda-form {
    padding: 20px 24px 24px;
}

.encomienda-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.encomienda-select {
    height: 48px;
    border: 1px solid #d9d9d9;
    background: #FFFFFF;
    border-radius: 10px;
    font-size: 15px;
    color: #222222;
    padding: 0 28px 0 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23222' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
    outline: none;
    transition: border-color 0.15s ease;
}

.encomienda-select:focus {
    border-color: #071A73;
}

.encomienda-select:first-child {
    width: 80px;
}

.encomienda-select:nth-child(2) {
    width: 80px;
}

.encomienda-input {
    height: 48px;
    border: 1px solid #d9d9d9;
    background: #FFFFFF;
    border-radius: 10px;
    font-size: 15px;
    color: #222222;
    padding: 0 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    text-align: center;
    outline: none;
    width: 90px;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.encomienda-input:focus {
    border-color: #071A73;
}

.encomienda-input::placeholder {
    color: #999999;
}

.encomienda-btn {
    display: block;
    margin: 0 auto;
    width: 270px;
    height: 56px;
    background: #071A73;
    color: #FFFFFF;
    border: none;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', Arial, sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.encomienda-btn:hover {
    background: #0A248A;
}

.encomienda-btn:active {
    transform: scale(0.97);
    background: #051458;
}

.encomienda-result {
    margin-top: 20px;
}

.encomienda-result-box {
    background: #FFF8F8;
    border: 1px solid #FFD0D0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.encomienda-result-icon {
    margin-bottom: 10px;
}

.encomienda-result-title {
    font-size: 20px;
    font-weight: 700;
    color: #CC0000;
    margin-bottom: 6px;
}

.encomienda-result-msg {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.encomienda-section {
    padding: 24px 24px;
    border-top: 1px solid #F0F0F0;
}

.encomienda-section-title {
    font-size: 19px;
    font-weight: 700;
    color: #CC0000;
    margin: 0 0 14px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.encomienda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.encomienda-list li {
    font-size: 17px;
    color: #222222;
    line-height: 1.7;
    padding: 4px 0 4px 20px;
    position: relative;
}

.encomienda-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #222222;
    font-weight: 700;
}

.encomienda-list li a {
    color: #071A73;
    text-decoration: underline;
    font-weight: 600;
}

.encomienda-list li a:hover {
    color: #0D4EA3;
}

@media (max-width: 480px) {
    .encomienda-overlay {
        padding: 12px;
    }
    .encomienda-modal {
        border-radius: 18px;
    }
    .encomienda-header {
        padding: 16px 18px 12px;
    }
    .encomienda-title {
        font-size: 18px;
    }
    .encomienda-intro {
        font-size: 15px;
        margin: 18px 18px 0;
    }
    .encomienda-form {
        padding: 16px 18px 18px;
    }
    .encomienda-row {
        gap: 8px;
    }
    .encomienda-select:first-child,
    .encomienda-select:nth-child(2) {
        width: 70px;
    }
    .encomienda-input {
        width: 75px;
    }
    .encomienda-btn {
        width: 100%;
        max-width: 270px;
    }
    .encomienda-section {
        padding: 18px 18px;
    }
    .encomienda-section-title {
        font-size: 17px;
    }
    .encomienda-list li {
        font-size: 15px;
    }
}

/* ============================================
   NUESTROS SERVICIOS MODAL
   ============================================ */

.servicios-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 800;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: comoFadeIn 0.2s ease-out;
}

.servicios-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.servicios-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.servicios-title {
    font-size: 20px;
    font-weight: 700;
    color: #06175E;
    margin: 0;
}

.servicios-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
}

.servicios-close:hover {
    background: #EEEEEE;
}

.servicios-close:active {
    background: #E0E0E0;
}

.servicios-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

/* Hero */
.sv-hero {
    background: linear-gradient(135deg, #06175E 0%, #0D4EA3 50%, #1A6BC4 100%);
    padding: 28px 24px;
    text-align: center;
    color: #FFFFFF;
}

.sv-hero h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}

.sv-hero h3 span {
    color: #FFD700;
}

.sv-hero p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
    line-height: 1.4;
}

/* Tabs */
.sv-tabs {
    display: flex;
    gap: 6px;
    padding: 14px 16px;
    background: #F5F6FA;
    border-bottom: 1px solid #EEEEEE;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sv-tabs::-webkit-scrollbar { display: none; }

.sv-tab {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1.5px solid #E0E0E0;
    background: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 250ms;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.sv-tab:active {
    transform: scale(0.96);
}

.sv-tab.active {
    background: #06175E;
    border-color: #06175E;
    color: #FFFFFF;
}

.sv-tab-icon {
    font-size: 16px;
    line-height: 1;
}

/* Tab Content */
.sv-content {
    display: none;
    padding: 20px 16px;
    animation: svFadeIn 0.35s ease forwards;
}

.sv-content.active {
    display: block;
}

@keyframes svFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sv-content-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Info section */
.sv-info {}

.sv-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.sv-badge-suite {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #5C3D00;
}

.sv-badge-ejecutivo {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: #0D47A1;
}

.sv-badge-semi {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #1B5E20;
}

.sv-name {
    font-size: 20px;
    font-weight: 700;
    color: #06175E;
    margin: 0 0 8px;
}

.sv-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 18px;
}

/* Features grid */
.sv-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sv-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #F8F9FE;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #444444;
    line-height: 1.3;
    border: 1px solid #EEF0F8;
}

.sv-feat-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0D4EA3;
}

.sv-feat-icon svg {
    width: 18px;
    height: 18px;
}

/* Image */
.sv-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.sv-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sv-image-wrap:hover img {
    transform: scale(1.05);
}

.sv-image-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(6,23,94,0.85);
    color: #FFFFFF;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.sv-image-badge.sv-badge-ejecutivo {
    background: rgba(13,71,161,0.85);
}

.sv-image-badge.sv-badge-semi {
    background: rgba(27,94,32,0.85);
}

/* Comparison table */
.sv-comparison {
    padding: 20px 16px;
    background: #F5F6FA;
    border-top: 1px solid #EEEEEE;
}

.sv-comp-title {
    font-size: 16px;
    font-weight: 700;
    color: #06175E;
    margin: 0 0 14px;
    text-align: center;
}

.sv-comp-table {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E8EAF6;
    background: #FFFFFF;
}

.sv-comp-row {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
    border-bottom: 1px solid #F0F0F0;
}

.sv-comp-row:last-child {
    border-bottom: none;
}

.sv-comp-header {
    background: #06175E;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 11px;
}

.sv-comp-cell {
    padding: 10px 8px;
    font-size: 11px;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #F0F0F0;
}

.sv-comp-cell:last-child {
    border-right: none;
}

.sv-comp-feature {
    font-weight: 600;
    color: #222222;
    justify-content: flex-start;
    text-align: left;
    font-size: 11px;
    padding-left: 12px;
}

.sv-comp-header .sv-comp-cell {
    color: #FFFFFF;
    padding: 12px 6px;
    font-size: 11px;
    justify-content: center;
    text-align: center;
}

.sv-comp-cell-suite {
    color: #FFD700 !important;
}

.sv-comp-cell-ejec {
    color: #90CAF9 !important;
}

.sv-comp-cell-semi {
    color: #A5D6A7 !important;
}

.sv-comp-row:nth-child(even):not(.sv-comp-header) {
    background: #FAFBFF;
}

.sv-comp-cell.check {
    color: #2E7D32;
    font-weight: 700;
    font-size: 14px;
}

.sv-comp-cell.cross {
    color: #BDBDBD;
    font-size: 14px;
}

/* CTA */
.sv-cta {
    padding: 28px 24px;
    text-align: center;
    background: linear-gradient(135deg, #06175E 0%, #0D4EA3 100%);
    color: #FFFFFF;
}

.sv-cta h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
}

.sv-cta p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0 0 18px;
    line-height: 1.4;
}

.sv-cta-btn {
    background: #FF174F;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 250ms;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sv-cta-btn:active {
    background: #d91848;
    transform: scale(0.97);
}

/* Responsive */
@media (max-width: 480px) {
    .servicios-overlay {
        padding: 8px;
    }
    .servicios-modal {
        border-radius: 18px;
    }
    .servicios-header {
        padding: 14px 16px 12px;
    }
    .servicios-title {
        font-size: 18px;
    }
    .sv-hero {
        padding: 22px 18px;
    }
    .sv-hero h3 {
        font-size: 16px;
    }
    .sv-tabs {
        padding: 10px 12px;
        gap: 4px;
    }
    .sv-tab {
        padding: 8px 8px;
        font-size: 11px;
        gap: 4px;
    }
    .sv-content {
        padding: 16px 12px;
    }
    .sv-features {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .sv-feature {
        padding: 6px 8px;
        font-size: 11px;
    }
    .sv-image-wrap img {
        height: 160px;
    }
    .sv-comp-row {
        grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
    }
    .sv-comp-cell {
        font-size: 10px;
        padding: 8px 4px;
    }
    .sv-cta {
        padding: 24px 18px;
    }
}

/* ============================================
   PROMOS MODAL
   ============================================ */

.promos-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 750;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.promos-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.promos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.promos-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.promos-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.promos-close:hover {
    background: #EEEEEE;
}

.promos-close:active {
    background: #E0E0E0;
}

.promos-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

.promos-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #07195D;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #07195D;
}

.promo-card {
    background: #F9F9FB;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
    border: 1px solid #F0F0F0;
    transition: border-color 0.2s ease;
}

.promo-card:hover {
    border-color: #D0D0D0;
}

.promo-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.promo-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 4px;
}

.promo-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #222222;
    margin: 0;
    line-height: 1.3;
}

.promo-card-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 8px;
}

.promo-card-text:last-child {
    margin-bottom: 0;
}

.promo-card-small {
    font-size: 12px;
    color: #888888;
    line-height: 1.5;
}

.promo-card-date {
    font-size: 13px;
    color: #666666;
    margin: 8px 0 0;
    padding-top: 8px;
    border-top: 1px solid #EEEEEE;
}

@media (max-width: 480px) {
    .promos-overlay {
        padding: 12px;
    }
    .promos-modal {
        border-radius: 18px;
    }
    .promos-header {
        padding: 16px 18px 12px;
    }
    .promos-title {
        font-size: 20px;
    }
    .promos-body {
        padding: 16px 18px 18px;
    }
    .promos-subtitle {
        font-size: 18px;
    }
    .promo-card {
        padding: 14px 16px;
    }
    .promo-card-title {
        font-size: 15px;
    }
    .promo-logo {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   EQUIPAJE MODAL
   ============================================ */

.equipaje-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: comoFadeIn 0.2s ease-out;
}

.equipaje-modal {
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    animation: comoSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.equipaje-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.equipaje-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.equipaje-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.equipaje-close:hover {
    background: #EEEEEE;
}

.equipaje-close:active {
    background: #E0E0E0;
}

.equipaje-body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    flex: 1;
}

.equipaje-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #07195D;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #07195D;
}

.equipaje-main-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.equipaje-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.equipaje-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.equipaje-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.equipaje-section-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.equipaje-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0;
    line-height: 1.3;
}

.equipaje-subsection-title {
    margin-bottom: 12px;
}

.equipaje-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 12px;
}

.equipaje-text:last-child {
    margin-bottom: 0;
}

.equipaje-list {
    margin: 10px 0 0;
    padding-left: 20px;
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

.equipaje-list li {
    margin-bottom: 4px;
}

.equipaje-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .equipaje-overlay {
        padding: 12px;
    }
    .equipaje-modal {
        border-radius: 18px;
    }
    .equipaje-header {
        padding: 16px 18px 12px;
    }
    .equipaje-title {
        font-size: 20px;
    }
    .equipaje-body {
        padding: 16px 18px 18px;
    }
    .equipaje-subtitle {
        font-size: 18px;
    }
    .equipaje-section-title {
        font-size: 16px;
    }
    .equipaje-section-icon {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   RESPONSIVE - TABLET (≥768px) y DESKTOP (≥1024px)
   ============================================ */

/* ---- Fondo de la página en desktop ---- */
@media (min-width: 768px) {
    body {
        background: #E8E8E8;
    }

    .app-container {
        max-width: 700px;
        border-left: 1px solid #D0D0D0;
        border-right: 1px solid #D0D0D0;
        box-shadow: 0 0 24px rgba(0,0,0,0.08);
    }

    /* Overlays / modales fijos heredan el ancho del contenedor */
    .sheet {
        max-width: 700px;
    }

    .seat-sticky-bottom {
        max-width: 700px;
    }

    /* Grillas más amplias */
    .features-grid {
        gap: 16px;
        padding: 0 24px;
    }
    .feature-item {
        padding: 28px 16px;
    }

    .icon-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        padding: 0 16px;
    }

    .puzzle-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .puzzle-item {
        height: 150px;
    }

    .faq-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .promos-scroll {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }
    .promo-card {
        min-width: 200px;
        max-width: 240px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        padding: 0 16px;
    }

    .newsletter-form {
        max-width: 500px;
    }

    .ch-card-wrap {
        max-width: 600px;
    }

    .ch-cards-list {
        max-width: 600px;
    }

    .pf-content {
        max-width: 600px;
    }

    .hero-banner {
        height: 280px;
    }

    /* Modales más grandes */
    .como-comprar-modal,
    .mis-pasajes-modal,
    .devoluciones-modal,
    .promos-modal,
    .equipaje-modal,
    .recorridos-modal,
    .empresa-modal,
    .faq-modal,
    .condiciones-modal,
    .arrepentimiento-modal,
    .menores-modal,
    .mnt-modal {
        max-width: 600px;
        border-radius: 20px;
    }

    .condiciones-body,
    .arrepentimiento-body,
    .faq-body {
        max-height: 70vh;
    }

    .search-section {
        padding: 0 32px 20px;
    }

    .app-header {
        padding: 0 24px;
    }

    .section {
        padding: 32px 24px;
    }
    .section-gray {
        padding: 32px 24px;
    }
}

/* ---- DESKTOP (≥1024px) ---- */
@media (min-width: 1024px) {
    body {
        background: #E0E0E0;
        padding: 24px 16px;
    }

    .app-container {
        max-width: 900px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 32px rgba(0,0,0,0.10);
        border: none;
        min-height: auto;
    }

    .sheet {
        max-width: 600px;
        border-radius: 20px 20px 0 0;
    }

    .seat-sticky-bottom {
        max-width: 600px;
        border-radius: 14px 14px 0 0;
    }

    .hero-banner {
        height: 340px;
    }

    .hero-slide-content h2 {
        font-size: 36px;
    }
    .hero-slide-content p {
        font-size: 16px;
    }

    .search-section {
        padding: 0 40px 24px;
    }

    .search-title {
        font-size: 20px;
        padding-top: 20px;
        margin-bottom: 16px;
    }

    .od-card-inner {
        height: 78px;
    }
    .date-card {
        height: 78px;
    }
    .passenger-card {
        height: 78px;
    }

    .search-btn {
        height: 56px;
        font-size: 20px;
    }

    .payment-section {
        height: 72px;
    }
    .payment-logo {
        height: 24px;
    }
    .payment-logos {
        gap: 14px;
    }

    .section-title {
        font-size: 22px;
    }
    .section-subtitle {
        font-size: 15px;
    }

    .features-grid {
        gap: 20px;
        padding: 0 32px;
    }
    .feature-item {
        padding: 32px 20px;
    }
    .feature-item .material-icons {
        font-size: 38px;
    }
    .feature-item h3 {
        font-size: 15px;
    }
    .feature-item p {
        font-size: 13px;
    }

    .icon-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    .icon-grid-item {
        padding: 28px 20px;
    }
    .icon-grid-item .material-icons {
        font-size: 40px;
    }
    .icon-grid-item h4 {
        font-size: 16px;
    }
    .icon-grid-item p {
        font-size: 13px;
    }

    .puzzle-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .puzzle-item {
        height: 170px;
    }
    .puzzle-content h4 {
        font-size: 15px;
    }
    .puzzle-content p {
        font-size: 12px;
    }

    .faq-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
    .faq-item {
        padding: 20px 16px;
    }
    .faq-item .material-icons {
        font-size: 32px;
    }
    .faq-item h4 {
        font-size: 13px;
    }

    .promo-card {
        min-width: 220px;
        max-width: 280px;
    }
    .promo-card img {
        height: 150px;
    }

    .encomiendas-card {
        height: 240px;
        max-width: 700px;
        margin: 0 auto;
    }
    .encomiendas-text h3 {
        font-size: 24px;
    }
    .encomiendas-text p {
        font-size: 14px;
    }

    .grupales-card {
        display: flex;
        max-width: 700px;
        margin: 0 auto;
    }
    .grupales-image {
        height: auto;
        min-width: 320px;
        flex: 1;
    }
    .grupales-content {
        flex: 1;
        padding: 32px;
    }
    .grupales-content h3 {
        font-size: 24px;
    }
    .grupales-content p {
        font-size: 15px;
    }

    .newsletter-section {
        padding: 40px 32px;
    }
    .newsletter-section h3 {
        font-size: 22px;
    }
    .newsletter-section p {
        font-size: 15px;
    }

    .app-footer {
        padding: 40px 24px 24px;
    }
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    .footer-col h4 {
        font-size: 15px;
    }
    .footer-col ul li a {
        font-size: 13px;
    }
    .footer-bottom {
        font-size: 12px;
    }

    .ch-card-wrap {
        max-width: 700px;
    }

    .ch-cards-list {
        max-width: 700px;
    }

    .pf-content {
        max-width: 700px;
    }

    /* Modales más grandes en desktop */
    .como-comprar-modal,
    .mis-pasajes-modal,
    .devoluciones-modal,
    .promos-modal,
    .equipaje-modal,
    .recorridos-modal,
    .empresa-modal,
    .faq-modal,
    .condiciones-modal,
    .arrepentimiento-modal,
    .menores-modal,
    .mnt-modal {
        max-width: 700px;
        max-height: 80vh;
    }

    .como-comprar-overlay,
    .mis-pasajes-overlay,
    .devoluciones-overlay,
    .promos-overlay,
    .equipaje-overlay,
    .recorridos-overlay,
    .empresa-overlay,
    .faq-overlay,
    .condiciones-overlay,
    .arrepentimiento-overlay,
    .menores-overlay,
    .mnt-overlay {
        padding: 40px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ---- DESKTOP GRANDE (≥1280px) ---- */
@media (min-width: 1280px) {
    .app-container {
        max-width: 1100px;
    }

    .hero-banner {
        height: 400px;
    }

    .hero-slide-content h2 {
        font-size: 42px;
    }
    .hero-slide-content p {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .icon-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .puzzle-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
    .puzzle-item {
        height: 200px;
    }

    .como-comprar-modal,
    .mis-pasajes-modal,
    .devoluciones-modal,
    .promos-modal,
    .equipaje-modal,
    .recorridos-modal,
    .empresa-modal,
    .faq-modal,
    .condiciones-modal,
    .arrepentimiento-modal {
        max-width: 800px;
    }

    .ch-card-wrap {
        max-width: 800px;
    }
    .ch-cards-list {
        max-width: 800px;
    }
    .pf-content {
        max-width: 800px;
    }
}

/* ---- MOBILE SMALL (≤360px) ---- */
@media (max-width: 360px) {
    .app-container {
        max-width: 100%;
    }

    .hero-banner {
        height: 180px;
    }

    .hero-slide-content h2 {
        font-size: 22px;
    }
    .hero-slide-content p {
        font-size: 12px;
    }

    .search-section {
        padding: 0 12px 10px;
    }
    .search-title {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    .feature-item {
        padding: 14px 8px;
    }
    .feature-item .material-icons {
        font-size: 24px;
    }
    .feature-item h3 {
        font-size: 11px;
    }
    .feature-item p {
        font-size: 10px;
    }

    .icon-grid {
        gap: 8px;
    }
    .icon-grid-item {
        padding: 16px 10px;
    }
    .icon-grid-item .material-icons {
        font-size: 28px;
    }
    .icon-grid-item h4 {
        font-size: 12px;
    }
    .icon-grid-item p {
        font-size: 10px;
    }
}
