/* ==========================
   VARIABLES
========================== */

body {
    margin: 0px;
}

:root{

    --color-white:#FFFFFF;
    --color-primary:#0078AE;

    --hero-height:530px;

    --container:1920px;

    --transition:.3s ease;

}
.container{
     width:min(1400px,92%);
    margin:0 auto;

    display:grid;

    grid-template-columns: 0.95fr 0.85fr;

    gap:28px;

    align-items:start;
}

/* ==========================
   HERO
========================== */

.trip-hero{

    position:relative;

    width:100%;

    height:var(--hero-height);

    overflow:hidden;

    background-image:
    url("../assets/img/formulario-solicita-tu-viaje/fondo-esqui.webp");

    background-position:center center;

    background-size:cover;

    background-repeat:no-repeat;
}

/* ligera capa superior */

.trip-hero__overlay{

    position:absolute;

    inset:0;

   
    pointer-events:none;
}

/* ==========================
   CONTENIDO
========================== */

.trip-hero__container{

    position:relative;

    height:100%;

    max-width:var(--container);

    margin:0 auto;
}

/* ==========================
   BOTÓN ATRÁS
========================== */

.trip-hero__back{

    position:absolute;

    left:92px;

    top:228px;

    width:30px;
    height:30px;

    border-radius:50%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--color-primary);

    text-decoration:none;

    box-shadow:
    0 4px 12px rgba(0,0,0,.12);

    transition:var(--transition);
}

.trip-hero__back div {
    width:30px;
    height:30px;
}

.trip-hero__back:hover{

    
    background:#B4EAFF;
    color: #003854;
}

.trip-hero__back img{

    width:32px;
    height:32px;
}

/* ==========================
   TEXTO
========================== */

.trip-hero__content{

    position:absolute;

    left:82px;

    bottom:28px;

    display:flex;
    flex-direction:column;
}

.trip-hero__label{

    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    /* T3-REGULAR */
    font-family: Kufam;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.trip-hero__title{

    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    /* T3-REGULAR */
    font-family: Kufam;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
 
}

@media (max-width:1024px){

    .trip-hero{

        height:420px;
    }

    .trip-hero__back{

        left:40px;
        top:180px;
    }
    .trip-hero__content{

        left:40px;
        bottom:25px;
    }

    .trip-hero__label{

        font-size:24px;
    }

    .trip-hero__title{

        font-size:48px;
    }

}

@media (max-width:768px){

    .trip-hero{

        height:260px;

        background-position:center;
    }

    .trip-hero__back{

        width:46px;
        height:46px;

        left:16px;
        top:110px;
    }

    .trip-hero__back svg{

        width:22px;
        height:22px;
    }

    .trip-hero__content{

        left:16px;
        bottom:16px;
    }

    .trip-hero__label{

        font-size:12px;

        margin-bottom:4px;
    }

    .trip-hero__title{

        font-size:22px;
    }

}





/*contenido..............................*/


.content-main{
    position: relative;
    padding: 24px 0 0px;
    background:  linear-gradient(0deg, #B4EAFF 0%, #007DAE 100%);

}
.trip-overview{

    position:relative;

    padding:24px 15px;


}

.trip-overview__container{

    width:min(100% - 50px, var(--container));

    margin-inline:auto;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trip-overview__title{

       color: #FFF;
        text-align: center;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
        /* T1-50 */
        font-family: Kufam;
        font-size: 50px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-transform: uppercase;
}

.trip-overview__title span{

    display:block;
}
.trip-overview__top{
    width: 70%;

    margin-top:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;
}



.formulario-img img{
    display:block;

    width:100%;

    height:315px;

    object-fit:cover;

    border-radius:10px;
}

/*=========================================
FORMULARIO
=========================================*/

.trip-form{
    
    width:100%;

    max-width:none;

    height:100%;
    justify-content:flex-start;

    background:#F2F2F2;

    border-radius:10px;

    padding:34px 34px 40px;

    display:flex;

    flex-direction:column;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

}

/*----------------------------------*/

.trip-form__title{

    margin:0 0 28px;

    color:#003854;

    font-family:Kufam,sans-serif;

    font-size:48px;

    font-weight:900;

    text-transform:uppercase;
    line-height:1;
    margin-bottom:28px;
}

/*----------------------------------*/

.trip-form__group{

    margin-bottom:14px;

}

/*----------------------------------*/

.trip-form input,
.trip-form textarea{

    width:100%;

    border:none;

    outline:none;

    background:#FFFFFF;

    border-radius:8px;

    padding:13px 18px;

    font-family:Kufam,sans-serif;

    font-size:18px;

    color:#003854;

    box-sizing:border-box;

    transition:.25s;

}

/*----------------------------------*/

.trip-form textarea{

    min-height:95px;
    font-size: 25px;
    resize:none;

}

/*----------------------------------*/

.trip-form input::placeholder,
.trip-form textarea::placeholder{

    color:#9E9E9E;

}

/*----------------------------------*/

.trip-form input:focus,
.trip-form textarea:focus{

    box-shadow:0 0 0 3px rgba(34,184,234,.25);

}

/*----------------------------------*/

.trip-form__back{

    display:block;

    text-align:center;

   margin-top:18px;
    margin-bottom:28px;

    font-size:20px;

    font-weight:500;

    text-decoration:none;

    color:#003854;

    font-family:Kufam,sans-serif;

    transition:.25s;

}

.trip-form__back:hover{

    color:#22B8EA;

}

/*----------------------------------*/

/*=========================================
TABLET
=========================================*/

@media (max-width:1024px){

.trip-form{

    padding:28px;
    font-size: 25px;
    order: -1;
}

.trip-form__title{
    color: #00C3FF;
    font-size:46px;
}

.trip-form input{
    height: 70px;
    font-size: 25px;
}

}

/*=========================================
MÓVIL
=========================================*/

@media (max-width:768px){

.trip-form {

    padding:22px;
    font-size: 25px;
}

.trip-form__title{

    font-size:34px;

    margin-bottom:20px;

}

.trip-form input,
.trip-form textarea{

    padding:13px 14px;
    height: 70px;
    font-size: 25px;
   
}

.trip-form textarea{

    min-height:92px;
    font-size: 25px;

}

.trip-form__back{

    font-size:20px;

    margin:14px 0;

}

}

/*=========================================
ACCESIBILIDAD
=========================================*/

.sr-only{

    position:absolute;

    width:1px;

    height:1px;

    padding:0;

    margin:-1px;

    overflow:hidden;

    clip:rect(0,0,0,0);

    border:0;

}

.trip-overview__top h3 {
color: var(--Color, #EEEEF0);
/* T2 - 30 */
font-family: Kufam;
font-size: 25px;
font-style: normal;
font-weight: 500;
line-height: normal;
}


.trip-overview__cards{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-family: Kufam;

    width: 100%;
    gap:20px;
}



.payment-fragmented{
    line-height: 1;
    width: 95%;

    background:var(--color-primary-dark);

    border-radius:8px;

    color:white;

    padding: 10px;
}

.payment-fragmented h3{

    text-align:center;

    font-size:1.75rem;
}

.payment-fragmented ul{
    font-family: Kufam;
    font-size: 20px;
    list-style:none;
    margin-left: -30px;
}

.payment-fragmented li{

    display:flex;

    justify-content:space-between;

    margin-bottom:8px;
    
}

@media (max-width:768px){

    .trip-overview{

        padding:20px 0 40px;
    }

    .trip-overview__container{

        width:min(100% - 24px, 100%);
    }

    .trip-overview__title{

        font-size:2rem;
    }

    .trip-overview__top{

        margin-top:30px;
        gap:20px;
    }

    .trip-overview__destination{

        font-size:1.75rem;
    }

   

    .trip-overview__cards{

        grid-template-columns:1fr;
    }

    .card{

        min-height:auto;
    }

    .card__value{

        font-size:3rem;
    }

}

/*=====================================
FLECHAS GALERÍA
=====================================*/

.gallery-arrow{

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:64px;
    height:64px;

    border:none;
    border-radius:50%;

    background:#ffffff;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    z-index:100;

    box-shadow:0 4px 14px rgba(0,0,0,.18);

    transition:.25s;
}

.gallery-arrow:hover{

    transform:translateY(-50%) scale(1.08);
}

/* IZQUIERDA */

.gallery-arrow.prev{

    left:22px;
    right:auto;
}

/* DERECHA */

.gallery-arrow.next{

    right:22px;
    left:auto;
}

.gallery-arrow img{

    width:64px;
    height:64px;

    object-fit:contain;
}

.gallery-tabs{
       display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:-8px;
}
.gallery-tab{
    font-family: kufam;
    height:60px;

    border:none;
    border-radius:8px;

    color:#fff;

    font-size:22px;
    font-weight:700;

    cursor:pointer;

    transition:.25s ease;

    display:flex;
    justify-content:center;
    align-items:center;
}

.gallery-tab.active{

    text-decoration:underline;
    
}


.gallery-tab[data-gallery="estacion"]{

    background:#FF5C65;
}

.gallery-tab[data-gallery="estacion"]:hover{

    background:#B4EAFF;
    color: #003854;
}


.gallery-tab[data-gallery="hotel"]{

    background:#7A5AF8;
}
.gallery-tab[data-gallery="hotel"]:hover{

    background:#B4EAFF;
     color: #003854;
}


.gallery-tab[data-gallery="mapa"]{

    background:#19B8EA;
}
.gallery-tab[data-gallery="mapa"]:hover{

    background:#B4EAFF;
     color: #003854;
}

@media (max-width:1024px){

    .galeria,
    .itinerario{

        height:auto;
    }

    .gallery__viewer{

        height:560px;
        flex:none;
    }

}
@media (max-width:768px){

    .gallery__viewer{

        height:340px;
    }

    .itinerario{

        height:auto;
    }

    .itinerario__contenido{

        height:380px;
        flex:none;
    }

}


    /*==================================================
CONTACT CARD - MOBILE
==================================================*/

@media (max-width:768px){

    .contact-card{

        display:grid;

        flex-direction:row;
        grid-template-columns: 30px 4fr;
        text-align:left;

        padding:22px 18px;
    }

    .contact-card__icon{
        width: 30px;
        margin-bottom:18px;
    }

    .contact-card__icon img{
        width: 15%;
        width:72px;
    }

    .contact-card h3{
        font-size:12px;
    }

    .contact-card p{
        font-size:15px;
        line-height:1.5;
    }


    .contact-card-datos{

        width:100%;

        display:flex;

        justify-content:center;

        align-items:center;

        gap:10px;
    }

    .contact-card-datos img{

        width:18px;
    }

    .contact-card-datos a{

        font-size:15px;

        word-break:break-word;
    }

}



@media (max-width:768px){



    .trip-itinerary__title{

        font-size:28px;
    }

    .day-tab{

        min-width:68px;

        font-size:14px;

        height:40px;
    }

    .trip-itinerary__content{

        height:380px;
    }

    .gallery-tab{

        font-size:14px;

        height:42px;
    }

}
/* SERVICIOS COMIDA  CONTACTO ---------------------*/
:root{

    --bg-top:#c5edff;
    --bg-bottom:#b5e7fb;

    --white:#f5f5f5;

    --blue:#1ab9ea;
    --dark:#043553;

    --radius:8px;

    --shadow:
    0 2px 6px rgba(0,0,0,.08);

}

.trip-info{
    
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 20px;
    width: 90%;
}


.trip-info__grid{
    height: fit-content;

    width:100%;
    max-width:none;
    font-family: kufam;
    display:flex;
    flex-direction: column;
    margin-bottom:24px;
    
}


.info-card{
    gap: 14px;

    background:#f2f2f2;

    border-radius:8px;

    padding:18px 20px;

    box-shadow:var(--shadow);
    color: #003854;
}

.info-com-cond{
    width: 100%;
    height: auto;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.info-card h2{

    color:var(--blue);

    font-size:30px;

    margin-bottom:5px;

    font-weight:800;
}
.info-card h3{

    color:#1ab9ea;

    font-size:30px;

    margin-top:10px;
}
.info-card ul,
.info-card ol{

    padding-left:20px;

    line-height:1.5;
}


.contact-card{
    color: var(--12, #B4EAFF);
    font-family: Kufam;
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    background:#062f49;

    color:#B4EAFF;

    border-radius:8px;

    padding:34px;

    display:flex;

    flex-direction:column;
    .grupo-superior, .grupo-inferior{
         display:flex;
        flex-direction:column;
    }
    .grupo-inferior{
        gap: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .grupo-superior{
        


        .sub-grupo {
            flex-direction: column;
            gap: 5px;
            p{
                text-align: center;
            }
        }
    }

}

.contact-card__icon{

    text-align:center;

    margin-bottom:25px;
}

.contact-card__icon img{

    max-width:170px;
    height:auto;
}
.contact-card h3{
    font-weight: 600;
    font-size:38px;
    color:#B4EAFF;
    text-align: center;
}
.contact-card hr{
    border:none;
    border-top:2px solid #B4EAFF;
}
.contact-card a{
    display: flex;
    color:#B4EAFF;
    text-decoration:none;
    font-size:22px;
}
.contact-card-datos{
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-card-datos img{
    width: 25px;
}


.btn-condiciones{
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center;
    
    text-transform:lowercase;
    font-family: Kufam;
    width:100%;
    height:58px;
    line-height: 20px; /* 133.333% */
    gap:10px;
    border:none;
    border-radius:6px;
    background:#003854;
    color: #fff;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
}
.btn-condiciones img{
    width: 25px;
    height: auto;
}
.btn-condiciones:hover{
   background:#0078AE;
   color: #fff;
}


@media (max-width:1024px){

    .trip-info__grid{
        font-size:25px;
        grid-template-columns:
        1fr
        1fr;
    }

   

}
@media (max-width:768px){

    .trip-info{

        padding:20px 0 40px;
        font-size:25px;
    }

    .trip-info__grid{

        grid-template-columns:1fr;
    }

    .info-card h2{

        font-size:25px;
    }
}
    /*==================================================
CONTACT CARD - TABLET
==================================================*/

@media (max-width:1024px){

    .contact-card{
        flex-direction: row;
        padding: 18px 8px;
        gap: 11px;
        hr {
            display:none;
        }            
        .grupo-superior{
            flex-direction: row;
            padding-right: 5px;
            gap: 5px;
            max-width: 40%;
            align-items: center;
            border-right: solid 1px #00C3FF;
        }
        .grupo-inferior{
        flex-direction: column;
        justify-content: space-evenly;
 
        }

        .contact-card__icon{
            width: auto;
            margin:0;
        }
        .contact-card__icon img{
            min-width: 30px;
            max-width: 40px;
            height: auto;
        }

        .contact-card-datos a{
            font-size:15px;
        }
        p{
            margin:0;
            font-size:15px;
            line-height:1.2;
        }      
        h3{

        margin:0px;
        font-size:22px;
        line-height:30px;
        text-align: center;
        }          
    

        .contact-card-datos{

            display:flex;
            justify-content: flex-start;
            gap:12px;
            }

    .contact-card-datos img{

        width:22px;

        margin:0;
    }
}
}


/* =========================================
TABLET
========================================= */


/* =========================================
MOBILE
========================================= */

@media (max-width:768px){

    .hero-propuesta{

        height:420px;
    }

    .navbar__container{

        padding:18px 20px;
    }

    .navbar__logo img{

        width:90px;
    }

 

    .hero-propuesta__text span{

        font-size:34px;
    }
}

@media (max-width:1024px){

.container{

    grid-template-columns:1fr;

    gap:26px;

    width:min(760px,94%);

}

}
@media (max-width:768px){

.container{

    width:92%;

    gap:18px;

}

}

