*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0f1a;
    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-servicios{
    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;
    width:100%;
    height:100%;
    background:linear-gradient(to bottom,
    rgba(0,0,0,.7),
    rgba(11,15,26,.95));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:20px;
}

.tag{
    display:inline-block;
    padding:10px 25px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    border-radius:40px;
    margin-bottom:25px;
    font-size:14px;
}

.hero-content h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:#ccc;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-principal,
.btn-secundario{
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-principal{
    background:#00bfff;
    color:white;
}

.btn-secundario{
    border:1px solid rgba(255,255,255,.3);
    color:white;
}

.btn-principal:hover,
.btn-secundario:hover{
    transform:translateY(-5px);
}

/* TITULOS */

.titulo-section{
    text-align:center;
    margin-bottom:70px;
}

.titulo-section span{
    color:#00bfff;
    letter-spacing:3px;
    font-size:14px;
}

.titulo-section h2{
    margin-top:15px;
    font-size:45px;
}

/* SERVICIOS */

.servicios{
    width:90%;
    margin:120px auto;
}

.cards-servicios{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.card-servicio{
    background:#111827;
    border-radius:30px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
}

.card-servicio:hover{
    transform:translateY(-10px);
}

.img-box{
    height:250px;
    overflow:hidden;
}

.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.card-servicio:hover img{
    transform:scale(1.1);
}

.contenido-card{
    padding:30px;
}

.icono{
    width:70px;
    height:70px;
    background:#00bfff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.contenido-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.contenido-card p{
    color:#aaa;
    line-height:1.7;
    margin-bottom:25px;
}

.contenido-card a{
    color:#00bfff;
    text-decoration:none;
    font-weight:600;
}

/* INFO */

.info-section{
    width:90%;
    margin:120px auto;
}

.info-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.info-img img{
    width:100%;
    border-radius:30px;
}

.mini-title{
    color:#00bfff;
    letter-spacing:3px;
}

.info-text h2{
    font-size:50px;
    margin:20px 0;
}

.info-text p{
    color:#aaa;
    line-height:1.8;
    margin-bottom:30px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature{
    background:#111827;
    padding:18px;
    border-radius:18px;
}

.feature i{
    color:#00bfff;
    margin-right:10px;
}

/* STATS */

.stats{
    width:90%;
    margin:120px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.stat-box{
    background:#111827;
    border-radius:30px;
    padding:50px;
    text-align:center;
}

.stat-box h2{
    font-size:55px;
    color:#00bfff;
}

.stat-box p{
    margin-top:10px;
    color:#aaa;
}

/* CTA */

.cta{
    width:90%;
    margin:120px auto;
}

.cta-box{
    background:linear-gradient(135deg,#00bfff,#0077ff);
    padding:80px;
    border-radius:40px;
    text-align:center;
}

.cta-box h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta-box p{
    margin-bottom:30px;
    font-size:18px;
}

.cta-box a{
    display:inline-block;
    padding:18px 40px;
    background:white;
    color:#0077ff;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

/* FOOTER */

.footer{
    background:#05070d;
    padding-top:80px;
}

.footer-content{
    width:90%;
    margin:auto;
    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:#999;
    text-decoration:none;
    display:block;
    margin-bottom:12px;
}

.social{
    display:flex;
    gap:15px;
}

.social a{
    width:45px;
    height:45px;
    background:#111827;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
}

.footer-bottom{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px;
    color:#777;
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero-content h1{
        font-size:45px;
    }

    .info-container{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }

    .nav{
        display:none;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:35px;
    }

}