body{
    font-family:'Montserrat', sans-serif;
    background:#f8f5ef;
    color:#222;
}

html{
    scroll-behavior:smooth;
}

h1,h2,h3,h4{
    font-family:'Merriweather', serif;
}

.footer{
    background:#111;
    color:#ccc;
    padding:30px 0;
}

/* =========================
   HERO
========================= */

/* =========================
   HERO VIDEO
========================= */

.hero{

    position:relative;

    min-height:100vh;

    overflow:hidden;

    display:flex;
    align-items:center;

    color:white;
}

/* VIDEO */

.hero-video{

    position:absolute;

    top:50%;
    left:50%;

    min-width:100%;
    min-height:100%;

    width:auto;
    height:auto;

    transform:
        translate(-50%, -50%);

    object-fit:cover;

    z-index:0;

    filter:
    brightness(.75)
    contrast(1.1)
    saturate(1.05);
}

/* OVERLAY */

.overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,.78),
            rgba(0,0,0,.4)
        );

    z-index:1;
}

/* CONTENT */

.hero-content{

    position:relative;

    z-index:2;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero{
        text-align:center;
    }

    .hero-title{
        font-size:3.5rem;
    }

    .hero-description{
        margin:auto;
        margin-bottom:35px;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:2.5rem;
    }

    .hero-buttons .btn{
        width:100%;
        margin-bottom:15px;
    }

    .hero-buttons .btn.ms-3{
        margin-left:0 !important;
    }

}

/* =========================
   FEATURES
========================= */

.features-section{
    background:#f8f5ef;
    padding-top:100px;
    padding-bottom:100px;
}

.section-mini-title{
    color:#c49b63;
    letter-spacing:3px;
    font-size:.9rem;
    font-weight:700;
}

.section-title-main{
    font-size:3rem;
    line-height:1.2;
    margin-top:15px;
    font-weight:700;
}

.section-description{
    font-size:1.1rem;
    line-height:1.9;
    color:#555;
}

.feature-card{

    background:rgba(255,255,255,.7);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.3);

    padding:45px 35px;

    border-radius:24px;

    height:100%;

    transition:.4s;

    position:relative;

    overflow:hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-number{
    font-size:4rem;
    font-weight:700;
    color:rgba(196,155,99,.15);
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:20px;
    font-size:1.5rem;
}

.feature-card p{
    color:#666;
    line-height:1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .section-title-main{
        font-size:2.2rem;
    }

}
/* =========================
   GALLERY
========================= */

.gallery-section{
    background:#111;
}

.gallery-item{
    position:relative;
    overflow:hidden;
}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

    filter:
        brightness(.88)
        contrast(1.05)
        saturate(1.1);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* TAMAÑOS */

.large-image{
    height:800px;
}

.small-image{
    height:400px;
}

.horizontal-image{
    height:400px;
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.1)
    );

    color:white;
}

.gallery-overlay span{
    letter-spacing:3px;
    font-size:.8rem;
    font-weight:700;
    color:#ffc107;
    margin-bottom:10px;
}

.gallery-overlay h2{
    font-size:2.5rem;
    max-width:500px;
    line-height:1.2;
}

.gallery-overlay h3{
    font-size:1.5rem;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .large-image{
        height:500px;
    }

    .small-image,
    .horizontal-image{
        height:300px;
    }

}

@media(max-width:768px){

    .gallery-overlay{
        padding:25px;
    }

    .gallery-overlay h2{
        font-size:1.8rem;
    }

    .gallery-overlay h3{
        font-size:1.2rem;
    }

}
/* =========================
   TESTIMONIALS
========================= */

.testimonials-section{
    padding:120px 0;
    background:#f8f5ef;
}

/* ARTICULO */

.editorial-article{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.editorial-image{
    height:450px;
    overflow:hidden;
}

.editorial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.editorial-content{
    padding:50px;
}

.editorial-category{
    color:#c49b63;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:3px;
}

.editorial-title{
    font-size:3rem;
    line-height:1.2;
    margin:25px 0;
}

.editorial-text{
    font-size:1.1rem;
    line-height:2;
    color:#555;
    margin-bottom:25px;
}

.editorial-author{
    margin-top:40px;
    border-top:1px solid #ddd;
    padding-top:25px;
}

.editorial-author h5{
    margin-bottom:5px;
}

.editorial-author span{
    color:#777;
}

/* MINI CARDS */

.mini-editorial{

    background:rgba(255,255,255,.6);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.4);

    padding:35px;

    border-radius:24px;

    margin-bottom:30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s;
}

.mini-editorial:hover{
    transform:translateY(-5px);
}

.mini-category{
    color:#c49b63;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:3px;
}

.mini-editorial h3{
    font-size:1.7rem;
    line-height:1.4;
    margin:20px 0;
}

.mini-editorial p{
    color:#666;
    line-height:1.8;
}

.mini-author{
    margin-top:25px;
    font-weight:600;
    color:#222;
}

/* DARK CARD */

.dark-card{
    background:#1c1c1c;
    color:white;
}

.dark-card p{
    color:#ddd;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .editorial-title{
        font-size:2.2rem;
    }

    .editorial-content{
        padding:35px;
    }

}

@media(max-width:768px){

    .editorial-title{
        font-size:1.8rem;
    }

    .editorial-image{
        height:300px;
    }

}

/* =========================
   NAVBAR
========================= */

.custom-navbar{
    padding:25px 0;
    transition:all .4s ease;
    background:transparent;
}

.custom-navbar.scrolled{

    background:rgba(15,15,15,.65);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    padding:15px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.logo-text{
    font-size:1.7rem;
    font-weight:700;
    color:white;
    font-family:'Merriweather', serif;
}

.navbar-nav .nav-link{
    color:white !important;
    margin-left:20px;
    font-weight:500;
    position:relative;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#ffc107;
    transition:.3s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

.navbar-toggler{
    border:none;
}

/* MOBILE */

@media(max-width:992px){

    .custom-navbar{
        background:#111;
        padding:15px 0;
    }

    .navbar-collapse{
        background:#111;
        padding:20px;
        border-radius:15px;
        margin-top:15px;
    }

    .navbar-nav .nav-link{
        margin-left:0;
        margin-bottom:15px;
    }

}

/* =========================
   STATS
========================= */

.stats-section{
    position:relative;
    padding:140px 0;

    background:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1600')
    center center/cover no-repeat;

    overflow:hidden;
}

.stats-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.75);
}

.stat-box{
    position:relative;
    z-index:2;
    color:white;
}

.stat-box h2{
    font-size:4rem;
    font-weight:700;
    color:#ffc107;
    margin-bottom:20px;
}

.stat-box p{
    font-size:1.1rem;
    letter-spacing:1px;
    color:#f1f1f1;
}

/* =========================
   PREMIUM CTA
========================= */

.premium-cta{
    position:relative;

    padding:180px 0;

    background:url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1800')
    center center/cover fixed no-repeat;

    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.7);
}

.cta-mini-title{
    color:#ffc107;
    letter-spacing:4px;
    font-size:.9rem;
    font-weight:700;
}

.cta-title{
    font-size:4.5rem;
    line-height:1.1;
    color:white;
    margin:30px 0;
}

.cta-description{
    max-width:750px;
    margin:auto;

    color:#f1f1f1;

    font-size:1.2rem;
    line-height:2;
}

.cta-buttons{
    margin-top:50px;
}

.cta-buttons .btn{
    border-radius:50px;
    padding-top:15px;
    padding-bottom:15px;

    transition:.3s;
}

.cta-buttons .btn:hover{
    transform:translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .cta-title{
        font-size:3rem;
    }

}

@media(max-width:768px){

    .premium-cta{
        background-attachment:scroll;
        padding:120px 0;
    }

    .cta-title{
        font-size:2.2rem;
    }

    .cta-buttons .btn{
        width:100%;
        margin-bottom:15px;
    }

    .cta-buttons .btn.ms-3{
        margin-left:0 !important;
    }

}

/* =========================
   FOOTER
========================= */

.main-footer{
    background:#0f0f0f;
    color:white;

    padding-top:100px;
    padding-bottom:40px;
}

.footer-logo{
    font-size:2rem;
    margin-bottom:25px;
}

.footer-description{
    color:#aaa;
    line-height:1.9;
    max-width:350px;
}

.footer-title{
    margin-bottom:25px;
    font-size:1.1rem;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#aaa;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffc107;
}

/* FORM */

.footer-form{
    display:flex;
    margin-top:25px;
}

.footer-form input{
    flex:1;
    border:none;
    outline:none;

    padding:15px 20px;

    background:#1c1c1c;
    color:white;

    border-radius:50px 0 0 50px;
}

.footer-form button{
    border:none;

    padding:15px 25px;

    background:#ffc107;
    color:#111;

    font-weight:600;

    border-radius:0 50px 50px 0;

    transition:.3s;
}

.footer-form button:hover{
    background:white;
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);

    margin-top:70px;
    padding-top:30px;

    text-align:center;
}

.footer-bottom p{
    color:#777;
    margin:0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .footer-form{
        flex-direction:column;
    }

    .footer-form input{
        border-radius:50px;
        margin-bottom:15px;
    }

    .footer-form button{
        border-radius:50px;
    }

}

.footer-legal{

    display:flex;

    gap:18px;

    margin-top:10px;

    flex-wrap:wrap;

}

.footer-legal a{

    color:#94a3b8;

    text-decoration:none;

    font-size:14px;

    transition:.25s;

}

.footer-legal a:hover{

    color:white;

}

/* =========================
   ROUTES
========================= */

.routes-section{
    padding:120px 0;
    background:white;
}

.route-card{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:25px;

    overflow:hidden;

    box-shadow:
        0 8px 32px rgba(0,0,0,.08);

    transition:.45s;
}

.route-card:hover{

    transform:
        translateY(-12px)
        scale(1.01);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}

.route-image{
    height:320px;
    overflow:hidden;
}

.route-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .6s ease;
}

.route-card:hover img{
    transform:scale(1.08);
}

.route-content{
    padding:35px;
}

.route-country{
    color:#c49b63;

    letter-spacing:3px;
    font-size:.8rem;
    font-weight:700;
}

.route-content h3{
    margin:20px 0;
    font-size:2rem;
}

.route-content p{
    color:#666;
    line-height:1.8;
}

.route-info{
    display:flex;
    justify-content:space-between;

    margin-top:25px;

    color:#888;
    font-size:.95rem;
}

/* CONTROLES */

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,.6);

    border-radius:50%;
    padding:20px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .route-content h3{
        font-size:1.6rem;
    }

}

/* =========================
   PREMIUM LIGHT EFFECT
========================= */

.feature-card::before,
.route-card::before,
.mini-editorial::before{

    content:'';

    position:absolute;

    top:-120px;
    left:-120px;

    width:220px;
    height:220px;

    background:rgba(255,255,255,.25);

    border-radius:50%;

    filter:blur(50px);

    opacity:0;

    transition:.5s;
}

.feature-card:hover::before,
.route-card:hover::before,
.mini-editorial:hover::before{

    opacity:1;
}

/* =========================
   LOADER
========================= */

#loader-wrapper{

    position:fixed;

    inset:0;

    width:100%;
    height:100vh;

    background:#0f0f0f;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

    overflow:hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

/* HIDE */

#loader-wrapper.fade-out{

    opacity:0;
    visibility:hidden;
}

/* CONTENT */

.loader-content{
    text-align:center;
}

/* LOGO */

.loader-logo{

    color:white;

    font-size:4rem;

    font-family:'Merriweather', serif;

    letter-spacing:2px;

    margin-bottom:30px;

    opacity:0;

    transform:translateY(30px);

    animation:
        loaderText 1.2s ease forwards;
}

/* LINE */

.loader-line{

    width:0;

    height:3px;

    margin:auto;

    background:#ffc107;

    border-radius:50px;

    animation:
        loaderLine 1.4s ease forwards;

    animation-delay:.6s;
}

/* ANIMATIONS */

@keyframes loaderText{

    to{

        opacity:1;

        transform:translateY(0);
    }
}

@keyframes loaderLine{

    to{

        width:220px;
    }
}

/* =========================
   PREMIUM BUTTONS
========================= */

.btn{

    position:relative;

    overflow:hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 10px 25px rgba(255,193,7,.35);
}

/* LIGHT EFFECT */

.btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transition:.6s;
}

.btn:hover::before{

    left:100%;
}

/* =========================
   FLOAT EFFECT
========================= */

.route-card,
.feature-card,
.mini-editorial{

    animation:
        floating 6s ease-in-out infinite;
}

.route-card:nth-child(2){
    animation-delay:1s;
}

.route-card:nth-child(3){
    animation-delay:2s;
}

@keyframes floating{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* =========================
   DESTINATIONS
========================= */

.destinations-section{
    padding:120px 0;
    background:#f4f1ea;
}

.destination-card{

    position:relative;

    height:650px;

    overflow:hidden;

    border-radius:28px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);

    transition:.5s;
}

.destination-card:hover{

    transform:
        translateY(-12px)
        scale(1.02);
}

.destination-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

    filter:
        brightness(.75)
        contrast(1.05)
        saturate(1.1);
}

.destination-card:hover img{

    transform:scale(1.08);
}

/* OVERLAY */

.destination-overlay{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    padding:30px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.88),
            rgba(0,0,0,.2)
        );
}

/* TOP */

.destination-top{

    display:flex;
    justify-content:flex-end;
}

.destination-badge{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    padding:10px 18px;

    border-radius:50px;

    color:white;

    font-size:.8rem;
    font-weight:700;

    letter-spacing:2px;

    border:1px solid rgba(255,255,255,.25);
}

/* CONTENT */

.destination-content{

    color:white;
}

.destination-country{

    color:#ffc107;

    letter-spacing:3px;

    font-size:.8rem;
    font-weight:700;
}

.destination-content h3{

    font-size:2.3rem;

    margin:20px 0;
}

.destination-info{

    display:flex;
    gap:20px;

    margin-bottom:20px;

    color:#ddd;

    font-size:.95rem;
}

.destination-content p{

    line-height:1.9;

    color:#eee;

    margin-bottom:30px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .destination-card{
        height:550px;
    }

    .destination-content h3{
        font-size:1.8rem;
    }

}

/* =========================
   CUSTOM CURSOR
========================= */

body{
    cursor:none;
}

/* MAIN CURSOR */

.custom-cursor{

    position:fixed;

    top:0;
    left:0;

    width:40px;
    height:40px;

    border:1px solid rgba(255,255,255,.7);

    border-radius:50%;

    pointer-events:none;

    transform:
        translate(-50%, -50%);

    z-index:999999;

    transition:
        transform .15s ease,
        width .3s ease,
        height .3s ease,
        background .3s ease;

    backdrop-filter:blur(4px);

    mix-blend-mode:difference;
}

/* DOT */

.cursor-dot{

    position:fixed;

    top:0;
    left:0;

    width:8px;
    height:8px;

    background:#ffc107;

    border-radius:50%;

    pointer-events:none;

    transform:
        translate(-50%, -50%);

    z-index:999999;
}

/* HOVER EFFECT */

.cursor-hover{

    width:70px;
    height:70px;

    background:rgba(255,193,7,.15);

    border-color:#ffc107;
}

.footer-legal{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:8px;

}

.footer-legal a{

    color:#94a3b8;

    text-decoration:none;

    transition:.25s;

}

.footer-legal a:hover{

    color:white;

}

.footer-legal span{

    color:#475569;

}

.legal-page{

    padding:120px 0;

    min-height:100vh;

    background:
        radial-gradient(
            circle at top left,
            #111827,
            #020617
        );

    color:white;

}

.legal-page h1{

    font-size:52px;

    margin-bottom:10px;

}

.legal-update{

    color:#94a3b8;

    margin-bottom:50px;

}

.legal-content{

    max-width:900px;

}

.legal-content h2{

    margin-top:50px;
    margin-bottom:18px;

    font-size:28px;

}

.legal-content p{

    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:18px;

    font-size:17px;

}

.legal-back{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:10px;

    padding:14px 22px;

    border-radius:16px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    color:white;

    text-decoration:none;

    transition:.25s;

    backdrop-filter:blur(10px);

}

.legal-back:hover{

    transform:translateY(-2px);

    border-color:
        rgba(34,197,94,0.35);

    background:
        rgba(255,255,255,0.08);

}

/* =========================
   ABOUT + SECURITY PREMIUM
========================= */

.about-security-section{

    position:relative;

    padding:160px 30px;

    background:
        radial-gradient(
            circle at top left,
            #0f172a,
            #020617
        );

    overflow:hidden;
}

/* LIGHTS */

.about-security-section::before{

    content:'';

    position:absolute;

    top:-200px;
    left:-200px;

    width:500px;
    height:500px;

    background:
        rgba(255,193,7,.08);

    border-radius:50%;

    filter:blur(80px);
}

.about-security-section::after{

    content:'';

    position:absolute;

    bottom:-200px;
    right:-200px;

    width:500px;
    height:500px;

    background:
        rgba(59,130,246,.10);

    border-radius:50%;

    filter:blur(80px);
}

/* GRID */

.about-security-grid{

    position:relative;

    z-index:2;

    max-width:1500px;

    margin:0 auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;
}

/* CARD */

.about-security-card{

    position:relative;

    overflow:hidden;

    background:
        rgba(15,23,42,.78);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:
        1px solid rgba(255,255,255,.08);

    border-radius:36px;

    padding:60px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.35);

    transition:.45s;
}

.about-security-card:hover{

    transform:
        translateY(-10px);

    border-color:
        rgba(255,193,7,.35);

    box-shadow:
        0 35px 90px rgba(0,0,0,.45);
}

/* GLOW */

.about-security-card::before{

    content:'';

    position:absolute;

    top:-120px;
    right:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
        rgba(255,193,7,.12);

    filter:blur(50px);
}

/* LOGO */

.about-security-logo{

    width:150px;

    margin-bottom:35px;

    filter:
        drop-shadow(
            0 15px 35px rgba(0,0,0,.35)
        );
}

/* TITLES */

.about-security-card h2{

    font-size:3rem;

    line-height:1.1;

    margin-bottom:30px;

    color:white;
}

/* TEXT */

.about-security-card p{

    color:#cbd5e1;

    line-height:2;

    font-size:1.08rem;

    margin-bottom:22px;
}

/* IMPORTANT BLOCK */

.security-highlight{

    margin-top:35px;

    padding:22px;

    border-radius:20px;

    background:
        rgba(255,193,7,.10);

    border:
        1px solid rgba(255,193,7,.25);

    color:#fff8e1;

    font-weight:600;

    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:992px){

    .about-security-grid{

        grid-template-columns:1fr;
    }

    .about-security-card{

        padding:40px;
    }

    .about-security-card h2{

        font-size:2.3rem;
    }

}

@media(max-width:768px){

    .about-security-section{

        padding:100px 20px;
    }

    .about-security-card{

        padding:30px;

        border-radius:28px;
    }

    .about-security-logo{

        width:120px;
    }

    .about-security-card h2{

        font-size:2rem;
    }

}