/* ==========================================
   HERO
========================================== */
/* ==========================================
   LANDING HERO
========================================== */


/* ==========================================
   1. LANDING HERO
========================================== */

.landingHero{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:100vh;

    overflow:hidden;

}


/* ==========================================
   BACKGROUND
========================================== */

.landingBackground{

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.55)
        ),
        url("/images/banner/banner-principal.jpg");

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

    transform:scale(1.05);

}


/* ==========================================
   CONTENT
========================================== */

.landingContent{

    position:relative;

    z-index:2;

    width:100%;

    max-width:900px;

    margin:auto;

    padding:0 24px;

    text-align:center;

    color:#fff;

    animation:fadeUp .9s ease;

}
/* ==========================================
   1. HERO GENERAL
========================================== */

.hero{

    position:relative;

    padding:50px 0 90px;

}


/* ==========================================
   2. HERO BACKGROUND
========================================== */

.heroBanner{

    position:relative;

    overflow:hidden;

    padding:90px 70px;

    border-radius:36px;

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F6F8FC 100%
    );

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.heroBanner::before,
.heroBanner::after{

    content:"";

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

}

.heroBanner::before{

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    background:rgba(32,67,145,.06);

}

.heroBanner::after{

    left:-140px;
    bottom:-180px;

    width:360px;
    height:360px;

    background:rgba(205,32,39,.05);

}


/* ==========================================
   3. HERO CONTAINER
========================================== */

.heroContainer{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1400px;

    margin:0 auto;

}


/* ==========================================
   4. HERO LAYOUT
========================================== */

.heroOverlay{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}


/* ==========================================
   5. HERO CONTENT
========================================== */

.heroContent{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

    width:100%;

    animation:fadeUp .8s ease;

}

/* ==========================================
   6. HERO TITLE
========================================== */

.heroContent h1{

    margin:30px 0 25px;

    font-size:clamp(56px,7vw,96px);

    font-weight:700;

    line-height:.90;

    color:var(--blue);

}

.heroContent h1 span{

    display:block;

    color:var(--red);

}


/* ==========================================
   7. HERO DESCRIPTION
========================================== */

.heroContent p{

    max-width:620px;

    font-size:clamp(17px,2vw,22px);

    line-height:1.9;

    color:var(--text-light);

}


/* ==========================================
   8. HERO ACTIONS
========================================== */

.heroActions{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:45px;

}

.heroActions .cta,
.heroActions .ghost{

    min-width:220px;

    height:58px;

}

/* ==========================================
   9. BRANDS
========================================== */

.brandRow{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:36px;

    margin:50px 0 35px;

}

.brandRow img{

    width:auto;

    height:38px;

    object-fit:contain;

    opacity:.7;

    filter:grayscale(100%);

    transition:
        transform .35s ease,
        opacity .35s ease,
        filter .35s ease;

}

.brandRow img:hover{

    opacity:1;

    filter:grayscale(0);

    transform:translateY(-5px) scale(1.08);

}


/* ==========================================
   10. FINANCE
========================================== */

.financeRow{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:16px;

    margin-top:35px;

}

.financeCard{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    min-height:54px;

    padding:0 22px;

    background:#fff;

    border:1px solid rgba(32,67,145,.08);

    border-radius:14px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    font-size:15px;

    font-weight:600;

    color:var(--blue);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease;

}

.financeCard:hover{

    transform:translateY(-4px);

    background:#F9FBFF;

    border-color:rgba(32,67,145,.18);

    box-shadow:0 18px 35px rgba(32,67,145,.12);

}

.financeCard i{

    font-size:18px;

    color:var(--red);

}

/* ==========================================
   11. VEHICLE SLIDER
========================================== */

.heroVehicles{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    width:100%;

}

.vehicleSlider{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:25px;

    width:100%;

}


/* ==========================================
   VEHICLE TRACK
========================================== */

.vehicleTrack{

    position:relative;

    width:100%;

    max-width:620px;

    height:470px;

    margin:0 auto;

    overflow:hidden;

}


/* ==========================================
   VEHICLE SLIDES
========================================== */

.vehicleSlide{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transform:translateY(20px);

    transition:
        opacity .45s ease,
        transform .45s ease,
        visibility .45s ease;

}

.vehicleSlide.active{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:translateY(0);

}


/* ==========================================
   VEHICLE IMAGE
========================================== */

.vehicleImage{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:340px;

    margin-bottom:20px;

}

.vehicleImage img{

    max-width:100%;

    max-height:320px;

    width:auto;

    height:auto;

    object-fit:contain;

    filter:drop-shadow(0 35px 60px rgba(0,0,0,.18));

    transition:
        transform .35s ease,
        filter .35s ease;

}

.vehicleSlide:hover .vehicleImage img{

    transform:translateY(-6px) scale(1.02);

    filter:drop-shadow(0 50px 70px rgba(0,0,0,.22));

}


/* ==========================================
   VEHICLE INFO
========================================== */

.vehicleSlide h3{

    margin-top:10px;

    font-size:34px;

    font-weight:800;

    color:var(--blue);

}

.vehicleSlide span{

    margin-top:8px;

    font-size:16px;

    font-weight:700;

    letter-spacing:.08em;

    color:var(--red);

}


/* ==========================================
   SLIDER DOTS
========================================== */

.sliderDots{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    margin-top:45px;

}

.dot{

    width:38px;

    height:6px;

    border-radius:999px;

    background:#D8E0EB;

    cursor:pointer;

    transition:all .35s ease;

}

.dot:hover{

    background:#BAC6D8;

}

.dot.active{

    width:65px;

    background:var(--red);

}

/* ==========================================
   12. HERO ANIMATIONS
========================================== */

@keyframes heroFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

.vehicleSlide.active img{

    animation:heroFloat 5s ease-in-out infinite;

}


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* ==========================================
   HERO RESPONSIVE
========================================== */

@media (max-width:1400px){

    .heroBanner{

        padding:80px 60px;

    }

    .heroOverlay{

        gap:60px;

    }

    .heroContent h1{

        font-size:clamp(50px,6vw,80px);

    }

    .vehicleTrack{

        max-width:680px;

    }

    .vehicleSlide img{

        max-height:380px;

    }

}


@media (max-width:992px){

    .hero{

        padding:30px 0 70px;

    }

    .heroBanner{

        padding:60px 40px;

        border-radius:28px;

    }

    .heroOverlay{

        grid-template-columns:1fr;

        gap:60px;

    }

    .heroVehicles{

        order:1;

    }

    .heroContent{

        order:2;

        align-items:center;

        text-align:center;

    }

    .heroContent p{

        margin:auto;

    }

    .brandRow,
    .financeRow,
    .heroActions{

        justify-content:center;

    }

    .vehicleTrack{

        max-width:620px;

    }

    .vehicleSlide img{

        max-height:320px;

    }

}


@media (max-width:768px){

    .heroBanner{

        padding:45px 28px;

        border-radius:24px;

    }

    .heroOverlay{

        gap:45px;

    }

    .heroContent h1{

        font-size:48px;

    }

    .heroContent p{

        font-size:17px;

    }

    .brandRow{

        gap:20px;

    }

    .brandRow img{

        height:34px;

    }

    .financeRow{

        display:grid;

        width:100%;

    }

    .financeCard{

        width:100%;

    }

    .heroActions{

        display:grid;

        width:100%;

        gap:15px;

    }

    .sliderBtn{

        width:48px;

        height:48px;

        font-size:22px;

    }

    .vehicleTrack{

        max-width:520px;

    }

    .vehicleSlide img{

        max-height:250px;

    }

    .vehicleSlide h3{

        font-size:28px;

    }

    .vehicleSlide span{

        font-size:15px;

    }

}


@media (max-width:576px){

    .hero{

        padding:20px 0 50px;

    }

    .heroBanner{

        padding:35px 20px;

    }

    .heroContent h1{

        font-size:40px;

    }

    .heroContent p{

        font-size:16px;

        line-height:1.7;

    }

    .brandRow{

        gap:18px;

    }

    .brandRow img{

        height:28px;

    }

    .sliderBtn{

        display:none;

    }

    .vehicleTrack{

        max-width:100%;

    }

    .vehicleSlide img{

        max-height:200px;

    }

    .sliderDots{

        margin-top:20px;

    }

    .dot{

        width:28px;

    }

    .dot.active{

        width:50px;

    }

}


@media (max-width:400px){

    .heroContent h1{

        font-size:34px;

    }

    .heroContent p{

        font-size:15px;

    }

    .vehicleSlide img{

        max-height:170px;

    }

    .brandRow{

        gap:14px;

    }

    .brandRow img{

        height:24px;

    }

}

/* ==========================================
   EXPERIENCE
========================================== */

.experience{

    padding:110px 0;

}

.experience .sectionTitle p{

    max-width:700px;

    margin:0 auto;

}


/* ==========================================
   VIDEO SLIDER
========================================== */

.videoSlider{

    display:flex;

    gap:30px;

    overflow-x:auto;

    padding-bottom:10px;

    scroll-behavior:smooth;

    scroll-snap-type:x mandatory;

    scrollbar-width:none;

    -ms-overflow-style:none;

}

.videoSlider::-webkit-scrollbar{

    display:none;

}


/* ==========================================
   VIDEO CARD
========================================== */

.videoCard{

    flex:0 0 700px;

    overflow:hidden;

    background:#fff;

    border:1px solid rgba(32,67,145,.08);

    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    will-change:transform;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.videoCard:hover{

    transform:translateY(-8px);

    border-color:rgba(32,67,145,.15);

    box-shadow:0 25px 50px rgba(32,67,145,.12);

}

.videoCard iframe{

    display:block;

    width:100%;

    aspect-ratio:16/9;

    border:none;

    background:#000;

}


/* ==========================================
   VIDEO INFO
========================================== */

.videoInfo{

    padding:28px;

}

.videoInfo h3{

    margin-bottom:12px;

    font-size:26px;

    color:var(--blue);

}

.videoInfo p{

    line-height:1.8;

    color:var(--text-light);

}


/* ==========================================
   EXPERIENCE RESPONSIVE
========================================== */

@media (max-width:992px){

    .videoCard{

        flex:0 0 100%;

    }

}

@media (max-width:768px){

    .experience{

        padding:80px 0;

    }

    .videoCard{

        border-radius:22px;

    }

    .videoInfo{

        padding:22px;

    }

    .videoInfo h3{

        font-size:22px;

    }

}

@media (max-width:576px){

    .experience{

        padding:60px 0;

    }

    .videoCard{

        border-radius:18px;

    }

    .videoInfo{

        padding:18px;

    }

    .videoInfo h3{

        font-size:20px;

    }

    .videoInfo p{

        font-size:15px;

    }

}