*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0f19;
    color:white;
    overflow-x:hidden;
}

/* HEADER */

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    backdrop-filter:blur(18px);
    background:rgba(10,10,15,.75);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header-container{
    max-width:1400px;
    margin:auto;
    padding:18px 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:140px;
}

.nav ul{
    display:flex;
    gap:30px;
}

.nav ul li{
    position:relative;
}

.nav ul li a{
    color:white;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav ul li a:hover,
.nav ul li a.active{
    color:#00bfff;
}

.dropdown{
    position:absolute;
    top:40px;
    left:0;
    background:#121826;
    min-width:220px;
    padding:15px;
    border-radius:16px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.submenu:hover .dropdown{
    opacity:1;
    visibility:visible;
}

.dropdown li{
    margin:12px 0;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.btn-dark,
.favoritos-icono{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:white;
    cursor:pointer;
    transition:.3s;
}

.btn-dark:hover,
.favoritos-icono:hover{
    background:#00bfff;
    transform:translateY(-4px);
}

.hamburger{
    display:none;
}

/* HERO */

.hero-nosotros{
    height:100vh;
    background:url('lambo-calle.webp') center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,
    rgba(0,0,0,.8),
    rgba(0,0,0,.5));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:20px;
}

.mini-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.1);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.hero-content h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    color:#ddd;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-principal,
.btn-secundario{
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-principal{
    background:#00bfff;
    color:white;
}

.btn-principal:hover{
    transform:translateY(-5px);
}

.btn-secundario{
    border:1px solid rgba(255,255,255,.2);
    color:white;
}

.btn-secundario:hover{
    background:white;
    color:black;
}

/* STATS */

.stats-section{
    max-width:1200px;
    margin:auto;
    padding:100px 5%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    background:#121826;
    padding:50px;
    border-radius:25px;
    text-align:center;
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h2{
    font-size:55px;
    color:#00bfff;
}

.stat-box p{
    color:#aaa;
}

/* ABOUT */

.about-section{
    max-width:1300px;
    margin:auto;
    padding:40px 5% 120px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:30px;
}

.tag{
    color:#00bfff;
    font-weight:600;
}

.about-text h2{
    font-size:50px;
    margin:20px 0;
}

.about-text p{
    color:#bbb;
    line-height:1.8;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.feature{
    background:#121826;
    padding:20px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:15px;
}

.feature i{
    color:#00bfff;
    font-size:22px;
}

/* TEAM */

.team-section{
    padding:120px 5%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#00bfff;
    font-weight:600;
}

.section-title h2{
    font-size:55px;
    margin-top:10px;
}

.team-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.team-card{
    background:#121826;
    border-radius:30px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
}

.team-card:hover{
    transform:translateY(-12px);
}

.team-top img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.team-content{
    padding:30px;
}

.team-content h3{
    font-size:28px;
    margin-bottom:8px;
}

.role{
    color:#00bfff;
    font-size:14px;
}

.team-content p{
    color:#aaa;
    line-height:1.7;
    margin:20px 0;
}

.team-icons{
    display:flex;
    gap:15px;
}

.team-icons i{
    width:45px;
    height:45px;
    background:#1a2235;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00bfff;
}

/* CTA */

.cta-section{
    padding:120px 5%;
}

.cta-box{
    max-width:1200px;
    margin:auto;
    background:linear-gradient(135deg,#00bfff,#0066ff);
    border-radius:40px;
    padding:80px;
    text-align:center;
}

.cta-box h2{
    font-size:55px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    margin-bottom:40px;
}

/* FOOTER */

.footer-pro{
    background:#06080f;
    padding-top:90px;
}

.footer-top{
    max-width:1300px;
    margin:auto;
    padding:0 5% 60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
}

.footer-box p,
.footer-box a{
    color:#aaa;
    line-height:1.8;
}

.footer-box ul li{
    margin-bottom:10px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#121826;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    transition:.3s;
}

.social-icons a:hover{
    background:#00bfff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px;
    color:#888;
}

/* LOADER */

.loader{
    position:fixed;
    inset:0;
    background:#0b0f19;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    animation:loaderOut 2s forwards;
}

.loader-car{
    font-size:60px;
    color:#00bfff;
    animation:carMove 1s infinite alternate;
}

@keyframes carMove{
    from{
        transform:translateX(-20px);
    }
    to{
        transform:translateX(20px);
    }
}

@keyframes loaderOut{
    0%,85%{
        opacity:1;
        visibility:visible;
    }

    100%{
        opacity:0;
        visibility:hidden;
    }
}

/* RESPONSIVE */

@media(max-width:990px){

    .nav{
        display:none;
    }

    .hamburger{
        display:flex;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
    }

    .hamburger span{
        width:28px;
        height:3px;
        background:white;
        border-radius:10px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .about-section{
        grid-template-columns:1fr;
    }

    .section-title h2,
    .cta-box h2,
    .about-text h2{
        font-size:38px;
    }

    .cta-box{
        padding:50px 30px;
    }
}

@media(max-width:600px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .cta-box h2{
        font-size:32px;
    }
}