html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #f3f6f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

:root {
    --background-color: linear-gradient(to right, #00abff, #f816a8);
    --color-white: white;
    --color-primary: #34495e;
}

/*ESTILOS DEL SINPE*/
.card h1 {
    font-size: 24px;
    color: #2E7D32;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.steps {
    text-align: left;
    margin-top: 20px;
}

    .steps ol {
        padding-left: 20px;
    }

    .steps li {
        margin-bottom: 10px;
        color: #555;
    }

.checkmark {
    font-size: 40px;
    color: #2E7D32;
    margin-bottom: 20px;
}


.ocultar-div {
    display: none;
}

/**ESTILOS PARA EL SCROLL*/
/* Para navegadores WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px; /* ancho de la barra vertical */
    height: 12px; /* alto de la barra horizontal */
}

::-webkit-scrollbar-track {
    background: #f0f0f0; /* color del fondo del track */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #888; /* color de la "thumb" (botón que se mueve) */
    border-radius: 6px;
    border: 3px solid #f0f0f0; /* espacio entre thumb y track */
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }

/* Scrollbar para Firefox */

* {
    scrollbar-width: thin; /* tamaño del scrollbar */
    scrollbar-color: #888 #f0f0f0; /* color thumb y track */
}

main {
    margin-bottom: 3rem;
    margin-top: 1.5rem;
    flex: 1;
}

.max_header_menu {
    max-width: 1000px;
}

/**ESTILOS DEL MODAL DE PAGO */
.modal-header-pagos {
    background-color: #34495e;
    color: var(--color-white);
}

    .modal-header-pagos button i {
        color: var(--color-white);
    }

.container_btn_payments {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-pago {
    background: var(--color-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .btn-pago:hover {
        background-color: var(--color-primary);
        transform: scale(1.05);
    }

    .btn-pago i {
        font-size: 20px;
    }

.modal-dialog-slideout {
    position: fixed;
    right: 0;
    top: 0;
    margin: 0;
    width: 100%;
    max-width: 800px;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    pointer-events: none;
    z-index: 1050;
}

.modal.fade .modal-dialog-slideout {
    transform: translateX(100%);
}

.modal.fade.show .modal-dialog-slideout {
    transform: translateX(0);
    pointer-events: auto;
}

.modal-content {
    height: 100%;
    overflow-y: auto;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    cursor: pointer;
}

.terminos_condiciones {
    background-color: #f9f9f9;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

    .terminos_condiciones .form-check-label {
        margin-left: 10px;
        line-height: 1.5;
    }

    .terminos_condiciones a {
        text-decoration: underline;
        transition: color 0.2s ease-in-out;
    }

        .terminos_condiciones a:hover {
            color: #0056b3;
            text-decoration: none;
        }

/**Totales*/
.info-totales {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 70px;
}

.totales-card {
    width: 500px;
    max-width: 98%;
    background: linear-gradient(145deg, #fdfdfd, #f4f4f4);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.totales-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

    .totales-item:last-child {
        border-bottom: none;
    }

    .totales-item .label {
        font-weight: 500;
        color: #555;
        line-height: 1.4;
        font-size: 1rem;
    }

.value {
    font-weight: 600;
    color: #111;
}

.total-final {
    font-size: clamp(1.15rem, 1.5vw, 1.3rem);
    color: #222;
    border-top: 2px dashed #ccc;
    padding-top: 1.2rem;
    margin-top: 0.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

/**ESTILO DEL LOGO EN PROVEEDORES*/
.card-servicio {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-servicio {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compania-imagen {
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px; /* opcional para redondear */
}

/* Animación sutil al pasar el mouse */
.totales-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/**ESTILOS DEL FOOTER*/
.footer {
    background-color: #34495e;
    color: var(--color-white);
    padding: 40px 20px 20px;
    margin-top: auto;
}

    .footer a {
        color: var(--color-white);
    }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1050px;
    margin: auto;
}

.footer-left .logo {
    width: 150px;
}

.footer-left .slogan {
    margin: 15px 0;
    font-size: 1.1em;
}

.social-icons a {
    color: var(--color-white);
    margin: 0 8px;
    font-size: 1.5em;
    padding: 10px;
}

.logo_footer {
    background: url('/images/LogoFooter.svg') no-repeat top left;
    width: 250px;
    height: 90px;
    margin: 0 !important;
    padding: 0 !important;
    color: black;
    top: -64px;
}

.footer-right h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

    .footer-right ul li {
        margin-bottom: 10px;
        font-size: 0.95em;
    }

.footer-right i {
    margin-right: 10px;
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 0.9em;
}

    .footer-bottom a {
        color: var(--color-white);
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

/**DISENO PLANTILLA CANTIDADES*/
.counter-group {
    margin-bottom: 30px;
}

.label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

    .counter button {
        width: 44px;
        height: 44px;
        border: 1px solid #ccc;
        background-color: white;
        color: #0d6efd;
        font-size: 20px;
        border-radius: 6px;
        cursor: pointer;
    }

.minus {
    color: #D0D5DD !important;
}

.counter input {
    width: 128px;
    height: 44px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: white;
}

.counter button:disabled {
    color: #aaa;
    cursor: not-allowed;
}

/**BOTON DE VOLVER ATRAS PAGINA DE SELECCIONAR ASIENTOS*/
.container_back_page {
    margin: 0 auto;
    width: 98%;
    max-width: 1000px;
    margin-top: 1rem;
}

.back_page {
    display: inline-flex;
    align-items: center;
    color: #0d6efd; /* Azul Bootstrap */
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 500;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 12px;
}

    .back_page:hover {
        text-decoration: underline;
    }

/*ESTILOS DEL AUTOCOMPLETE*/
.search_button {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    padding: 1rem;
    background: #31124b;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 1rem;
}

.autocomplete-container-origenes,
.autocomplete-container-destinos,
.autocomplete-container-abordajes,
.autocomplete-container-desabordajes {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Estilo para el contenedor de sugerencias */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid #ddd;
    border-top: none;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

    .autocomplete-suggestions.visible {
        opacity: 1;
        visibility: visible;
    }

.autocomplete-item {
    color: #000 !important;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #ddd;
    color: #000;
}

    .autocomplete-item:hover {
        background-color: #f1f1f1;
    }

    .autocomplete-item:last-child {
        border-bottom: none;
    }

/* Estilo cuando no hay sugerencias */
.no-results {
    padding: 12px;
    color: #999 !important;
    font-size: 14px;
    text-align: center;
}

/* Asegurar que la negrita funcione correctamente */
b {
    font-weight: bold;
}

/**DISENO DE LOS CARD DE SERVICIOS*/
.card_servicio {
    border-radius: 5px;
    margin: 0 auto;
    width: 98%;
    max-width: 1100px;
    margin-top: 2rem;
    background-color: var(--color-white);
    box-shadow: rgba(0, 29, 39, 0.16) 0px 1px 3px;
}

.custom_title {
    padding: 0.5rem;
    font-weight: 700;
    font-size: 13px;
    color: rgb(144, 148, 151);
}

.card_servicio_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.card_servicio:hover {
    box-shadow: rgba(0, 29, 39, 0.15) 0px 10px 20px;
    transition: box-shadow 0.15s linear;
}

.container_empresa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
}

.logo img {
    width: 150px;
    height: auto; /* mantiene proporciones */
}

.name_servicio {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    word-wrap: break-word;
    width: 150px;
}

.container_itinerario {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex: 1;
    gap: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.hora_salida {
    font-weight: 700;
    font-size: 13px;
}

    .hora_salida .text {
        font-weight: 700;
        font-size: 13px;
        color: #909497;
        margin-bottom: 0.6rem;
    }

.origen_destino {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.point {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px; /* para evitar que el texto se extienda demasiado */
    word-break: break-word;
    text-align: center;
}

.label {
    font-size: 12px;
    color: #909497;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid;
    margin-top: 4px;
}

.start {
    border-color: #00aaff;
}

.end {
    border-color: #ff33aa;
}

.line {
    height: 1px;
    flex: 1;
    background-image: linear-gradient(to right, #ccc 33%, rgba(255,255,255,0) 0%);
    background-size: 6px 1px;
    background-repeat: repeat-x;
    margin: 0 8px;
}

.container_precios {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.container_montos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.price {
    font-weight: 700;
    font-size: 16px;
}

small {
    font-weight: 700;
    font-size: 13px;
    color: #909497;
}

.container_btn_search {
    width: 100%;
    margin: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_search {
    padding: 0.6rem;
    border-radius: 5px;
    background: var(--color-primary);
    width: 100%;
    color: var(--color-white);
    font-size: 1em;
    border: none;
    cursor: pointer;
}

    .btn_search:hover {
        cursor: pointer;
    }

.no-results-card {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    color: #6c757d;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    max-width: 400px;
}

    .no-results-card .icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.swal2-title-custom {
    font-size: 1.5rem;
}

.swal2-html-container-custom {
    font-size: 1rem;
    color: #555;
}

.btn-secondary {
    color: #fff;
    background-color: #34495e !important;
    border-color: #34495e !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #34495e !important;
}
/**DISENO DEL BUSCADOR*/

.container_search_index {
    position: relative;
    height: 150px;
}

.container_layout_index {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 10px;
    padding: 20px;
    width: 95%;
    max-width: 1100px;
    flex-wrap: wrap;
}

.container_search_search {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.header_search {
    background-color: #eaf2f8;
    position: relative;
}

    .header_search .btn_chevron {
        position: absolute;
        right: 10px;
        top: 5px;
        outline: none;
        border: none;
        background: transparent;
    }

.container_layout_search {
    background: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    width: 95%;
    margin: 0 auto;
    max-width: 1100px;
    flex-wrap: wrap;
    box-shadow: rgba(0, 29, 39, 0.16) 0px 1px 3px;
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 280px;
    margin-bottom: 1rem;
}

    .input-group label,
    .container_layout_index label,
    .container_layout_search label {
        font-size: 13px;
        margin-bottom: 4px;
        color: #666;
        font-weight: 600;
    }

.search-button {
    flex: 1;
}

    .search-button button {
        padding: 8px 20px;
        background: var(--color-primary);
        border: none;
        color: white;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
        white-space: nowrap;
        margin-top: 1.7rem;
        width: 100%;
    }

/**DISENO DEL LOADER*/
.ocultar {
    display: none !important;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
    box-sizing: border-box;
}

.lds-spinner {
    color: white;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-spinner div {
        transform-origin: 40px 40px;
        animation: lds-spinner 1.2s linear infinite;
    }

        .lds-spinner div:after {
            content: " ";
            display: block;
            position: absolute;
            top: 3.2px;
            left: 36.8px;
            width: 6.4px;
            height: 17.6px;
            border-radius: 20%;
            background: white;
        }

        .lds-spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .lds-spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .lds-spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .lds-spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .lds-spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .lds-spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .lds-spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .lds-spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .lds-spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .lds-spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .lds-spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegura que esté por encima de todos los demás elementos */
}

.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
}

/**DISENO DE LA CARD DE SELECCIONAR ASIENTOS, PAGINA DONDE SE SELECCIONA LOS ASIENTOS*/
.container_seats {
    border-radius: 5px;
    margin: 0 auto;
    width: 98%;
    max-width: 1000px;
    background-color: white;
    box-shadow: rgba(0, 29, 39, 0.15) 0px 10px 20px;
    transition: box-shadow 0.15s linear;
}

.card_seats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.card_template {
    position: relative;
    margin-bottom: 5rem;
    margin-top: 5rem;
    left: 1rem;
}

.card_template_counter {
    position: relative;
    background: #eeeeee;
    padding: 2rem;
}

.step_1 {
    background: #fff;
    padding: 15px;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

    .step_1 p {
        margin: 0rem;
    }

.step_2 {
    background: #fff;
    padding: 15px;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

    .step_2 p {
        margin: 0rem;
    }

.btn_Siguiente {
    display: none;
    padding: 0.5rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    right: 25px;
    top: 50%;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border: none;
}

button:hover,
button:focus,
button:active,
button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

.card_template p {
    margin-bottom: 0rem;
}

.template_destok {
    display: flex;
}

.template_mobile {
    display: none;
}

.container_maps {
    padding: 2rem;
}

    .container_maps p {
        margin-bottom: 2.5rem;
    }

.card_maps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.seleccion_abordaje_desabordaje {
    flex: 1;
}

.google_maps {
    flex: 1;
}

.mapa_google {
    width: 100%;
    height: 100%;
}

.btn_continue {
    padding: 0.6rem;
    border-radius: 5px;
    background: var(--color-primary);
    width: 100%;
    color: var(--color-white);
    font-size: 1em;
    border: none;
    cursor: pointer;
}

.sales-arguments {
    margin-top: -65px;
}

.container_banner {
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .container_banner img {
        height: 100%;
        width: 100%;
        object-fit: cover; /* La imagen se recorta y cubre el contenedor */
    }

/*DISENOS DE LA PAGINA DE INICIO*/
.banner {
    position: relative;
    width: 100%;
    min-height: 350px;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container_banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.container_banner .banner_title {
    text-align: center;
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1.5rem;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.banner-empresas-aliadas {
    background-image: url('/images/BarraDivisora_1.jpg');
}

.banner-internacional {
    background-image: url('/images/BarraDivisora_3.jpg');
}

/* Sombra sobre la imagen */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 72, 75, 0.55);
    z-index: 1;
}

/* Título centrado con mejor contraste */
.banner h2 {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    /*  margin-top: 3rem;*/
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Añade sombra al texto */
}

.title-populares {
    color: black;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}

.text-columns-item a {
    color: gray;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.42857143;
    text-decoration: none;
}

    .text-columns-item a:hover {
        text-decoration: underline;
    }

/*EMPRESAS ALIADAS*/

.autobuses-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.autobus-card {
    width: 160px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

    .autobus-card:hover {
        cursor: pointer;
    }

    .autobus-card img {
        max-width: 80%;
        max-height: 60%;
    }

/*PLANTILLAS*/

.seating-area-horizontal {
    display: grid;
    grid-gap: 3px;
    padding: 12px;
    background-color: #fff;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.seating-area-vertical {
    width: 227px;
    padding: 12px;
    background-color: #fff;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.bus-container {
    display: flex;
    width: 100%;
}

.bus-top-horizontal img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.bus-top-vertical img {
    display: flex;
    align-items: center;
    width: 227px;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: center;
}

.seat {
    width: 38px;
    height: 41px;
    font-size: small;
    color: rgb(24, 23, 23);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.seat-horizontal {
    background: url('/images/asiento.svg');
    font-weight: bold;
}

.seat-occupied-horizontal {
    background: url('/Images/asiento_reservado.svg');
    color: white;
    font-weight: bold;
}

.seat-occupied-web-horizontal {
    background: url('/images/asiento_reservadoWeb.svg');
    color: white;
    font-weight: bold;
}

.seat-selected-horizontal {
    background: url('/images/asiento_ocupado.svg') !important;
    color: white;
    font-weight: bold;
}

.seat-vertical {
    background: url('/images/asiento.svg');
    transform: rotate(90deg);
    font-weight: bold;
}

    .seat-vertical span {
        transform: rotate(270deg);
    }

.seat-occupied-vertical {
    background: url('/images/asiento_reservado.svg');
    transform: rotate(90deg);
    color: white;
    font-weight: bold;
}

    .seat-occupied-vertical span {
        transform: rotate(270deg);
    }

.seat-occupied-web-vertical {
    background: url('/images/asiento_reservadoWeb.svg');
    transform: rotate(90deg);
    color: white;
    font-weight: bold;
}

    .seat-occupied-web-vertical span {
        transform: rotate(270deg);
    }

.seat-selected-vertical {
    background: url('/images/asiento_ocupado.svg') !important;
    transform: rotate(90deg);
    color: white;
    font-weight: bold;
}

    .seat-selected-vertical span {
        transform: rotate(270deg);
    }

.seat-hidden {
    width: 38px;
    height: 38px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 3px;
    transition: background-color 0.3s;
}

/**DISENO DEL SELECTOR DE FECHAS PARA DESTOK*/

.title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.tab-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.tab {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: #6b7280;
    cursor: pointer;
    border-radius: 0.375rem 0.375rem 0 0;
    transition: all 0.2s ease;
}

    .tab:hover {
        color: #2563eb;
    }

    .tab.active {
        color: #34495e;
        font-weight: 600;
        border-bottom: 2px solid #34495e;
    }

/**MEDIA QUERY GENERAL*/

@media(max-width: 994px) {
    /**DISENOS PARA LAS CARDS EN RESPONSIVE*/
    .card_servicio {
        flex-direction: column;
        justify-content: center;
        padding: 0.8rem;
    }

    .container_empresa {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
    }

    .container_precios {
        width: 100%;
        max-width: 100%;
    }

    .container_montos {
        width: 100%;
        max-width: 100%;
    }

    .container_itinerario {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .logo img {
        width: 100px;
        height: auto; /* mantiene proporciones */
    }

    /**DISENO DE LA CARD DE SELECCIONAR ASIENTOS, PAGINA DONDE SE SELECCIONA LOS ASIENTOS, RESPONSIVE*/

    .card_seats {
        flex-direction: column;
        justify-content: center;
    }

    .template_destok {
        display: none;
    }

    .template_mobile {
        display: block;
    }

    .card_maps {
        flex-direction: column;
    }

    .seleccion_abordaje_desabordaje {
        width: 100%;
        max-width: 100%;
    }

    .googel_maps {
        width: 100%;
        max-width: 100%;
    }

    .container_search_button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .form_container {
        flex-direction: column;
    }

    .search_button {
        width: 80%;
    }

    /*ESTILOS PARA LA PAGINA PRINCIPAL*/
    .banner h2 {
        font-size: 2.3rem;
    }

    /**ESTILOS DEL FOOTER RESPONSIVE*/
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        margin: 20px 0;
    }

    /**ESTILOS DEL BUSCADOR*/
    .container_search {
        height: 450px;
    }

    .container_layout {
        bottom: 120px;
    }

        .container_layout .form-group {
            width: 100%;
        }

    .input-group {
        width: 100%;
    }

    .btn_Siguiente {
        display: block;
    }

    .mapa_google {
        height: 320px;
        object-fit: cover;
    }

    .card_template {
        margin-bottom: 2rem;
        margin-top: 2rem;
        margin-left: -100px;
    }
}

/**MEDIA QUERY PARA EL BUSCADOR*/
@media(max-width: 1131px) {

    .container_layout_search {
        width: 100%;
    }

    .container_layout_index {
        bottom: 50px;
        width: 100%;
    }

        .container_layout_index .form-group {
            margin-bottom: 0.5rem;
        }

    .container_banner .banner_title {
        top: 25%;
        font-size: 1rem;
    }

    #frmBuscar .form-group {
        width: 100%;
    }

    .input-group {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .search-button {
        width: 100%;
        justify-content: flex-end;
    }

        .search-button button {
            width: 100%;
            background: var(--color-primary);
            margin-top: 0;
        }

    .container_search_index {
        height: 250px;
    }
}
