/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

h2 {
    color: #ff8c00;
    font-size: 39px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

.text-nc {
    color: #ff8c00;
}

p, section li {
    color: #8E8E8E;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

a {
    text-decoration: none;
    transition: .3s all;
}

.container {
    max-width: 1123px;
}

.btn-primary {
    background-color: #FF8C00;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 35px;
    transition: .3s all;
}
.btn-primary:hover {
    background-color: #FF9F2A;
}

ul.socials {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 13px; 
}

header#topbar {
    color: #fff;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    transition: .3s all;

    & .top {
        /* background-color: #d57500; */
        backdrop-filter: blur(30px);
        padding: 13px 0;
        transition: .3s all;

        & .telefonos {
            gap: 40px;
            font-size: 14px;
        }

    }
    & nav.igation {
        /* background-color: #ff8c00; */
        backdrop-filter: blur(5px);
        padding: 18px 0;
        border-top: solid 1px rgba(255, 255, 255, 0.5);
        box-shadow: 0px 25px 30px -30px rgb(0, 0, 0, .6);
        transition: .3s all;
        
        & ul {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 0;

            & li {
                list-style: none;

                & a {
                    color: #fff;
                    font-size: 15px;
                    font-weight: 700;
                    text-transform: uppercase;
                }
                & a:hover, a.active {
                    color: #FF8C00;
                    /* opacity: .6; */
                }
            }
            & .idioma {
                display: flex;
                align-items: center;
                gap: 8px;
                cursor: pointer;
                position: relative;
                padding: 5px 0px;

                & span {
                    font-size: 21px;
                    font-weight: 400;
                }

                .dropdown {
                    position: absolute;
                    background: #fff;
                    border-radius: 20px;
                    padding: 10px 20px;
                    top: 40px;
                    right: 0;
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    display: none;
                    transition: .3s all;
                    animation: rotateMenuIn 400ms ease-in-out forwards;
                    transform-origin: top center;

                    & li a {
                        display: flex;
                        flex-direction: row;
                        gap: 8px;
                        color: #006950;
                        align-items: center;


                    }
                    & li {
                        opacity: 0.35;
                        transition: .3s all;
                    }
                    & li:hover {
                        opacity: 1;
                    }
                }

                .bandera {
                    border-radius: 50%;
                    width: 23px;
                    height: 23px;
                    object-fit: cover;
                }
            }
            .idioma:hover .dropdown {
                display: flex;
            }
            .idioma:not(:hover) .dropdown {
                display: flex;
                animation: rotateMenuOut 400ms ease-in-out forwards;
            }
        }
    }
}
header#topbar.sticky .top {
    background-color: rgb(213, 117, 0, 1);
}
header#topbar.sticky nav.igation {
    background-color: rgb(255, 140, 0, 1);
    border-top: none;

    & ul li {
        & a.active, a:hover {
            color: #fff;
            opacity: .6;
        }
        
    } 
}

@keyframes rotateMenuIn {
    0% {
        transform: rotateX(-90deg)
    }
    70% {
        transform: rotateX(20deg) 
    }
    100% {
        transform: rotateX(0deg)
    }
}
@keyframes rotateMenuOut {
    0% {
        transform: rotateX(0deg)
    }
    50% {
        transform: rotateX(20deg) 
    }
    100% {
        transform: rotateX(-90deg) 
    }
}

section.hero {
    width: 100%;
    height: 100vh;
    /* background-image: url('/img/herobg.jpg'); */
    background-size: cover;
    position: relative;
    overflow: hidden;

    & .interior {
        position: absolute;
        bottom: 50px;
        width: max-content;
        text-align: center;
        z-index: 2;
        left: 50%;
        transform: translateX(-50%);

        & .texto {
            margin-bottom: 73px;

            & h1 {
                font-size: 42px;
                font-style: normal;
                font-weight: 700;
                line-height: 67px;
                color: #fff;
                text-transform: uppercase;
            }

            & span.secondary {
                font-size: 37px;
                font-style: italic;
                font-weight: 300;
                margin-bottom: 31px;
                color: #fff;
            }
        }
    }

    & .video-container {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }
    
    & .video-container iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200%; /* Aumenta el ancho del video para que sobrepase los bordes del iframe */
        height: 200%; /* Aumenta la altura del video para que sobrepase los bordes del iframe */
        transform: translate(-50%, -50%);
    }

    & .sliderhero {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        & .slide {
            width: 100%;
            height: 100vh;
            background-image: url('/img/slider/s1.jpg');
            background-position: center;
            background-size: cover;
        }
        & .slide::before {
            content: ' ';
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgb(0, 0, 0, .75) 100%);
            z-index: 2;
        }
    }

}
/* section.hero::before {
    content: ' ';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 600px;
    background: linear-gradient(180deg, rgba(0, 68, 52, 0.00) 0%, #000 100%);
    z-index: 2;
} */

section.travelnav {
    background: #ff8c00;
    padding: 58px 0 31px;

    & .item {
        background: #fff;
        padding: 48px 0 35px;
        border-radius: 19px;
        width: 100%;
        text-align: center;
        position: relative;
        transition: .3s all;

        & img {
            margin-bottom: 10px;
        }

        & h2 {
            color: #006950;
            font-size: 23px;
            font-weight: 700;
            line-height: 24px;
            margin-bottom: 0;
        }
        
        & a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    }
    & .item:hover {
        transform: scale(1.05);
    }

    & .enlaces {
        margin-top: 28px;
        display: flex;
        justify-content: center;
        gap: 56px;

        & a {
            color: #fff;
            font-size: 18px;
        }
    }
}

section.travelnav .row {
    transition: .3s all;
}
section.travelnav .row:hover .item {
    opacity: .5;
}
section.travelnav .row .item:hover {
    opacity: 1;
}

section.white {
    width: 100%;
    padding: 90px 0;
}

.lista {
    color: #8E8E8E;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
    padding-left: 40px;

    & li {
        margin-bottom: 18px;
        list-style: none;
        position: relative;

        & strong {
            color: #FF8C00;
        }       
    }
    & li:before {
        content: url('/img/lista_bullet.svg');
        position: absolute;
        left: -40px;
        top: 50%;
        width: 24px;
        height: 24px;
        transform: translateY(-50%);
    }
}

section.video {
    width: 100%;
    text-align: center;
    
    & .verde {
        background:#313131;
        padding: 90px 0 150px;

        & h2, p {
            color: #fff;
        }
    }

    & iframe {
        margin-top: -127px;
        width: 100%;
        max-width: 668px;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

section.vacaciones {
    position: relative;
    & .lista li:before {
        top: 2px;
        transform: none;
    }
}
section.vacaciones::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-image: url('/img/vacaciones.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


p.action {
    color: #FF8C00;
    font-size: 21px;
    
    & strong {
        font-size: 26px;
        line-height: 36px;
    }
}

section.brands {
    padding: 90px 0;
    & img {
        opacity: 0.4;
        width: 100%;
        max-width: 125px;
        transition: 0.4s;
    }
    & img:hover {
        opacity: 1;
        transform: scale(1.1);
    }
}

footer {
    
    & .info {
        background: #ff8c00;
        padding: 58px 0;
    }
    & h2 {
        font-size: 21px;
        color: #fff;
        margin-bottom: 15px;
    }
    & p {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 142.857% */
        color: #fff;
    }
    & a {
        color: #fff;
    }
    & a:hover {
        opacity: .6;
    }
    
    & .lista {
        font-size: 15px;
        padding-left: 25px;
        & li {
            margin-bottom: 10px;
        }
        & li:before {
            transform: translateY(-50%) scale(0.6);
            left: -27px;
            filter: brightness(0) invert();
        }
        & a:hover {
            padding-left: 5px;
        }
    }
    & .legal {
        background: #d57500;
        color: #F9B563;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        padding: 33px 0;
    }

}


section.titulo {
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 375px 0 80px;
    position: relative;
    background-image: url(/img/herobg.jpg);
    background-position: center;
    background-size: cover;

    & h1 {
        font-size: 43px;
        font-style: normal;
        font-weight: 700;
        line-height: 67px; /* 155.814% */
    }

    & p {
        font-size: 19px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        color: #fff;
    }

    & .bc {
        text-transform: uppercase;
        font-size: 14px;

        & span {
            color: #FF8C00;
        }

        & a {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }
    }
}
section.titulo:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .6) 100%);
}

.article {
    & h2 {
        color: #FF8C00;
        font-size: 29px;
        font-style: normal;
        font-weight: 700;
        margin-bottom: 10px;
    }
    & p {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 120% */
    }
}
.s110 {
    height: 110px;
    width: 100%;
}

.staff {
    text-align: center;
    max-width: 250px;
    margin: 0 auto;

    & img {
        border-radius: 50%;
        margin-bottom:20px
    }
    h2 {
        color:#FF8C00;
        font-size: 23px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px; /* 121.739% */
        margin-bottom: 10px;
    }
    .cargo {
        color: #87BBAE;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
        text-transform: uppercase;
    }
}

section.green {
    background-color: #313131;
    padding: 90px 0;
    
    & h2 {
        color: #fff;
    }
    & p {
        color: #fff;
    }
}


/* Custom BS accordion */
.accordion-button {
    font-weight: 500;
    font-size: 17px;
    color: #ff8c00;
    line-height: 23px;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #ff8c00;
}

/* Custom BS tabs */
.nav-link, .nav-link:hover {
    font-size: 13px;
    /* font-size: 20px; */
    color: #ccc;
}
.nav-tabs .nav-link.active {
    color: #ff8c00;
}

/* Efecto de typing en principal */
#typed-text {
    font-size: 24px;
    font-family: 'Arial', sans-serif;
}

#word {
    border-right: 2px solid #fff; /* Cursor efecto */
    white-space: nowrap;
    /* overflow: hidden; */
    display: inline-block;
}

.typing {
    animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #fff; }
}


/* TOURS */
.tourbox {
    background: #FFF;
    box-shadow: 0px 4px 35px 5px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 35px;
    transition: .3s all;

    & .imagen {
        aspect-ratio: 3 / 2;
        width: 100%;
        overflow: hidden;

        & img {
            width: 100%;
            aspect-ratio: 3 / 2;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease; /* Transición suave */
        }
    }
    & .disponibilidad {
        background: #FF8C00;
        color: #fff;
        padding: 8px;
        text-transform: uppercase;
        font-size: 13px;
        transition: .3s all;
    }
    & .contenido {
        padding: 12px 22px 40px;
        transition: .3s all;
        position: relative;
        & h3 {
            color: #FF8C00;
            font-size: 22px;
            font-style: normal;
            font-weight: 600;
            line-height: 27px;
        }
        & span.duracion {
            color: #D9D9D9;
            font-size: 13px;
            font-style: normal;
            font-weight: 600;
            line-height: 27px;
        }
        & p {
            font-size: 15px;
            line-height:20px;
        }
        & div.pricing {
            position: absolute;
            bottom: 15px;
            right: 20px;
            font-size: 11px;
            color: #D9D9D9;
            text-transform: uppercase;
            & span {
                font-size: 20px;
                font-weight: 600;
                color: #FF8C00;
            }
        }
    }
    & a {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
}
.tourbox:hover {
    box-shadow: 0px 4px 35px 5px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    & .contenido {
        background-color: #FF8C00;
        & h3, span.duracion, p, div.pricing, div.pricing span {
            color: #fff;
        }
    }
    & .disponibilidad {
        background: #ad5f00;
    }
    & .imagen {
        & img {
            transform: scale(1.1); /* Aumenta el tamaño un 10% */
        }
    }
}
.formulario {
    position: sticky;
    top: 0px
}
.tourform {
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.13);
    border-radius: 0 0 20px 20px;
    background: #fff;
    padding: 20px 20px 35px;

    & h2 {
        color: #FF8C00;
        text-align: center;
        font-size: 25px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
    }
}
.dimpacto {
    background-image: url('/img/slider/s2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
.dimpacto::before {
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 105, 81, 0.699);

}

/* CONTACTO */
section.contacto {
    & h2 {
        color: #FF8C00;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        margin-bottom: 5px;
    }
}

/* Navigation sticky */
header.sticky {
    position: fixed;
    width: 100%;
    z-index: 200;
    transition: .3s;
    box-shadow: 10px 13px 26px -16px rgba(0, 0, 0, 0.05);
    transition: all .3s ease 0s;
}

/* header.sticky .logo {
    max-width: 150px;
} */

header.sticky .navbar-toggler {
    margin-top: 0px;
}











/* Estilos para el navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ff8c00;
    padding: 10px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.navbar a.active {
    background-color:#fff;
    color: #ff6500;
    border-radius: 5px;
}

.navbar a:hover {
    background-color: #ff6500;
    color: #fff;
    border-radius: 5px;
}








.anchor {
    padding-top: 80px;
}
.tab-pane iframe {
    border: 0;
    width: 315px !important;
    margin: 15px auto 0 !important;
}

.ic {
    height: 15px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(52%) sepia(82%) saturate(784%) hue-rotate(357deg) brightness(98%) contrast(108%);
}