*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fb;
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{
width:100%;
height:100vh;
background:url('carro_ciudad-de-frente.webp');
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:0 8%;
overflow:hidden;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(to bottom,
rgba(0,0,0,.75),
rgba(0,0,0,.65));
}

.hero-content{
position:relative;
z-index:2;
max-width:850px;
color:white;
}

.hero-tag{
display:inline-flex;
align-items:center;
gap:10px;
background:#176BFF;
padding:12px 22px;
border-radius:50px;
font-weight:600;
margin-bottom:30px;
}

.hero h1{
font-size:90px;
line-height:1.1;
margin-bottom:30px;
}

.hero p{
font-size:22px;
line-height:1.8;
color:#ddd;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-principal,
.btn-secundario{
padding:18px 35px;
border-radius:18px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-principal{
background:#176BFF;
color:white;
}

.btn-principal:hover{
transform:translateY(-5px);
}

.btn-secundario{
border:2px solid white;
color:white;
}

.btn-secundario:hover{
background:white;
color:black;
}

/* FLOATING */

.floating-card{
position:absolute;
width:90px;
height:90px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(12px);
border-radius:25px;
display:flex;
align-items:center;
justify-content:center;
font-size:35px;
color:white;
animation:float 5s infinite ease-in-out;
}

.card1{
top:20%;
left:10%;
}

.card2{
bottom:18%;
left:15%;
}

.card3{
top:25%;
right:10%;
}

@keyframes float{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-20px);
}
}

/* STATS */

.stats{
padding:100px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.stat-box{
background:white;
padding:45px;
border-radius:28px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.stat-box h2{
font-size:55px;
color:#176BFF;
margin-bottom:15px;
}

.stat-box p{
color:#555;
font-size:18px;
}

/* MAPA */

.mapa-section{
padding:50px 8% 120px;
}

.mapa-container{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:40px;
align-items:center;
}

.section-tag{
background:#176BFF;
color:white;
padding:10px 20px;
border-radius:50px;
font-size:14px;
display:inline-block;
margin-bottom:25px;
}

.mapa-info h2{
font-size:55px;
margin-bottom:25px;
color:#111;
}

.mapa-info p{
font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:35px;
}

.mapa-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.mapa-box{
height:500px;
border-radius:35px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.mapa-box iframe{
width:100%;
height:100%;
border:none;
}

/* LOCALES */

.locales{
padding:0 8% 120px;
}

.titulo-section{
text-align:center;
margin-bottom:70px;
}

.titulo-section span{
color:#176BFF;
font-weight:600;
}

.titulo-section h2{
font-size:60px;
margin-top:15px;
}

.locales-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.local-card{
background:white;
padding:35px;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.local-card:hover{
transform:translateY(-10px);
}

.top-card{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

.icono{
width:70px;
height:70px;
background:#176BFF;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:28px;
}

.rating{
background:#f4f7fb;
padding:10px 18px;
border-radius:50px;
font-weight:600;
}

.local-card h3{
font-size:32px;
margin-bottom:20px;
}

.local-card p{
color:#666;
line-height:1.8;
margin-bottom:30px;
}

.info-card{
display:flex;
flex-direction:column;
gap:15px;
margin-bottom:35px;
color:#444;
}

.btn-card{
display:inline-block;
padding:16px 28px;
background:#176BFF;
color:white;
border-radius:15px;
text-decoration:none;
font-weight:600;
}

/* BENEFICIOS */

.beneficios{
padding:0 8% 120px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

.beneficio-box{
background:white;
padding:50px 35px;
border-radius:30px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.beneficio-box i{
font-size:55px;
color:#176BFF;
margin-bottom:25px;
}

.beneficio-box h3{
font-size:30px;
margin-bottom:20px;
}

.beneficio-box p{
color:#666;
line-height:1.7;
}

/* CTA */

.cta{
margin:0 8% 120px;
padding:120px 40px;
border-radius:40px;
background:url('camaro.webp');
background-size:cover;
background-position:center;
position:relative;
overflow:hidden;
text-align:center;
}

.cta-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.7);
}

.cta-content{
position:relative;
z-index:2;
color:white;
}

.cta-content h2{
font-size:65px;
margin-bottom:25px;
}

.cta-content p{
font-size:22px;
margin-bottom:40px;
color:#ddd;
}

.cta-content a{
display:inline-block;
padding:18px 35px;
background:#176BFF;
color:white;
border-radius:18px;
text-decoration:none;
font-weight:600;
}

/* FOOTER */

.footer{
background:linear-gradient(to right,#000814,#001d3d,#000814);
padding:90px 8% 30px;
color:white;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-box img{
width:170px;
margin-bottom:20px;
}

.footer-box h3{
margin-bottom:25px;
font-size:25px;
}

.footer-box p{
color:#ccc;
line-height:1.8;
}

.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin-bottom:15px;
}

.footer-box ul li a{
text-decoration:none;
color:white;
}

.social-icons{
display:flex;
gap:15px;
}

.social-icons a{
width:50px;
height:50px;
border-radius:50%;
background:rgba(255,255,255,.1);
display:flex;
align-items:center;
justify-content:center;
color:white;
text-decoration:none;
transition:.3s;
}

.social-icons a:hover{
background:#176BFF;
}

.footer-bottom{
margin-top:60px;
padding-top:25px;
border-top:1px solid rgba(255,255,255,.12);
text-align:center;
color:#ccc;
}

/* RESPONSIVE */

@media(max-width:1000px){

.hero h1{
font-size:60px;
}

.mapa-container{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

.nav{
display:none;
}

}

@media(max-width:700px){

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.cta-content h2{
font-size:42px;
}

.footer-grid{
grid-template-columns:1fr;
}

}