@import url("https://widgets.reservamos.mx/search/5.23.6/search.css");
@import url("table-destinos.css");
@import url("table-horarios.css");
@import url("table-tarifas.css");

@import url("cards-horarios.css");

@import url("variables.css");

/* 
=================
* CONFIGURACION *
=================
 */

*,
*::after,
*::before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Fontspring-DEMO-allroundgothic-bold.otf';
    src: url(/fonts/Demo_Fonts/Fontspring-DEMO-allroundgothic-bold.otf);
}

@font-face {
    font-family: 'Prompt-SemiBoldItalic';
    src: url('../fonts/Demo_Fonts/Prompt-SemiBoldItalic.woff2') format('woff2');
}

body {
    overflow-x: hidden;
    font-family: Fontspring-DEMO-allroundgothic-bold, sans-serif;
    font-size: 100%;
    height: 100%;
}

/* Clase para evitar el scroll en el body cuando el menú móvil está abierto */
.body-no-scroll {
    overflow: hidden;
}

/* 
======================
    * CONTENEDORES *
======================
 */

/* .contenedor {
    max-width: 90%;
    width: var(--ancho-contenedor);
    margin: 20px;
    overflow: hidden;
} */

.contenedor-ancho {
    /*     background-color: #007708; */
    width: 100%;
    padding: 0;
    margin: 0;
}

.contenedor-servicios {
    width: 90%;
    margin: 0 auto;

}

.contenedor-servicios img {
    box-shadow: -12px 15px 5px rgba(0, 0, 0, 0.4);
}

.contenedor-servicios div div {
    align-content: center;
}


/* ====================
	* GRID *
==================== */
.grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

/* Tamaño Grande - Computadoras y TV */
.col-1 {
    grid-template-columns: repeat(1, 1fr);
}

.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.col-5 {
    grid-template-columns: repeat(5, 1fr);
}

.col-6 {
    grid-template-columns: repeat(6, 1fr);
}

.col-7 {
    grid-template-columns: repeat(7, 1fr);
}

.col-8 {
    grid-template-columns: repeat(8, 1fr);
}

.col-9 {
    grid-template-columns: repeat(9, 1fr);
}

.col-10 {
    grid-template-columns: repeat(10, 1fr);
}

.col-11 {
    grid-template-columns: repeat(11, 1fr);
}

.col-12 {
    grid-template-columns: repeat(12, 1fr);
}

.span-1 {
    grid-column: span 1;
}

.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

.span-4 {
    grid-column: span 4;
}

.span-5 {
    grid-column: span 5;
}

.span-6 {
    grid-column: span 6;
}

.span-7 {
    grid-column: span 7;
}

.span-8 {
    grid-column: span 8;
}

.span-9 {
    grid-column: span 9;
}

.span-10 {
    grid-column: span 10;
}

.span-11 {
    grid-column: span 11;
}

.span-12 {
    grid-column: span 12;
}

/* Tamaño Mediano - Tablets */
@media screen and (max-width: 992px) {
    .med-col-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .med-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .med-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .med-col-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .med-col-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .med-col-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .med-col-7 {
        grid-template-columns: repeat(7, 1fr);
    }

    .med-col-8 {
        grid-template-columns: repeat(8, 1fr);
    }

    .med-col-9 {
        grid-template-columns: repeat(9, 1fr);
    }

    .med-col-10 {
        grid-template-columns: repeat(10, 1fr);
    }

    .med-col-11 {
        grid-template-columns: repeat(11, 1fr);
    }

    .med-col-12 {
        grid-template-columns: repeat(12, 1fr);
    }

    .med-span-1 {
        grid-column: span 1;
    }

    .med-span-2 {
        grid-column: span 2;
    }

    .med-span-3 {
        grid-column: span 3;
    }

    .med-span-4 {
        grid-column: span 4;
    }

    .med-span-5 {
        grid-column: span 5;
    }

    .med-span-6 {
        grid-column: span 6;
    }

    .med-span-7 {
        grid-column: span 7;
    }

    .med-span-8 {
        grid-column: span 8;
    }

    .med-span-9 {
        grid-column: span 9;
    }

    .med-span-10 {
        grid-column: span 10;
    }

    .med-span-11 {
        grid-column: span 11;
    }

    .med-span-12 {
        grid-column: span 12;
    }
}

/* Tamaño Pequeño - Celulares */
@media screen and (max-width: 576px) {
    .peq-col-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .peq-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .peq-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .peq-col-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .peq-col-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .peq-col-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .peq-col-7 {
        grid-template-columns: repeat(7, 1fr);
    }

    .peq-col-8 {
        grid-template-columns: repeat(8, 1fr);
    }

    .peq-col-9 {
        grid-template-columns: repeat(9, 1fr);
    }

    .peq-col-10 {
        grid-template-columns: repeat(10, 1fr);
    }

    .peq-col-11 {
        grid-template-columns: repeat(11, 1fr);
    }

    .peq-col-12 {
        grid-template-columns: repeat(12, 1fr);
    }
}


/* ====================
	* TERMINA GRID *
==================== */




.bg-color {
    background: #00123f;
    padding: 10px;
    color: #fff;
}

.color-1 {
    color: #002804;
}



.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 500;
}

.center {
    text-align: center;
}

.just-text {
    text-align: justify;
    font-size: 1.6vw;
    /* Cambiado a un tamaño más razonable */
}


/* ENLACES */
a {
    cursor: pointer;
    text-decoration: none;
    transition: background-color .16s ease-in;
}


.link {
    cursor: pointer;
}



/* ====================
      * FUENTES *
  ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}



.titulo-1 {
    font-weight: 700;
    margin: 30px 20px;
}

.titulo-2 {
    font-weight: 700;
}

.titulo-3 {
    font-weight: 700;
    font-size: 18px;
    padding: 10px 0;
}

.titulo-4 {
    font-weight: 700;
    font-size: 16px;
}

.center {
    text-align: center;
}



.left {
    text-align: left;
}

.right {
    text-align: right;
}

.logo a img {
    margin: 0px 20px;
    vertical-align: middle;
    width: 180px;
}


img {
    max-width: 100%;
    height: auto;
}


.next img,
.prev img {
    width: 60px;
}


/* ****************************************************
                        CONTENEDOR
******************************************************/



.menu {
    background: #00123f !important;
    width: 100%;
    padding: 20px 0;
    margin: 0 auto;
    display: flex;
    position: relative;
    align-items: center;
}


.logo-container img {
    width: 160px;
}

/* *********** MENU *********/



/* Navbar ******************************************************/


ul li.nav-link {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
}

.main-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    z-index: 999;
    position: sticky;
    top: 0;

    .header-menu {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 80px;
        padding: 10px 40px;
        justify-content: space-between;

        .logo-header {
            height: 100%;
            z-index: 9999;

            img {
                height: 100%;
            }
        }

        .nav-header ul {
            display: flex;
            flex-direction: row;
            height: 100%;
            justify-content: center;
            align-items: center;
            gap: 20px;
            font-weight: bold;
            z-index: 9999;

            .no-desktop {
                display: none;
            }

            li {
                padding: 15px;
                list-style: none;
                transition: all 0.3s ease-in-out;

                a {
                    color: var(--blue-dark-color);
                    text-decoration: none;
                }

                &:hover {
                    background-color: var(--gray-light);
                    border-radius: 10px;
                    transition: all 0.3s ease-in-out;

                }
            }
        }

        /* Ícono hamburguesa */
        .hamburger-btn {
            background: var(--blue-dark-color);
            width: auto;
            height: auto;
            cursor: pointer;
            color: white;
            margin: 0;
            transition: all 0.3s ease-in-out;
            z-index: 9999;
            border-radius: 10px;

        }

        .hamburger-btn:hover {
            opacity: 0.8;
            transition: all 0.3s ease-in-out;
        }



    }
}

.desktop-menu-container {
    position: relative;
    display: flex;
    align-items: center;
}

.submenu {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    z-index: 9999;
    width: 180px;
}

.submenu.active {
    max-height: 200px;
    opacity: 1;
}

.submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;

    .no-desktop {
        display: flex !important;
    }
}

.submenu a {
    display: block;
    color: var(--blue-dark-color);
    text-decoration: none;
    padding: 12px;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s ease;
}

.submenu a:hover {
    background-color: var(--gray-light);
}

.widget {
    background-color: var(--blue-dark-color);
}



.distintivo2 {
    padding: 0px;
    background-position: center;
    width: 100px;
    position: absolute;
    opacity: .9;
}

.distintivo {
    padding: 10px;
    background-position: center;
    width: 100px;
    background: rgba(255, 255, 255, 1);
    border-radius: 74px;
    margin: 0 auto;
    margin-bottom: 5px;
    position: fixed;
    height: 100px;
}



/* Estilos para Tablet y Móvil (hasta 992px) */
@media screen and (max-width: 992px) {


    .main-header {
        position: relative;
        /* Cambia de 'sticky' a 'relative' para que se desplace con el contenido */
    }

    .main-header .header-menu .nav-header {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 9998;
    }



    .main-header .header-menu .nav-header.active {
        transform: translateX(0);

    }

    .main-header .header-menu .nav-header ul {
        flex-direction: column;
        gap: 10px;
        z-index: 99999;

        .no-desktop {
            display: flex !important;
        }

    }

    .main-header .header-menu .nav-header ul li a {
        font-size: 1.5rem;
    }

    .main-header .header-menu .hamburger-btn {
        display: block;
    }

    .submenu {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .main-header .header-menu .nav-header ul {
        z-index: 9999;
    }

    .main-header .header-menu .nav-header ul li a {
        font-size: 1.2rem;
    }

    .main-header .header-menu {
        padding: 10px 20px;
    }

    .logo-header img {
        height: 80% !important;
    }
}

@media screen and (max-width: 375px) {
    .main-header .header-menu .nav-header ul {
        gap: 5px;
    }

    .main-header .header-menu .nav-header ul li {
        padding: 10px;
    }

    .main-header .header-menu .nav-header ul li a {
        font-size: 1rem;
    }
}

.distintivo .texto-distintivo {
    position: absolute;
    width: 160px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    left: 74px;
    border-radius: 15px;
    top: 18px;
    font-size: 16px;
    text-align: right;
    padding: 5px 8px;
    display: flex;
    justify-content: right;
}

.distintivo .texto-distintivo span {
    vertical-align: middle;
    align-self: center;
    text-align: right;
}

.distintivo img {
    width: 80px;
    display: block;
}

.distintivo h2 {
    color: #003a5d;
    font-size: 16px;
    background-image: url(../img-etn/fondo-pleca-distintivo.png);
    padding: 0px;
    background-position: center;
    background-size: contain;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-btn {
    flex: 1;
    display: flex;
}

.nav-links {
    flex: 3;
}

.log-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo {
    color: #fff;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span {
    font-weight: 300;
}


.icon-menu {
    width: 20%;
}

.btn.solid,
.btn.transparent:hover {
    background-color: #fff;
    color: #000;
}

.btn.transparent,
.btn.solid:hover {
    background-color: transparent;
    color: #fff;
}

.nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    position: relative;
    padding: 0;
    white-space: nowrap;
}

.nav-link>a {
    line-height: 3rem;
    color: #fff;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    padding: 0 12px;
}

.nav-link>a>i {
    margin-left: .2rem;
}

.nav-link:hover>a {
    transform: scale(1.1);
}

.dropdown {
    position: absolute;
    top: 100%;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul {
    position: relative;
}

.dropdown-link>a {
    display: flex;
    background-color: #fff;
    color: #000;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover>a {
    background-color: #000;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)) {
    border-bottom: 1px solid #efefef;
}

.dropdown-link i {
    transform: rotate(-90deg);
}

.arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover~.arrow {
    background-color: red;
}

.dropdown-link {
    position: relative;
}

.dropdown.second {
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
}

.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
    right: 10px;
    position: relative;
}

.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #ffffff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #ffffff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before {
    transform: translateY(-7px);
}

.hamburger-menu div:after {
    transform: translateY(7px);
}

#check {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}



/* Estilos del carrusel de banners */
.carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
}

.carousel-button.prev {
    left: 15px;
}

.carousel-button.next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #fff;
}






.link-menu-mobile {
    display: none;
}






.btn-cuenta {
    display: inline-block !important;
    margin-top: 20px !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 4px !important;
    background-color: #09915A !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 1em !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
}










@media (max-width: 920px) {

    .img3 {
        width: 100% !important;
        text-align: center;
        padding: 20px;
    }


    .hamburger-menu-container {
        display: flex;
    }

    #check {
        display: block;
    }

    .nav-btn {
        position: fixed;
        height: calc(100vh - 3rem);
        top: 5rem;
        left: 0;
        width: 100%;
        background: RGBA(0, 40, 4, 0.90);
        flex-direction: column;
        align-items: center;
        /* justify-content: space-between; */
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked~.nav-btn {
        transform: translateX(0);
    }



    .nav-links {
        flex: initial;
        width: 100%;
    }

    .nav-links>ul {
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        opacity: 1;
        transform: translateY(15px);
    }

    .nav-link>a {
        line-height: 1;
        padding: 1.6rem 2rem;
        color: #fff;
    }

    .nav-link:hover>a {
        transform: scale(1);
        background-color: #002804;

    }

    .dropdown,
    .dropdown.second {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #002804;
        display: none;
    }

    .nav-link:hover>.dropdown,
    .dropdown-link:hover>.dropdown {
        display: block;
    }

    .nav-link:hover>a>i,
    .dropdown-link:hover>a>i {
        transform: rotate(360deg);
    }

    .dropdown-link>a {
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)) {
        border-bottom: none;
    }

    .arrow {
        z-index: 1;
        background-color: #69bde7;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow {
        background-color: #50a9d6;
    }

    .dropdown .dropdown .arrow {
        display: none;
    }

    .dropdown-link:hover>a {
        background-color: #3a91bd;
    }

    .dropdown-link:first-child:hover~.arrow {
        background-color: #50a9d6;
    }

    .nav-link>a>i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i {
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign {
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
        z-index: 1001;
    }
}


.menu2 {
    position: relative;
    flex: 1;
}

.dropdown2 {
    margin-right: 0;
    right: 0;
    position: absolute;
    text-align: left;
}

.icon-lang {
    width: 30px;
}

.doters-desktop {
    display: block;
    width: 100%;
}

.doters-mobile {
    display: none;
}

.spinner {
    display: flex;
    border-radius: 50px;
    border: 3px solid #212529;
    border-bottom-color: transparent;
    width: 20px;
    aspect-ratio: 1/1;
    animation: rotation .3s linear infinite;
}

.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
}

.modalDialog>div {
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

/* Botón de cierre */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    z-index: 1001;
    /* Asegúrate de que esté por encima del contenido */
}





.close:hover {
    background: #00d9ff;
}
















/* Ícono de Login */

#login-icon {
    display: flex;
    align-items: center;

    &:hover {
        background-color: white;
    }

    a {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        background-color: color-mix(in srgb,
                var(--gray-light) 70%,
                transparent);
        padding: 5px 10px;
        border-radius: 22px;
        transition: all 0.3s ease-in-out;
        border: 1px solid color-mix(in srgb,
                var(--gray-light) 70%,
                transparent);

        &:hover {
            cursor: pointer;
            background-color: white;
            transition: all 0.3s ease-in-out;
            border: 1px solid var(--gray-light);
        }
    }
}




/* Modal Base */
.ModalTravelPs {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}


/* Contenido del Modal */
.modal-content {
    padding: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 10% auto;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

/* Encabezado del Modal */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-logo {
    height: auto;
    aspect-ratio: auto;
    width: 100px;
}


.icono-travel {
    width: 25px;
    height: auto;
    aspect-ratio: auto;
}

.close {
    font-size: 24px;
    color: #333;
}

/* Títulos */
h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
}

/* Formularios */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-size: 1em;
    margin-bottom: 5px;
    color: #555;
}

input[type="email"],
input[type="password"] {
    width: calc(100% - 22px);
    /* Ajusta el tamaño del input para que tenga margen */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    /* Para incluir el padding en el width */
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #01ae42;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 auto;
}

button:hover {
    background-color: #003b41;
}

/* Mensaje */
.message {
    font-size: 1em;
    margin-top: 20px;
    color: red;
    /* Color predeterminado para mensajes de error */
}

/* Modal de Perfil */
#modalTravelPassLogueado .modal-content {
    text-align: center;
}

#user-name,
#user-balance {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

#logout-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #09915A;
    color: white;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#logout-link:hover {
    background-color: #c82333;
}



.doters-basic {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUwIiBoZWlnaHQ9IjE1MCIgdmlld0JveD0iMCAwIDI1IDI1IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGwtcnVsZT0ibm9uemVybyIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEyLjUgMjVDMTkuNDA0IDI1IDI1IDE5LjQwNCAyNSAxMi41UzE5LjQwNCAwIDEyLjUgMCAwIDUuNTk2IDAgMTIuNSA1LjU5NiAyNSAxMi41IDI1WiIgZmlsbD0iIzAwQUU0MiIvPjxwYXRoIGQ9Ik0xMi41IDE1LjYyNWEzLjEyNSAzLjEyNSAwIDEgMCA2LjI1IDBIMTIuNVoiIGZpbGw9IiNGRkYiLz48L2c+PC9zdmc+);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 15px;
    min-width: 15px;
    width: 15px;
}












.modal-header-travel {
    color: #fff;
    padding: 8px;
    width: 100%;
}




.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}



.btn-travel1 {
    background-color: #003a5f !important;
    color: #fff !important;
    border-radius: 50px;
    font-size: 15px;
    margin: 0 auto;
    padding: 8px;
}


.btn-travel2 {
    background-color: #003a5f !important;
    color: #fff !important;
    border-radius: 50px;
    font-size: 15px;
    margin: 0 auto;
    padding: 8px;
}












.modalDoters-container {
    text-align: center;
    align-content: center;
    flex: 1;
}

.modalHeader {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    background: #003b41;
    padding: 10px;
    border-radius: 12px 12px 0 0;
}

.modalHeader img {
    width: 100px;
    height: auto;
    aspect-ratio: auto;
}



.modalDoters-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}


.modalContenido {
    padding: 10px;
    text-align: center;
}

hr {
    margin: 20px 0;
}

.modalDoters-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 0px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 12px;
}

.modalDoters-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 0;
    padding: 0 10px;
}

.modalDoters-close:hover,
.modalDoters-close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}



.modalDoters-welcome-message {
    cursor: pointer;
    /* Cambiar a cursor pointer para el mensaje de bienvenida */
    font-size: 12px;
}






/* 
===========================
Empiezan Estilos de la seccion Destinos
============================
 */

.seccion-destinos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-destinos {
    width: 90%;
    margin: 10px 15px;
    padding: 10px;
    display: flex;
    justify-content: space-around;

}

.img {
    background-color: transparent;
    margin: 0px 30px;
    box-shadow: -12px 15px 5px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
}

.img img {
    width: 100%;
    border-radius: 25px;
}

/* 
===========================
Terminan Estilos de la seccion Destinos
============================
 */

/* 
===========================
Empiezan Estilos de la seccion Servicios
============================
 */

.titulo-1 {
    background-color: var(--blue-dark-color);
    padding: 10px 15px;
    text-align: center;
    color: #fff;
    font-size: 20px;

    .underline-part {
        position: relative;
        display: inline-block;
    }

    .underline-part::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 6px;
        background: var(--orange-dark-color);

        /* Forma trapecio rectángulo */
        clip-path: polygon(0% 0%,
                /* esquina superior izquierda */
                85% 0%,
                /* parte superior derecha inclinada */
                100% 100%,
                /* esquina inferior derecha */
                0% 100%
                /* esquina inferior izquierda */
            );
    }
}

.title-facturacion {
    margin: 30px 0px 20px 0px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;

}

.seccion-servicios {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-servicios {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 5px rgba(0, 0, 0, 0.4);
}

.container-servicios {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.img2 {
    width: 50%;
    padding: 10px;
    display: flex;
    justify-content: right;
}

.img2 img {
    width: 60%;
    margin-right: 40px;
}

.txt-servicios {
    width: 50%;
    padding: 5px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.txt-servicios p {
    margin-left: 30px;
    font-size: 30px;
}

.arrow-r {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 36px;
    padding-right: 80px;
    padding-bottom: 10px;
}

.arrow-r a {
    text-decoration: none;
    cursor: pointer;
}

.container-servicios2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.txt-servicios2 {
    width: 50%;
    padding: 5px;
    display: flex;
    justify-content: right;
    align-items: center;
}

.txt-servicios2 p {
    margin-right: 30px;
    font-size: 30px;
}

.img2-2 {
    width: 50%;
    padding: 10px;
    display: flex;
    justify-content: left;
}

.img2-2 img {
    width: 60%;
    margin-left: 40px;
}


/* 
===========================
Terminan Estilos de la seccion Servicios
============================
 */


/* 
===========================
Empiezan Estilos de la seccion Promociones
============================
 */

.seccion-promociones {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-promociones {
    /*     background-color: #7ba4ab; */
    width: 100%;
    display: flex;
    justify-content: center;
}

.img3 {
    width: 80%;
    text-align: center;
    padding: 20px;
}

.img3 img {
    width: 100%;
}

/* 
===========================
Terminan Estilos de la seccion Promociones
============================
 */


/* 
===========================
Empiezan Estilos de la seccion Promociones
============================
 */

.seccion-blog {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-blog {
    /*     background-color: #7ba4ab; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img4 {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.img4 img {
    width: 75%;
}

.title-blog {
    text-align: center;
}

.title-blog p {
    font-size: 20px;
}

.container-cards-blog {
    width: 100%;
    margin-top: 40px;
    gap: 40px;
    display: flex;
    justify-content: center;
}

.text-blog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 20px;
}

.text-blog img {
    width: 100%;
    box-shadow: -10px 10px 5px rgba(0, 0, 0, 0.4);
}

.text-blog h2 {
    margin-top: 15px;
}

.text-blog p {
    text-align: center;
    font-size: 20px;
}

/* 
===========================
Terminan Estilos de la seccion Promociones
============================
 */



/* 
===========================
Empiezan Estilos de la seccion Footer
============================
 */





.seccion-footer {
    /*     background-color: #7ba4ab; */
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-footer {
    background-color: var(--blue-dark-color);
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    color: #fff;
    gap: 20px;
}

.contacto-rss {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-footer img {
    width: 180px;
    margin-bottom: 15px;
}

.ico-rss {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ico-rss>a {
    font-size: 1.2rem;
}

.avisos-footer {
    width: 20%;
    font-size: 12px;
    text-align: center;
}

.derechos-reservados {
    background-color: var(--orange-dark-color);
    width: 100%;
    height: auto;
    padding: 15px;
    text-align: center;
    color: #fff;
}


.ico-rss a img {
    width: 80%;
}

/* 
===========================
Terminan Estilos de la seccion Footer
============================
 */

my-card-section {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

my-card {
    border-radius: 8px;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}



my-card a img {
    width: 65%;
    max-width: 100%;
    height: auto;
    background-color: transparent;
    margin: 0px 30px;
    box-shadow: -12px 15px 5px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    transition: all 0.5s ease-in-out;

    &:hover {
        transform: scale(0.97);
        transition: all 0.5s ease-in-out;
    }
}
















@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}







@media screen and (min-width: 1441px) {

    .logo a img {
        width: 200px;
    }

    .nav-link>a {
        font-size: .95rem;

    }
}


@media screen and (max-width: 992px) {
    .container-footer {
        flex-direction: column;
        gap: 30px;
    }

    .contacto-rss,
    .avisos-footer {
        width: 100%;
    }
}




@media screen and (max-width: 769px) {


    ul {
        list-style: none;
        width: 100%;
    }


    .nav-link>a {
        line-height: 1;
        padding: 0.8rem 2rem;
        color: #fff;
    }


    .dropdown-link>a {

        font-size: 0.8rem;

    }


    .dropdown-link>a {
        background-color: transparent;
        color: #fff;
        padding: 1rem 2rem;
        line-height: 1;
    }


    .doters-desktop {
        display: none;
    }

    .doters-mobile {
        display: block;
        width: 100%;
    }


    .log-sign {
        justify-content: center;
    }


    .menu2 {
        display: none;
    }

    .dropdown2 {
        width: 100%;
    }


    .link-menu-mobile {
        display: block;
    }

}




@media screen and (max-width: 768px) {


    .reservamos-search .search-button.contrast-text {
        color: #eee !important;
        background-color: var(--orange-color);
    }




}

@media screen and (max-width: 576px) {
    .just-text {
        font-size: 4.5vw;
    }
}


@media screen and (max-width: 430px) {

    body {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 0.75rem;
    }


    image-carousel {
        display: none;

    }

    /* --- MENÚ Y SUBMENÚ DE EJEMPLO --- */
    .menu-principal {
        background: #0C3D5C;
        color: white;
        padding: 10px;
        position: relative;
        z-index: 1000;
        /* la capa más alta */
    }

    .menu-principal ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .menu-principal li {
        display: inline-block;
        position: relative;
        padding: 10px 20px;
        cursor: pointer;
    }

    .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #145a84;
        list-style: none;
        width: 180px;
        z-index: 1001;
    }

    .menu-principal li:hover .submenu {
        display: block;
    }

    .carousel-button {
        z-index: 2;
    }

    .carousel-button.prev {
        left: 10px;
    }

    .carousel-button.next {
        right: 10px;
    }

    .carousel-button:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .container-footer {
        padding: 20px;
    }
}







/* Destinos */

.banner-fijo {
    display: block;
    margin: 0 auto;
    width: 100%;
}


.banner-fijo picture img {
    margin: 0 auto;
    width: 100%;
}


.colum1 {
    padding: 2px 10px;
    color: #fff;
    width: 60%;
    position: relative;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    background: #007708;
    text-align: left;
}

.tablas {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.colum2 h4 {
    text-align: center;
}

.colum2 {
    text-align: left;
    background: #ffffff;
    padding: 2px;
    color: #000;
    width: 100%;
    position: relative;
    display: block;
    border-radius: 5px;
    border: 1px solid #007708;
    border-bottom: 2px solid #007708;
    margin: 20px;
    text-align: left;
}

.colum2 img {
    padding: 0px 10px;
}

.styled-table {
    border-bottom: 1px solid #007708;

}


.colum3 {
    color: #000;
    width: 60%;
    position: relative;
    display: block;
    margin: 0 auto;
    font-size: 28px;
}


.colum-vacio {
    color: #000;
    width: 60%;
    position: relative;
    display: block;
    margin: 0 auto;
}



.seccion-contenido-tarifas {
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}


.colum-rutas {
    background: #fff;
    padding: 2px;
    color: #000;
    width: 90%;
    position: relative;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #007708;
}


.colum-precios {
    padding: 2px;
    color: #fff;
    width: 60%;
    position: relative;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    background: #007708;
}


.colum-table {
    padding: 2px;
    color: #fff;
    width: 100%;
    position: relative;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    background: #007708;
    font-size: 20px;
    margin: 20px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.tabla-center {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.colum2-table {
    padding: 2px;
    width: 100%;
    position: relative;
    display: block;
    align-items: center;
    margin: 0 auto;
    border-radius: 5px;
    font-size: 14px;
}

table,
th,
td {
    width: 100%;
}

.temporal-header {
    width: 100%;
    height: 100px;
    background-color: #00123f;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
        width: 200px;
        height: auto;
        aspect-ratio: auto;
        margin: 10px 0px;
    }
}

.advertise {
    width: 100%;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-area: 20px;
    margin: auto;
    margin-top: 100px;

    @media screen and (max-width: 992px) {
        flex-direction: column;
        margin-top: 0px;
    }

    .message {
        width: 60%;

        .tittle {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 50px;
            font-weight: bold;
            margin-bottom: 50px;
            color: #00123f;
            text-align: center;
            font-family: 'Prompt-SemiBoldItalic', sans-serif;

            @media screen and (max-width: 992px) {
                font-size: 30px;
                margin-bottom: 20px;
            }
        }

        .description {
            font-size: 30px;
            color: #00123f;
            font-family: 'Prompt-SemiBoldItalic', sans-serif;

            @media screen and (max-width: 992px) {
                font-size: 15px;
            }
        }
    }

    img {
        width: 30%;

        @media screen and (max-width: 992px) {
            width: 70%;
            margin-top: 50px;
        }
    }
}

.temporal-footer {
    width: 100%;
    height: 50px;
    background-color: var(--orange-dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;

    span {
        color: #fff;
        font-size: 15px;

    }
}

.gho-terms {
    padding: 60px 20px;
    background: #f9fafb;
}

.gho-terms__container {
    max-width: 900px;
    margin: 0 auto;
}

.gho-terms__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gho-terms__subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gho-terms__section {
    margin-bottom: 35px;
}

.gho-terms__section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    border-left: 4px solid #ff7a00;
    padding-left: 10px;
}

.gho-terms__subsection {
    margin-top: 15px;
}

.gho-terms__subsection-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.gho-terms__text {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 10px;
    color: #444;
}

.gho-terms__list {
    padding-left: 20px;
}

.gho-terms__list li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

/*
th, td {
  border: 1px solid black;
    text-align: justify;
    font-size: 14px;
}

*/