/*=========================================
            ATLAS TRANSPORTES
        PREMIUM WEBSITE 2026
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#071B35;
    --secondary:#0B2E59;
    --accent:#ff8c00;
    --white:#ffffff;
    --gray:#eef3f8;
    --dark:#081421;
    --text:#5b6674;
    --radius:18px;
    --shadow:0 15px 40px rgba(0,0,0,.15);
    --transition:.4s ease;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--gray);
    color:var(--dark);
    overflow-x:hidden;

}

section{

    padding:110px 0;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.section-subtitle{

    color:var(--accent);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}

.section-title{

    font-size:46px;
    font-weight:800;
    color:var(--primary);
    margin:20px 0;

}

.section-description{

    color:var(--text);
    line-height:1.8;

}
/*==============================
        PRELOADER PREMIUM
==============================*/

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#152030;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:1s;

}

.loader-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.loader-logo{
    width:140px;
    height:auto;
    margin-bottom:25px;
    border-radius:15px;
    animation:logo 1.5s ease-in-out infinite alternate;
}

@keyframes logo{

from{

transform:scale(.95);

}

to{

transform:scale(1.05);

}

}

.loader-content h1{

font-size:60px;

font-weight:800;

letter-spacing:4px;

margin-bottom:10px;

}

.loader-content p{

color:#ddd;

margin-bottom:40px;

font-size:20px;

}

.road{

position:relative;

width:100%;

height:80px;

overflow:hidden;

margin-bottom:30px;

}

.line{

position:absolute;

bottom:20px;

left:0;

width:200%;

height:6px;

background:repeating-linear-gradient(

90deg,

orange 0px,

orange 60px,

transparent 60px,

transparent 120px

);

animation:road 8s linear infinite;

}

@keyframes road{

from{

transform:translateX(0);

}

to{

transform:translateX(-120px);

}

}

.truck{
    position:absolute;
    font-size:55px;
    bottom:20px;
    right:-80px;
    animation:truckMove 8.5s linear forwards;
}

@keyframes truckMove{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(calc(-100vw - 160px));
    }
}
.loading-bar{

    width:100%;
    height:8px;
    background:#e5e5e5;
    border-radius:30px;
    overflow:hidden;
    position:relative;

}

.loading-bar span{

    position:absolute;
    top:0;
    right:0;          /* Comienza desde la derecha */
    width:0%;
    height:100%;
    background:#25D366;
    animation:loading 8s linear forwards;

}

@keyframes loading{

    from{
        width:0%;
    }

    to{
        width:100%;
    }

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

.navbar{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    padding:18px 0;
    background:rgba(8,20,40,.55);
    backdrop-filter:blur(18px);
    transition:.4s;

}

.navbar.scrolled{

    background:#071B35;
    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.navbar-brand img{

    height:65px;

}

.nav-link{

    color:#fff;
    margin:0 18px;
    font-weight:500;
    transition:.3s;

}

.nav-link:hover{

    color:#ff8c00;

}

.btn-cotizar{

    background:#ff8c00;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
    transition:.4s;

}

.btn-cotizar:hover{

    background:#fff;
    color:#071B35;
    transform:translateY(-3px);

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

.hero{

position:relative;

height:100vh;

display:flex;

align-items:center;

background:url("../img/hero-bg.jpg");

background-size:cover;

background-position:center;

background-repeat:no-repeat;

overflow:hidden;

}

.hero-overlay{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(

        90deg,

        rgba(5,20,45,.75) 0%,

        rgba(5,20,45,.55) 45%,

        rgba(5,20,45,.20) 100%

    );

}
.hero .container{

position:relative;

z-index:2;

}

.hero-subtitle{

color:#ff8c00;

font-weight:700;

letter-spacing:4px;

font-size:18px;

text-transform:uppercase;

display:block;

margin-bottom:25px;

}

.hero h1{

    color:#fff;
    font-size:49px;
    font-weight:800;
    line-height:1.1;
    max-width:700px;
    margin-bottom:30px;

}

.hero p{

    color:#ffffff;
    font-size:22px;
    line-height:1.8;
    max-width:650px;

}
.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}
.hero::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:120px;

background:linear-gradient(

transparent,

#fff

);

}
/*=========================================
            CONTADORES
==========================================*/

.stats{

    margin-top:-90px;
    position:relative;
    z-index:10;

}

.stat-card{

    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-12px);

}

.stat-card h2{

    color:#ff8c00;
    font-size:50px;
    font-weight:800;

}

.stat-card p{

    margin-top:10px;
    color:#555;

}
/*=========================================
            SOBRE NOSOTROS
=========================================*/

.about{

    background:#ffffff;
    position:relative;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.03);

}

.experience-box{

    position:absolute;
    bottom:-30px;
    right:-20px;

    background:linear-gradient(135deg,#ff8c00,#ff6b00);

    color:#fff;

    width:180px;
    height:180px;

    border-radius:50%;

    display:flex;
    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 40px rgba(255,140,0,.35);

}

.experience-box h2{

    font-size:52px;
    font-weight:800;

}

.experience-box span{

    text-align:center;
    font-size:15px;

}

.about-text{

    color:#5c6570;
    line-height:2;
    margin:35px 0;

}

.about-list{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;

}

.about-list .item{

    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;

}

.about-list i{

    color:#ff8c00;
    font-size:22px;

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

.features{

    background:#f5f8fc;

}

.feature-card{

    background:#fff;

    border-radius:25px;

    padding:45px 35px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    width:100%;

    height:6px;

    left:0;

    top:0;

    background:#ff8c00;

    transform:scaleX(0);

    transition:.4s;

}

.feature-card:hover::before{

    transform:scaleX(1);

}

.feature-card:hover{

    transform:translateY(-15px);

}

.feature-card i{

    font-size:60px;

    color:#ff8c00;

    margin-bottom:30px;

}

.feature-card h4{

    font-size:24px;

    margin-bottom:20px;

    font-weight:700;

}

.feature-card p{

    color:#5e6875;

    line-height:1.9;

}
/*=========================================
            SERVICIOS
=========================================*/

.services{

    background:#fff;

}

.service-card{

    background:#ffffff;

    padding:45px;

    border-radius:25px;

    transition:.4s;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

    height:100%;

}

.service-card:hover{

    transform:translateY(-18px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.service-card::after{

    content:"";

    position:absolute;

    right:-80px;

    top:-80px;

    width:170px;

    height:170px;

    border-radius:50%;

    background:rgba(255,140,0,.08);

    transition:.4s;

}

.service-card:hover::after{

    transform:scale(2);

}

.service-icon{

    width:90px;

    height:90px;

    border-radius:20px;

    background:#ff8c00;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    margin-bottom:35px;

}

.service-card h3{

    font-size:28px;

    font-weight:700;

}

.service-card p{

    margin:25px 0;

    line-height:2;

    color:#666;

}

.service-card a{

    color:#ff8c00;

    font-weight:700;

}
/*=========================================
            CTA
=========================================*/

.cta{

    background:linear-gradient(135deg,#071B35,#0B2E59);

    color:#fff;

    border-radius:25px;

    margin:100px auto;

}

.cta h2{

    font-size:42px;

    font-weight:800;

}

.cta p{

    margin-top:20px;

    color:#dfe8f4;

}
/*=========================================
        EFECTOS
=========================================*/

img{

    transition:.5s;

}

img:hover{

    transform:scale(1.04);

}

.btn-principal{

    position:relative;

    overflow:hidden;

}

.btn-principal::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

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

    transition:.5s;

}

.btn-principal:hover::before{

    left:100%;

}
/*=========================================
            FLOTA
=========================================*/

.fleet{

    background:#f7f9fc;

}

.fleet-card{

    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;

}

.fleet-card:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

.fleet-card img{

    height:260px;
    object-fit:cover;
    transition:.6s;

}

.fleet-card:hover img{

    transform:scale(1.08);

}

.fleet-content{

    padding:35px;

}

.fleet-content h3{

    font-size:30px;
    color:#071B35;
    margin-bottom:15px;

}

.fleet-content p{

    color:#666;
    line-height:1.9;

}

.fleet-content ul{

    margin:25px 0;

}

.fleet-content ul li{

    margin-bottom:12px;

}

.fleet-content i{

    color:#ff8c00;

}

.fleet-btn{

    display:inline-block;

    background:#071B35;

    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    transition:.4s;

}

.fleet-btn:hover{

    background:#ff8c00;

}
/*=========================================
            GALERÍA
=========================================*/

.gallery{

    background:#fff;

}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:25px;

}

.gallery-item img{

    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(7,27,53,.75);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.gallery-overlay i{

    color:#fff;

    font-size:45px;

}

.gallery-item:hover img{

    transform:scale(1.15);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}
/*=========================================
            CONTACTO PREMIUM
=========================================*/

.contact{
    background:linear-gradient(135deg,#f4f8fd,#eef5ff);
    padding:100px 0;
}

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    border:1px solid rgba(255,140,0,.15);
    transition:.4s;
}

.contact-form:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 70px rgba(0,0,0,.15);
}

.contact-form input,
.contact-form textarea{

    width:100%;
    background:#f8fbff;
    border:2px solid transparent;
    border-radius:15px;
    padding:18px 20px;
    margin-bottom:22px;
    font-size:16px;
    transition:.35s;
    color:#081B33;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#8b97a8;

}

.contact-form input:focus,
.contact-form textarea:focus{

    background:#fff;
    border-color:#ff8c00;
    box-shadow:0 0 0 5px rgba(255,140,0,.12);

}

.contact-form textarea{

    resize:none;
    min-height:170px;

}

/* BOTÓN */

.contact-form .btn-principal{

    width:100%;
    height:62px;
    border:none;
    border-radius:15px;
    background:linear-gradient(135deg,#25D366,#1ebe5d);
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

}

.contact-form .btn-principal:hover{

    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(37,211,102,.35);

}

.contact-form .btn-principal i{

    font-size:24px;

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

.footer{

    background:#071B35;

    color:#fff;

    padding:90px 0 40px;

}

.footer h3,

.footer h5{

    margin-bottom:25px;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:15px;

}

.footer a{

    color:#dfe7f5;

    transition:.3s;

}

.footer a:hover{

    color:#ff8c00;

}

.social{

    display:flex;

    gap:15px;

}

.social a{

    width:45px;

    height:45px;

    background:#102C57;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s;

}

.social a:hover{

    background:#ff8c00;

}

.footer hr{

    margin:50px 0;

    border-color:rgba(255,255,255,.15);

}
.glass{

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

    backdrop-filter:blur(16px);

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

}
/*=========================================
            CTA FINAL
==========================================*/

.cta-final{

padding:120px 0;

background:linear-gradient(135deg,#071B35,#0D2E5E);

position:relative;

overflow:hidden;

}

.cta-final::before{

content:"";

position:absolute;

top:-150px;

right:-150px;

width:450px;

height:450px;

border-radius:50%;

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

}

.cta-final::after{

content:"";

position:absolute;

bottom:-180px;

left:-180px;

width:500px;

height:500px;

border-radius:50%;

background:rgba(255,140,0,.08);

}

.cta-final .container{

position:relative;

z-index:2;

}

.cta-subtitle{

color:#ff8c00;

font-weight:700;

letter-spacing:3px;

display:block;

margin-bottom:20px;

}

.cta-final h2{

font-size:55px;

font-weight:800;

color:#fff;

line-height:1.2;

margin-bottom:30px;

}

.cta-final p{

color:#d7dbe5;

font-size:20px;

line-height:1.9;

margin-bottom:45px;

max-width:650px;

}

.cta-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.truck-img{

animation:truck 4s ease-in-out infinite;

filter:drop-shadow(0 25px 45px rgba(0,0,0,.35));

}

@keyframes truck{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}
}
.footer{

    background:#041528;

    padding:90px 0 30px;

    color:#fff;

}

.footer-brand{

    display:flex;

    align-items:flex-start;

    gap:25px;

}

.footer-brand img{

    width:130px;

    border-radius:12px;

}

.footer-brand h3{

    font-size:36px;

    font-weight:800;

    margin-bottom:18px;

}

.footer-brand p{

    color:#d2d8e3;

    line-height:1.8;

}

.footer h5{

    font-size:28px;

    margin-bottom:25px;

    font-weight:700;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:16px;

}

.footer-links a{

    color:#d2d8e3;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ff8c00;

    padding-left:8px;

}

.footer p{

    color:#d2d8e3;

    line-height:2;

}

.footer hr{

    border-color:rgba(255,255,255,.1);

    margin:60px 0 25px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#c8d0db;

}
/*==============================
        WHATSAPP
==============================*/

.whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:70px;

    height:70px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    text-decoration:none;

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

    z-index:9999;

    transition:.4s;

    animation:whatsapp 2s infinite;

}

.whatsapp:hover{

    background:#1ebe5d;

    transform:scale(1.12);

    color:#fff;

}

@keyframes whatsapp{

0%{

transform:scale(1);

}

50%{

transform:scale(1.12);

}

100%{

transform:scale(1);

}

}
.footer-link{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-link:hover{
    color:#ff9800;
}
.contact-form button{
    width:100%;
    background:#ff9800;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#e68900;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,152,0,.35);
}
button[type="submit"]{
    width:100%;
    background:#ff9800;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

button[type="submit"]:hover{
    background:#e68900;
}
#loadingWhatsapp{

    position:fixed;
    inset:0;
    background:rgba(8,27,51,.88);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:.4s;

}

#loadingWhatsapp.show{

    opacity:1;
    visibility:visible;

}

.loading-box{

    width:380px;
    background:#fff;
    border-radius:25px;
    padding:40px;
    text-align:center;

}

.loading-box i{

    color:#25D366;
    font-size:60px;
    margin-bottom:20px;

}

.loading-box h3{

    margin-bottom:25px;

}

.loading-bar{

    width:100%;
    height:10px;
    background:#eee;
    border-radius:30px;
    overflow:hidden;

}

.loading-bar span{

    display:block;
    width:0%;
    height:100%;
    background:#25D366;
    animation:loadWhatsapp 2s linear forwards;

}

@keyframes loadWhatsapp{

    to{

        width:100%;

    }

}
/*=========================================
        HERO ANIMATION
=========================================*/



.hero.animate .hero-subtitle{

    animation:fadeUp .8s ease forwards;

}

.hero.animate h1{

    animation:fadeUp .8s ease .3s forwards;

}

.hero.animate p{

    animation:fadeUp .8s ease .6s forwards;

}

.hero.animate .hero-buttons{

    animation:fadeUp .8s ease .9s forwards;

}

.hero.animate .hero-image{

    animation:fadeRight 1s ease .5s forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;
        transform:translateX(80px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');

.logo-title{
    font-family:'Montserrat',sans-serif;
    font-size:4rem;
    font-weight:900;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:3px;
    line-height:1;
    text-shadow:
        0 5px 20px rgba(0,0,0,.35);
}

.logo-title span{
    display:block;
    font-size:1.6rem;
    font-weight:600;
    letter-spacing:10px;
    color:#ff6b35;
    margin-top:8px;
}
/*=========================================
        COVERAGE CARDS PREMIUM
=========================================*/

.coverage-card{

    background:#fff;

    padding:40px 20px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

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

    height:100%;

}

.coverage-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.coverage-card i{

    font-size:38px;

    color:#ff8c00;

    margin-bottom:20px;

    transition:.4s;

}

.coverage-card:hover i{

    transform:scale(1.2) rotate(8deg);

}

.coverage-card h3{

    font-size:48px;

    font-weight:800;

    color:#071B35;

    margin-bottom:10px;

}

.coverage-card p{

    color:#666;

    font-size:18px;

}
/*=========================================
        PROCESO PREMIUM
=========================================*/

.process{

    background:linear-gradient(180deg,#f8fbff,#eef3f8);

}

.process-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    height:100%;

    text-align:left;

    position:relative;

    overflow:hidden;

    transition:.45s ease;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border-top:5px solid #ff8c00;

}

.process-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.process-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(255,140,0,.08);

    border-radius:50%;

    top:-90px;

    right:-90px;

    transition:.5s;

}

.process-card:hover::before{

    transform:scale(1.5);

}

.process-card .number{

    width:55px;

    height:55px;

    background:#ff8c00;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}

.process-card i{

    font-size:48px;

    color:#071B35;

    margin-bottom:20px;

    transition:.4s;

}

.process-card:hover i{

    color:#ff8c00;

    transform:scale(1.15) rotate(-8deg);

}

.process-card h4{

    font-size:30px;

    font-weight:700;

    color:#071B35;

    margin-bottom:18px;

}

.process-card p{

    color:#5d6775;

    line-height:1.8;

}

.process-card::after{

    content:"→";

    position:absolute;

    right:25px;

    bottom:20px;

    font-size:30px;

    color:#ff8c00;

    opacity:0;

    transition:.4s;

}

.process-card:hover::after{

    opacity:1;

    right:20px;

}
/*=========================================
        ABOUT PREMIUM
=========================================*/

.about-premium{

background:#f8fbff;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:30px;

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

transition:.5s;

}

.about-image:hover img{

transform:scale(1.04);

}

.about-grid{

display:grid;

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

gap:18px;

margin-top:35px;

}

.about-item{

background:white;

padding:18px;

border-radius:16px;

display:flex;

align-items:center;

gap:15px;

font-weight:600;

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

transition:.35s;

}

.about-item:hover{

transform:translateY(-8px);

background:#071B35;

color:white;

}

.about-item:hover i{

color:#ff8c00;

}

.about-item i{

font-size:26px;

color:#ff8c00;

}

.floating-card{

position:absolute;

bottom:25px;

right:-20px;

background:white;

padding:20px;

border-radius:18px;

box-shadow:0 20px 45px rgba(0,0,0,.18);

font-weight:700;

animation:floatCard 3s ease-in-out infinite;

}

@keyframes floatCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}
.hero{

    animation:heroZoom 18s ease-in-out infinite alternate;

}

@keyframes heroZoom{

0%{

background-size:100%;

}

100%{

background-size:108%;

}

}
.hero-subtitle{

animation:fadeLeft 1s;

}

.hero h1{

animation:fadeUp 1.2s;

}

.hero p{

animation:fadeUp 1.5s;

}

.hero-buttons{

animation:zoomIn 1.8s;

}
.hero::after{

content:"";

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:rgba(255,140,0,.12);

filter:blur(70px);

top:25%;

right:10%;

animation:lightMove 8s infinite alternate ease-in-out;

}

@keyframes lightMove{

0%{

transform:translateX(0);

}

100%{

transform:translateX(80px);

}

}
/*=========================================
        RESPONSIVE CELULAR
=========================================*/

@media (max-width:992px){

.navbar{
padding:10px 0;
}

.navbar-brand img{
height:55px;
}

.navbar-collapse{
background:#071B35;
padding:20px;
border-radius:15px;
margin-top:15px;
text-align:center;
}

.nav-link{
margin:12px 0;
font-size:18px;
}

.btn-cotizar{
display:block;
margin-top:15px;
text-align:center;
}

.hero{
height:auto;
padding:150px 0 100px;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
}

.section-title{
font-size:36px;
}

.about-list{
grid-template-columns:1fr;
}

.experience-box{
position:relative;
right:0;
bottom:0;
margin:30px auto;
}

}

@media (max-width:768px){

.hero{
text-align:center;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:17px;
line-height:1.8;
}

.hero-buttons{
justify-content:center;
}

.section-title{
font-size:30px;
}

.service-card,
.feature-card,
.fleet-card{
padding:30px;
}

.footer{
text-align:center;
}

.footer-brand{
flex-direction:column;
align-items:center;
}

}

@media (max-width:576px){

.hero{
padding-top:140px;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.btn-principal,
.btn-secundario,
.btn-cotizar{
width:100%;
text-align:center;
}

.navbar-brand img{
height:45px;
}

.section-title{
font-size:26px;
}

}