@media (min-width: 995px) {

    .mobile-menu {
        display: none;
    }

    /* RESET Y BOX-SIZING */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }


    @font-face {
        font-family: 'Poppins SemiBold';
        src: url('../assets/fonts/Poppins-SemiBold.woff') format('woff');
        font-weight: 600;
        font-style: normal;
    }



    html {
        overflow-y: scroll;
        /* Reservar espacio del scroll SIEMPRE */
        scrollbar-width: none;
        /* Firefox */
    }

    html::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari y Edge */
    }

    .menu-toggle {
        display: none;
    }

    /* Esto oculta la barra de scroll, pero mantiene el scroll funcional */
    body {
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE y Edge */
    }

    body::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari y Opera */
    }


    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .idioma {
        display: flex;
        align-items: center;
        padding: 6px;
        cursor: pointer;
    }

    .idioma:hover {
        background-color: #cce0ff;
        border-radius: 5px;
    }

    .promo-banner {
        display: none;
    }

    /* HEADER */
    header {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        /* Ajusta en pantallas pequeñas */
        align-items: center;
        margin-left: 15px;
        margin-right: 15px;
        padding: 5px;
    }

    .header-wrapper {
        border-bottom: 2px solid #ccc;
    }


    .logo {

        width: 10%;
    }

    .logo img {
        max-width: 45%;
        height: auto;
        cursor: pointer;
    }

    .lang-currency,
    .user-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: lighter;
    }

    .head-options {
        padding: 6px;
    }

    .head-options:hover {
        background-color: #cce0ff;
        border-radius: 5px;
    }

    .head-options {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 8px 12px;
        text-decoration: none;
        color: #333;
        background: transparent;
        transition: background 0.3s;
        cursor: pointer;
        font-size: 14px;
        flex-wrap: nowrap;
    }

    .head-options.active {
        background: #e2eeff;
        border-radius: 5px;
    }

    .head-options.active:hover {
        background-color: #cce0ff;
    }

    .head-options i {
        transition: transform 0.3s ease;
    }


    .dropdown-menu {
        position: absolute;
        margin-top: 4px;
        background: white;
        border: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        min-width: 120px;
        z-index: 1000;
        text-wrap: nowrap;
    }

    .dropdown-menu {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .dropdown-menu.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        z-index: 2001;
    }

    .dropdown-menu.hide {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 8px;
        /* Espaciado entre el ícono y el texto */
        padding: 12px 8px;
        color: #333;
        text-decoration: none;
        white-space: nowrap;
    }

    .dropdown-menu a img {
        object-fit: contain;
    }

    .dropdown-menu a:hover {
        background: #f5f5f5;
    }

    .dropdown-container {
        position: relative;
        display: inline-block;
    }

    .dropdown-container {
        position: relative;
        display: inline-block;
    }

    .dropdown-menu-phone {
        position: absolute;
        margin-top: 6px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        width: 430px;
        z-index: 1000;
        font-family: sans-serif;
        overflow: hidden;
    }

    .dropdown-menu-phone {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .dropdown-menu-phone.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        z-index: 2001;
    }

    .dropdown-menu-phone.hide {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }


    .dropdown-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 16px;
        gap: 15px 20px;
    }

    .dropdown-content div {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }

    .dropdown-content .city {
        font-weight: 600;
    }

    .dropdown-footer {
        background-color: #eef5ff;
        padding: 12px 16px;
        text-align: center;
        font-size: 14px;
        color: #1a73e8;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .dropdown-footer img {
        width: 18px;
        height: 18px;
    }

    .head-options .chevron {
        transition: transform 0.3s ease;
    }

    .head-options.active .chevron {
        transform: rotate(180deg);
    }

    .flag {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
    }


    .lang-currency a,
    .user-actions a {
        text-decoration: none;
        color: #333;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: lighter;
    }

    .login-btn {
        background-color: #EAF2FF;
        border-radius: 5px;
        padding: 5px 10px;
        color: #0056b3 !important;
        font-weight: bold;
        margin-left: 25px;
    }

    /* NAV */
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: left !important;
        gap: 30px;
        margin-top: 10px;
        left: 0;
        margin-left: 140px;
        margin-right: auto;
    }

    nav a {
        text-decoration: none;
        color: #333;
        display: flex;
        align-items: center;
        gap: 5px;
        position: relative;
    }

    nav a:hover {
        color: #0056b3;
    }

    .fa-plane:before,
    .fa-bed:before,
    .fa-luggage-cart:before,
    .fa-discord:before {
        color: #003b98;
    }

    .fa-fire::before {
        color: red;
    }

    /* Línea azul permanente en el primer enlace */
    nav a:first-child {
        border-bottom: 3px solid #007bff;
    }

    /* Línea animada */
    nav a::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        bottom: 0;
        left: 0;
        background-color: #007bff;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease-in-out;
        border-radius: 15px;
    }

    nav a:hover::after {
        transform: scaleX(1);
        border-radius: 15px;
    }

    /* Quita la animación en el primero (ya tiene línea) */
    nav a:first-child::after {
        display: none;
    }

    /* TÍTULO */
    .supra-container h1 {

        padding-top: 20px;
        text-align: right;
        /* Para que quede a la derecha, como en la imagen */
        padding-right: 160px;
        font-size: calc(1.0375rem + 1.95vw);
        color: #fff;
        /* Ajusta el color si deseas */
        font-weight: 400;
        position: relative;
        z-index: 1;
        text-shadow: 0 calc(0.5px* 4) calc(1px* 4) hsla(210, 18%, 4%, 0.14), 0 calc(0.5px* 4) calc(1px* 4) hsla(210, 18%, 4%, 0.14);
    }

    .supra-container {
        position: relative;

        border-bottom: 2px solid #ccc;
    }

    /* fondo blanco a la izquierda */
    /* Parte blanca (izquierda + parte del centro en diagonal) */
    .supra-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background: white;
        clip-path: polygon(0 0, 40% 0, 55% 100%, 0 100%);
        z-index: 0;
    }

    /* Parte azul degradada (derecha) */
    .supra-container::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, #0461b2, #1d87da);
        clip-path: polygon(40% 0, 100% 0, 100% 100%, 55% 100%);
        z-index: 0;
    }



    /* Contenedor blanco */
    .container {
        max-width: 900px;
        margin: 50px auto 0 auto;
        background-color: #fff;
        padding: 30px 30px;
        border-radius: 5px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
        /* Cambiado para sombra uniforme */
        overflow: visible;
        position: relative;
        z-index: 2000;
    }

    /* Fila principal: radio-buttons + campos + botón */
    .form-row {
        display: flex;
        align-items: center;
        /* Alineados en la misma fila */
        justify-content: space-between;
        gap: 20px;
    }

    /* RADIO BUTTONS */
    .radio-buttons {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Estilo de los botones de radio */
    .radio-buttons input[type="radio"] {
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #007bff;
        /* Borde azul */
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        display: inline-block;
        margin-right: 8px;
        background-color: white;
        /* Fondo blanco inicial */
    }

    .radio-buttons input[type="radio"]:checked {
        background-color: white;
        /* Fondo blanco entre el borde y el centro */
        border-color: #007bff;
        /* Borde azul */
        box-shadow: inset 0 0 0 2px white, inset 0 0 0 8px #007bff;
        /* Espacio blanco y centro azul */
    }

    .radio-buttons label {
        font-size: 16px;
        color: #333;
        cursor: pointer;
        margin-right: 20px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Campos con label encima y línea debajo */
    .field {
        display: flex;
        flex-direction: column;
        /* Label arriba, input abajo */
        min-width: 120px;
        /* Ajusta si necesitas más ancho */
    }

    /* Label del campo */
    .field-label {
        font-size: 14px;
        color: #333;
        margin-bottom: 4px;
        font-weight: normal;

    }

    /* Contenedor del input e ícono */
    .field-content {
        position: relative;
        /* Asegura que el dropdown se posicione relativo a este contenedor */
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 5px;
    }

    /* La línea debajo del input */
    .field-underline {
        width: 100%;
        height: 1px;
        background-color: #ccc;
    }

    /* El ícono a la izquierda */
    .field-content i {
        font-size: 12px;
        color: rgb(52, 52, 52);
    }

    /* El input en sí */
    .field-content input {
        border: none;
        outline: none;
        font-size: 14px;
        background: none;
        width: 100%;
    }

    /* BOTÓN BUSCAR */
    button.buscar {
        background-color: #007bff;
        color: #fff;
        padding: 10px 25px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    button.buscar:hover {
        background-color: #0056b3;
    }

    /* SUBTÍTULO */
    .subtitulo {
        display: flex;
        text-align: right;
        justify-content: end;
        margin-right: 160px;
        margin-top: 20px;
        color: #fff;
        position: relative;
        z-index: 1;
        text-shadow: 0 calc(0.5px* 4) calc(1px* 4) hsla(210, 18%, 4%, 0.14), 0 calc(0.5px* 4) calc(1px* 4) hsla(210, 18%, 4%, 0.14);
    }


    .field-content {
        position: relative;
        /* Asegura que el dropdown se posicione relativo a este contenedor */
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        overflow: visible;
        /* Permite que el contenido se desborde */
        cursor: auto;
    }

    .day.disabled {
        pointer-events: none;
        opacity: 0.5;
        /* opcional: indicar visualmente que está inactivo */
        color: #999;
        /* opcional: tono más claro */
    }


    .dropdown {
        position: absolute;
        z-index: 1001;
        top: calc(100% + 5px);
        left: 0;
        width: 400px;
        /* Ancho suficiente para evitar scroll horizontal */
        background: white;
        border: 1px solid #ccc;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 5px;
        max-height: 400px;
        /* Altura máxima */
        overflow-y: auto;
        /* Scroll vertical si hay demasiadas ciudades */
        display: flex;
        flex-direction: column;
        /* Alinea las ciudades en una columna */
        gap: 10px;
        /* Espaciado entre las ciudades */
    }

    .dropdown h4 {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* Separa el código a la derecha */
        padding: 10px;
        cursor: pointer;
        transition: background 0.3s;
        font-size: 14px;
        border-radius: 5px;
        background: #fff;
    }

    .dropdown-item:hover {
        background: #f0f0f0;
    }

    .dropdown-item img {
        width: 70px;
        height: 50px;
        border-radius: 5px;
        object-fit: cover;
    }

    .dropdown-item .city-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex-grow: 1;
        /* Ocupa el espacio disponible */
        margin-left: 10px;
        /* Espaciado entre la imagen y el texto */
    }

    .dropdown-item .city-info span {
        font-size: 16px;
        color: #666;
    }

    .dropdown-item .city-info small {
        font-size: 12px;
        color: #666;
    }

    .dropdown-item .city-code {
        font-size: 16px;
        color: #666;
        margin-left: 20px;
        /* Espaciado entre el texto y el código */
    }


    .dropdown-item:hover {
        background: #f0f0f0;
        /* Fondo más claro al hacer hover */
    }

    .dropdown-item:hover .city-info span,
    .dropdown-item:hover .city-code {
        color: #333;
        /* Color más oscuro */
        font-weight: bold;
        /* Negrita */
    }

    .hidden {
        display: none !important;
    }

    .calendar {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border: 1px solid #ccc;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 8px;
        padding: 10px;
        display: flex;
        gap: 20px;
    }

    .calendar .month {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .calendar .month-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .calendar .month-header button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: #007bff;
    }

    .calendar .days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
        text-align: center;
    }

    .calendar .day {
        padding: 5px;
        cursor: pointer;

        transition: background 0.3s;
        will-change: transform;
    }

    .calendar .day:hover {
        background: #1d87da;
        border-radius: 50% 0% 0% 50%;
    }

    .calendar .day:hover:not(.start):not(.end) {
        background: #f0f0f0;
    }



    /* 5) El “in-range” (rango entre start y hover) lo desactivamos o le damos fondo claro */
    .calendar .day.in-range {
        background: #e6f3ff;
        color: #333;
        border-radius: 0;
    }

    .calendar .day.temp-range {
        transform: none !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: #1d87da !important;
    }





    .calendar .day.start {
        position: relative;
        background: #007bff;
        color: white;
        border-radius: 50% 0% 0% 50%;

    }

    .calendar .day.end {
        position: relative;
        background: #007bff;
        color: white;
        border-radius: 0 50% 50% 0;
    }

    .calendar .day.start::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -5px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-color: transparent transparent transparent #007bff !important;
    }

    .calendar .day.end::after {
        left: -5px;
        border-width: 5px 5px 5px 0;
        border-color: transparent #007bff transparent transparent;
    }

    /* Hover para la segunda fecha (con la puntica hacia la izquierda) */
    .calendar .day.end::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -5px;
        /* Cambia la posición hacia la izquierda */
        border-width: 5px 5px 5px 0;
        border-style: solid;
        border-color: transparent #007bff transparent transparent;
    }



    /* Tooltip para los días de diferencia */
    .tooltip {
        position: absolute;
        /* no toques top/left aquí, lo calculas en JS */
        transform: translateX(-50%);
        background: #fff;
        color: #555;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        line-height: 1;
        white-space: nowrap;
        display: none;
        z-index: 2000;
        pointer-events: none;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* borde exterior de la flechita */
    .tooltip::before {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid rgba(0, 0, 0, 0.1);
    }

    /* relleno interior blanco de la flechita */
    .tooltip::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #fff;
    }




    /* Hover dinámico para la última fecha del rango (simula la clase .end) */
    /* 2) Punto final provisional (derecha) */
    .calendar .day.temp-range.hover-end {
        background: #007bff !important;
        color: #fff !important;
        border-radius: 0 50% 50% 0 !important;
    }

    /* Puntica hacia la izquierda para la última fecha del rango en hover */
    .calendar .day.temp-range.hover-end::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -5px;
        /* Posición hacia la izquierda */
        border-width: 5px 5px 5px 0;
        border-style: solid;
        border-color: transparent #007bff transparent transparent;
    }

    /* 3) Día en medio (hover) */
    .calendar .day.temp-range:not(.hover-end):not(.start) {
        background: #fff;
        color: #333;
        position: relative;
        border-radius: 0;
    }

    .calendar .day.temp-range:not(.hover-end) {
        background: #007bff !important;
        color: #fff;
        border-radius: 50% 0 0 50% !important;
        transform: none !important;
        margin: 0 !important;
    }

    /* 2) Quitar redondeo en los intermedios */
    .calendar .day.temp-range:not(.start):not(.hover-end) {
        background: #e6f3ff !important;
        color: #333 !important;
        border-radius: 0 !important;
        transform: none !important;
        margin: 0 !important;
    }

    /* 4) Poniendo de nuevo las esquinas redondeadas en los extremos */
    /* extremo izquierdo */
    .calendar .day.temp-range.start {
        border-radius: 50% 0 0 50%;
    }

    .calendar .day.temp-range:not(.start) {
        transform: translateX(-5px);
        /* asegúrate de resetear cualquier margin, por si acaso */
        margin: 0;
        /* y deshabilita transiciones en ese transform */
        transition: none;
    }

    /* punta derecha */
    .calendar .day.temp-range:not(.hover-end):not(.start)::after {
        border-width: 10px 0 10px 8px;
        border-color: transparent transparent transparent #fff;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Hover dinámico para la última fecha del rango (simula la clase .end) */




    /* Solo el día exacto con punta (hover-end) */

    .calendar .day.hover-end::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -5px;
        transform: translateY(-50%);
        border-width: 5px 5px 5px 0;
        border-style: solid;
        border-color: transparent #007bff transparent transparent;
    }

    .calendar .day:hover:not(.start):not(.end):not(.temp-range) {
        background: #007bff;
    }



    .passenger-dropdown {
        position: absolute;
        top: 100%;
        /* Justo debajo del input */
        left: 0;
        width: 284px;
        /* Ajusta el ancho */
        background: white;
        border: 1px solid #ccc;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 12px;
        /* Bordes más cuadrados */
        padding: 20px;
        font-family: 'Poppins SemiBold', sans-serif;
        font-size: 14px;
        color: #333;
        cursor: auto;
    }

    .passenger-dropdown h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #333;
        text-align: left;
    }

    .passenger-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .passenger-controls {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-end;
        /* Alinea los botones a la derecha */
    }

    .passenger-controls {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-end;
        /* Alinea los botones a la derecha */
    }

    .passenger-controls button {
        background: #f5f5f5;
        color: #333;
        border: 1px solid #ccc;
        border-radius: 50%;
        /* Hace que el botón sea perfectamente redondo */
        width: 44px;
        /* Asegúrate de que el ancho sea igual a la altura */
        height: 44px;
        /* Asegúrate de que la altura sea igual al ancho */
        cursor: pointer;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    }

    .passenger-controls button:hover {
        background: #e4e5e6;
        box-shadow: 0 calc(0.5px* 8) calc(1px* 8) hsla(210, 18%, 4%, 0.14), 0 calc(0.5px* 8) calc(1px* 8) hsla(210, 18%, 4%, 0.14);
    }

    .passenger-controls span {
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }

    #child-ages {
        margin-top: 10px;
    }

    .child-age-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .child-age-row span {
        font-size: 14px;
        color: #333;
    }

    .child-age-row select {
        width: 100%;
        max-width: 150px;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        color: #333;
        background: #fff;
    }

    .passenger-actions {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .passenger-actions button {
        background: #007bff;
        color: white;
        border: none;
        border-radius: 8px;
        /* Bordes más cuadrados */
        padding: 12px 20px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        transition: background 0.3s, box-shadow 0.3s;
        width: 100%;
        /* Botón centrado y ancho */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        /* Sombra inicial */
    }

    .passenger-actions button:hover {
        background: #0056b3;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        /* Más sombra al hacer hover */
    }

    #close-passenger-dropdown {
        position: absolute;
        top: 10px;
        right: 10px;
        background: transparent;
        color: #333;
        font-size: 18px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        transition: color 0.3s;
    }

    #close-passenger-dropdown:hover {
        color: #007bff;
    }

    .passenger-limit-message {
        display: none;
        /* Oculto por defecto */
        background: #f8f9fa;
        /* Fondo gris claro */
        border: 1px solid #007bff;
        /* Borde azul */
        border-radius: 8px;
        padding: 10px;
        margin-top: 15px;
        font-size: 14px;
        color: #333;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .passenger-limit-message i {
        color: #007bff;
        /* Ícono azul */
        font-size: 18px;
    }

    .passenger-limit-message span {
        font-size: 14px;
        color: #333;
        line-height: 1.5;
    }



    dialog {
        border: none;
        border-radius: 10px;
        padding: 20px;
        width: 90%;
        max-width: 800px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        margin: auto;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .modal-header h2 {
        margin: 0;
    }

    .close-btn {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .section {
        margin: 20px 0;
    }

    .option {
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 10px;
        margin: 5px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .option.active {
        background-color: #e6f4ff;
        border-color: #0077cc;
    }

    .apply-btn {
        background-color: #d33;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 1rem;
        cursor: pointer;
        float: right;
        margin-top: 20px;
    }

 /* Mensajes de error */
.error-message {
  color: red;
  font-size: 55%;
  margin-top: 4px;
  display: none; /* Oculto por defecto */
}

/* Línea roja debajo del campo con error */
.field-underline.error {
  background-color: red;
  height: 1px;
  transition: background-color 0.3s ease;
}

/* Estilo para inputs con error */
input.error {
  border: none; /* Quita el borde si lo tiene */
  outline: none; /* Quita el contorno */
}
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    /* Asegura que esté encima de todo */
    pointer-events: auto;
    /* Permite bloquear interacciones debajo */
}

#loader p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 10px;
}

#loader img {
    width: 50px;
    height: 50px;
}

/* Media query para pantallas pequeñas */
@media (max-width: 600px) {
    #loader p {
        font-size: 16px;
    }

    #loader img {
        width: 40px;
        height: 40px;
    }
}

/* Spinner */
#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Fondo negro con baja opacidad */
    display: none;
    /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.spinner-logo {
    width: 64px;
    height: 64px;
    background-image: url('../assets/loader-logo.svg');
    /* Ruta del SVG */
    background-repeat: no-repeat;
    background-size: contain;
    animation: rotatepulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    /* Ajusta la animación */
}

@keyframes rotatepulse {
    0% {
        transform: rotate(0deg) scale(1);
        /* Tamaño normal, inicio */
    }

    30% {
        transform: rotate(90deg) scale(0.5);
        /* Encogido y empieza a girar rápido */
    }

    50% {
        transform: rotate(720deg) scale(0.5);
        /* Encogido al máximo y girando rápido */
    }

    100% {
        transform: rotate(1440deg) scale(1);
        /* Vuelve al tamaño normal y rotación completa */
    }
}