/*
* SECTIONS
*/
.main{
    padding-bottom: 2.25rem;
}

.cards--container{
    padding-inline: 14px;
}

.cards--container h3{
    font-size: 1.375rem;
    text-align: center;
}








/*
* SPECIAL SECTIONS
*/
.sp-initial-content{
    padding-top: 40px;
    padding-bottom: 50px;
    padding-inline: 14px;
}









/* 
*  MODAL -- COVER
*/
.cover{
    display: none; /* Hidden by default */

    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: #fff;
}

.d-none{
    display: none;
}

.show{
    display: flex !important;
}

.cover--main{
    width: 100%;

    background-color: #1b1b1b;
}

.cover--header{
    display: flex;

    color:white;

    align-items: baseline;
    justify-content: space-between;

    margin-block: 5px;
    padding-inline: 20px;
}

.cover--header img{
    width: 16px;
}

.cover--body{
    background-color: #fff;
    height: 100%;

    border-top-right-radius: 15px;
    border-top-left-radius: 15px;

    padding-top: 25px;
    padding-inline: 15px;
}

.search--input--container{
    position: relative;
}

.search--input{
    margin: 0;
    margin-bottom: 12px;
    padding: 21px 16px 7px 48px;
    background-color: rgb(255 255 255 / 0%);
    border-style: none;
    border-bottom: 2px solid rgb(255 255 255 / 0);

    border-radius: .25rem;
    border: 1px solid #d9d9d9;

    box-sizing: border-box;

    min-height: 52px;

    text-align: start;
    width: 100%;
}

.search--input:focus{
    outline: none;
    border: 1px solid #d9d9d9;
    border-bottom: 2px solid #34c759;
}

.search--input--icon{
    position: absolute;
    z-index: 999;
    top: 15px;
    left: 15px;

    width: 18px;
}

.search--input--label{
    position: absolute;
    z-index: 998;
    top: 8px;
    left: 47px;

    font-size: 11px;
    color:#7f7f7f;

    width: 20px;
}

.destination{
    box-sizing: border-box;
    padding: 16px 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.destination:hover{
    background-color: #f5f5f5;
}

.destination--row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.dest-city{
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.dest-code{
    font-size: 13px;
    font-weight: 700;
    color: #006FAD;
    background-color: #e8f4fb;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.04em;
}

.dest-name{
    font-size: 13px;
    color: #555;
    margin-bottom: 2px;
}

.dest-country{
    font-size: 12px;
    color: #999;
}





/*
* FORMS
*/
.passenger-selector{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;

    justify-content: space-between;
}

.passenger-btn{
    min-width: 95px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;

    justify-content: space-between;
}

.passenger-btn img{
    width: 25px;
    height: 25px;
}

.passenger-btn h1{
    font-size: 26px;
}






/*
* INLINE DROPDOWNS (airport, dates, passengers)
*/
.inline-dropdown {
    display: none;
    position: fixed;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
    z-index: 9000;
    overflow: hidden;
}

.inline-dropdown.show {
    display: block !important;
}

.inline-dropdown--search {
    padding: 12px 14px 8px;
    border-bottom: 1px solid #eee;
}

.inline-dropdown--label {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.inline-search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    background: #f7f7f7;
}

.inline-search-input:focus {
    border-color: #34c759;
    background: #fff;
}

.inline-destinations-list {
    max-height: 280px;
    overflow-y: auto;
}

.passengers-panel {
    /* positioned dynamically via JS */
}

.pax-header {
    padding: 16px 16px 12px;
    border-bottom: 1px solid #eee;
}

.pax-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.pax-row .text-normal {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 2px;
}

.pax-row .text-thin {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.pax-confirm {
    padding: 12px 16px;
}

/*
* MAIN-CARD
*/
.main--card {
    padding-top: 12px;
    padding-bottom: 12px; /* Ajusta para reducir la altura */
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    width: 85%; /* Ancho centrado */
    margin: 0 auto;
    min-height: 10px; /* Ajusta según la altura mínima deseada */
}

.main--card--header {
    display: flex;
    justify-content: left;
    padding-left: 30px; /* Añade espacio a la izquierda */
}

.main--card--header form{

    display: flex;
    justify-content: space-between;
    min-width: 14.6875rem;
    box-sizing: border-box;
    padding: 10px 18px;
    background-color: #fff;
    border-radius: 6.25rem;
    box-shadow: 0 0.125rem 0.75rem rgba(27,27,27,.15); 
}

.main--card--header form label{
    font-size: .875rem;
    
}

.main--card--body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-top: 10px;
    padding: 0;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    overflow: visible;
}

/* MAIN-INPUT-GROUP */

.main--input-group {
    position: relative;
    display: flex;
    flex-direction: row;
    flex: 1;
    border: none;
    border-radius: 0;
}

.main--input-group .fd-icon{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    max-width: 100%;
    max-height: 100%;
}

/* Selector sections inside the horizontal bar */
#main-destinations-selector {
    display: flex;
    flex: 3;
    min-width: 0;
    border-right: 1px solid #e0e0e0;
}

#main-dates-selector {
    display: flex;
    flex: 2;
    min-width: 0;
    border-right: 1px solid #e0e0e0;
}

#main-dates-selector .main--input-group {
    margin-top: 0 !important;
}

#main-passengers-selector {
    flex: 0 0 auto;
    min-width: 140px;
    display: flex;
    align-items: stretch;
    border-right: 1px solid #e0e0e0;
}

.btn-ig {
    position: relative;
    margin: 0;
    padding: 22px 16px 6px 48px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: start;
    width: 100%;
    transition: background-color 0.15s;
}

.btn-ig:hover {
    background-color: #f7f7f7;
}

.btn-ig:first-child:hover {
    border-radius: 50px 0 0 50px;
}

#btn-passengers {
    padding: 22px 20px 6px 48px !important;
    white-space: nowrap;
}

.btn-ig-icon {
    position: absolute;
    z-index: 999;
    top: 30px;
    transform: translateY(-50%);
    left: 14px;
    width: 20px;
}

.btn-ig-label {
    position: absolute;
    z-index: 998;
    top: 8px;
    left: 47px;
    font-size: 11px;
    color: #7f7f7f;
    white-space: nowrap;
}

.btn-ig-text {
    font-weight: 700;
    font-size: 14px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pax-chevron {
    font-size: 10px;
    color: #555;
    margin-left: 3px;
    vertical-align: baseline;
}

/* Search button inside the bar */
#search-flight {
    flex: 0 0 auto !important;
    margin: 6px 6px 6px 6px !important;
    padding: 0 24px !important;
    height: auto !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    width: auto !important;
    align-self: center;
}

/* MAIN-RADIOS */

.radio-wrapper {
    display: inline-block;
    cursor: pointer;

}

.radio-circle {
    width: 16px;
    height: 16px;
    border: 1px solid #7f7f7f;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
}

.radio-circle:hover{
    border: 1px solid #34c759;
}

.radio-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff; /* Color verde */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; /* Se oculta por defecto */
}

.radio-label {
    padding-left: 5px;
    vertical-align: middle;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .radio-circle {
    border-color: #34c759; /* Color verde cuando está seleccionado */
    opacity: 1;
}

input[type="radio"]:checked ~ .radio-label {
    font-weight: 700;
}

input[type="radio"]:checked + .radio-circle .radio-dot {
    border: 5px solid #34c759;
    opacity: 1; /* Se muestra cuando está seleccionado */
}







/* MAIN-BANNER */
.main--banner {
    box-sizing: border-box;
    padding-inline: 16px;
    padding-block: 16px;
    width: 100%;
}

.main--banner--img {
    max-width: 100%;
    background-image: none;
    background: linear-gradient(135deg,#03091a 0%,#0b1f4a 45%,#0d3a6b 100%);
    height: 305px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Estilo para escritorio */
@media (min-width: 768px) {
    .main--banner--imgs {
        max-width: 100%
        background-image: url("../assets/svg/es-s-home-co-rutas-0-km.gif");
        background-size: cover; /* Ajustar imagen para cubrir el contenedor */
        height: 305px; /* Altura fija */
        background-position: center center; /* Centrar la imagen */
        background-repeat: no-repeat;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
}

.main--banner--body {
    padding: 24px 14px 16px;
    position: relative;
    background: linear-gradient(180deg, #F00 50.84%, rgb(194, 3, 127) 100%);
    color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Estilos específicos para dispositivos móviles */
@media (max-width: 67px) {
    .main--banner {
        display: block;
    }

    .main--banner--img {
        width: 100%;
        border-radius: 15px 15px 0 0;
    }

    .main--banner--body {
        width: 50%;
        border-radius: 0 0 15px 15px;
    }
}

/* Estilos específicos para pantallas grandes (escritorio) */
@media (min-width: 768px) {
    .main--banner {
        display: flex;
        align-items: left;
        background-image: url("../assets/svg/vueloswe.jp");
        height: 330px;
        max-width: 1100px;
        margin: 0 auto;
        padding-inline: 0;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    }

    .main--banner--img {
        width: 58%;
        height: 100%;
        border-radius: 0;
    }

    .main--banner--body {
        width: 42%;
        height: 100%;
        border-radius: 0;
        padding: 28px 24px;
        box-sizing: border-box;
    }
}

.main--banner--body h5{
    margin: 0;
    font-size: 500.0rem;
    line-height: 1;
    display: block;
}

.main--banner--body p{
    font-size: .75rem;
    font-weight: 400;
    line-height: 1,325.;

    margin-bottom: 10px;
}
.main--banner--body img{
    position: absolute;

    top: 25px;
    right: 10px;

    width: 62px;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px auto;
    max-width: 800px;
  }
  .gallery-item {
    width: calc(33.33% - 20px);
    margin: 10px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }

/*
* CARD-TRAVEL
*/

.contenedor-principal {display:flex;flex-wrap:wrap;justify-content:center;margin:0 auto;max-width:1200px;}.contenedor {flex-basis:calc(33.33% - 20px);background-color:lightblue;margin:10px;padding:20px;box-sizing:border-box;border:1px solid #ccc;}

.card--travel{
    height: 15rem;
    border-radius: 20px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.14);
}

.card--travel::before{

    content: '';
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 138px;
    background: linear-gradient(bottom, transparent rgba(248, 249, 248, 0.75));
}

.card--travel--text{
    text-align: left;
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #f6f3f3;
}
    
.card--travel--text h4{
    margin: 0;
    font-size: 2rem;
    
}

.card--travel--text p{
    margin: 0;
    font-size: .875rem;
}

.card--bg--per{
    background-image: url('../assets/svg/vuelos-a-santa-marta-colombia-parque-tayrona.webp');
    background-position: center;
    background-size: cover;

    position: left;
    overflow: hidden; /* Oculta el exceso del pseudo-elemento */
    

    /* box-shadow: inset -11px -6px 16px 20px rgba(0, 0, 0, 0.5); */
}
.card--bg--per::before {
    content: '';
    position: absolute;
    top:58%; /* Para que el efecto empiece desde la mitad */
    left: 0;
    width: 100%;
    height: 50%; /* Cubre la mitad inferior */
    background-color: rgba(255, 255, 255, 0.5); /* Fondo blanco semi-transparente */
    backdrop-filter: blur(10px); /* Efecto borroso */
    pointer-events: none; /* Evitar que interfiera con otros elementos */
}

.card--bg--bga{
    background-image: url('../assets/svg/vuelos-a-medellin-colombia-piedra-peñon-guatape.webp');
    background-position: center;
    background-size: cover;

    /* box-shadow: inset -1px -16px 16px 20px rgba(0, 0, 0, 0.5); */
}
.card--bg--bga::before {
    content: '';
    position: absolute;
    top: 58%; /* Para que el efecto empiece desde la mitad */
    left: 0;
    width: 100%;
    height: 50%; /* Cubre la mitad inferior */
    background-color: rgba(255, 255, 255, 0.5); /* Fondo blanco semi-transparente */
    backdrop-filter: blur(10px); /* Efecto borroso */
    pointer-events: none; /* Evitar que interfiera con otros elementos */
}

.card--bg--med {
    background-image: url('../assets/svg/vueloscartagena.webp');
    background-position: center;
    background-size: cover;
    position: relative;
}

.card--bg--med::before {
    content: '';
    position: absolute;
    top: 58%; /* Para que el efecto empiece desde la mitad */
    left: 0;
    width: 100%;
    height: 50%; /* Cubre la mitad inferior */
    background-color: rgba(255, 255, 255, 0.5); /* Fondo blanco semi-transparente */
    backdrop-filter: blur(10px); /* Efecto borroso */
    pointer-events: none; /* Evitar que interfiera con otros elementos */
}

    /* box-shadow: inset -1px -16px 16px 20px rgba(0, 0, 0, 0.5); */









/*
* NAVBAR
*/
.navbar{
    display: flex;
    flex-direction: row;
    align-items: baseline;

    padding:1px;
}

.navbar-hmenu{
    align-self: center;
}

.navbar--logo{
    display: flex;
    width: 100%;
    justify-content: left;
    align-items: center;
}

.navbar--logo img{
    width: 128px;
}







/*
* FORM
*/
.input-text-secondary{
    padding: 11px 49px;
    height: 26px;

    font-size: 1rem;

    border-radius: 100vh;
    border: 0;
}

.input-text-secondary:focus-visible{
    outline: none;
}




/*
* FORM-ICONS
*/
.-i-mail{
    background-image: url("../assets/svg/i-mail.png");
    background-repeat: no-repeat;
    background-position-x: 20px;
    background-position-y: center;
    background-size: 18px;
}






/*
* BUTTONS
*/
.btn{
    display: flex;
    align-items: center;
    justify-content: center;

    height: 3rem;
    padding: 0.625rem 1.375rem;

    cursor: pointer;
    
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    
    border-radius: 100vh;
    border-width: 2px;
    border-style: solid;
    
    transition: all 0.06s linear;
    text-transform: none;
}

.btn-black{
    background-color: #1b1b1b;
    padding-block: 24px;
    color:#ffffff;
}

.btn-black:hover{
    border-color: #494949;
    background-color: #494949;
    color:#ffffff;
}

.btn-red{
    border-color: red;
    background-color: red;
    color: #fff;
}

.btn-red:hover{
    border-color: #D90000;
    background-color: #D90000;
}






/*
* FOOTER
*/
.footer{
    display: flex;
    flex-direction: column;
    background-color: #111;
    color: white;
}

/* Franja superior: logo | redes | app */
.footer--top-strip{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 40px 24px;
}
.footer--top-left{ display:flex; flex-direction:column; }
.footer--top-center{ display:flex; flex-direction:column; align-items:center; }
.footer--top-right{ display:flex; flex-direction:column; align-items:flex-end; }

/* Botones de redes sociales */
.footer--social-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #ddd;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.footer--social-btn:hover{
    background: #e91d2c;
    border-color: #e91d2c;
    color: #fff;
}

/* Separador */
.footer--divider{
    height: 1px;
    background: #2a2a2a;
    margin-inline: 30px;
}

/* Grid de columnas */
.footer--main{
    padding-inline: 40px;
    padding-block: 32px;
}
.footer--grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
@media (max-width: 900px){
    .footer--grid{ grid-template-columns: repeat(2, 1fr); }
    .footer--top-strip{ justify-content:center; text-align:center; }
    .footer--top-right{ align-items:center; }
}
@media (max-width: 520px){
    .footer--grid{ grid-template-columns: 1fr; }
}

/* Título de columna */
.footer--col-title{
    font-size: 0.78em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f06830;
    margin: 0 0 14px;
}

/* Lista de links */
.footer--link-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer--link-list a{
    color: #aaa;
    text-decoration: none;
    font-size: 0.82em;
    transition: color 0.18s;
}
.footer--link-list a:hover{
    color: #fff;
}

/* Barra inferior */
.footer--end{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: #0a0a0a;
    font-size: 11px;
    color: #666;
}







/*
* MOBILE SEARCH BAR
*/
@media (max-width: 768px) {
    .main--card {
        width: 95%;
    }

    .main--card--body {
        flex-direction: column;
        border-radius: 16px;
        overflow: hidden;
    }

    #main-destinations-selector {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        flex-direction: column;
    }

    #main-destinations-selector .main--input-group {
        border-bottom: 1px solid #e0e0e0;
    }

    #main-destinations-selector .main--input-group:last-child {
        border-bottom: none;
    }

    #main-dates-selector {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    #main-passengers-selector {
        flex: none;
        min-width: unset;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .btn-ig {
        width: 100%;
        padding: 20px 16px 8px 48px;
        min-height: 58px;
    }

    #search-flight {
        margin: 10px 10px !important;
        width: calc(100% - 20px) !important;
        align-self: stretch !important;
    }

    .main--card--header {
        padding-left: 12px;
    }
}

/*
* TOOLKIT
*/
.loader{
    display: none; /* Hidden by default */

    justify-content: center;
    align-items: center;

    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: auto; /* Enable scroll if needed */
    background-color: #fff;
}

.loader img{
    width: 150px;
    height: 150px;
}

input[type="date"]{
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    min-height: 1.2em;
}

.sb-hidden{
    overflow-y: hidden;
}

.text-normal{
    font-size: 1.125rem;
}

.text-big{
    font-size: 18px;
}

.text-thin{
    font-size: 12px;
}

.bg-main-card{
    background: linear-gradient(180deg, #74bfd4 0%, #93cfe0 30%, #c2e4ef 65%, #e8f5f9 85%, #ffffff 100%);
}

.link-blue{
    color: #048fa0;
}

.w-100{
    width: 100%;
}

/* --- SIZING --- */
.vh-100{
    height: 100vh;
}

.mt-0{
    margin-top: 0;
}

.mt-1{
    margin-top: 5px;
}

.mt-2{
    margin-top: 12px;
}

.mt-3{
    margin-top: 20px;
}

.mt-4{
    margin-top: 25px;
}

.mt-5{
    margin-top: 35px;
}

.mb-0{
    margin-bottom: 0;
}

.mb-1{
    margin-bottom: 5px;
}

.mb-2{
    margin-bottom: 12px;
}

.mb-3{
    margin-bottom: 20px;
}

.mb-4{
    margin-bottom: 25px;
}

.mb-5{
    margin-bottom: 35px;
}





