*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}


body{
    background:#111;
    color:white;
}



/* ================= HEADER ================= */


header{

    height:80px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding:0 8%;
    background:#080808;

}



nav a{

    color:white;
    text-decoration:none;
    margin-left:25px;
    font-size:18px;
    transition:.3s;

}


nav a:hover{

    color:#e10600;

}



/* MENU HAMBURGUESA */


.menu-icon{

    display:none;
    font-size:35px;
    color:white;
    cursor:pointer;

}




/* ================= HERO ================= */


.hero{

    min-height:90vh;

    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.75)
    ),
    url("img/fondo.jpg");


    background-size:cover;
    background-position:center;


    display:flex;
    justify-content:center;
    align-items:center;


    text-align:center;

    padding:40px 8%;

}




.contenido{

    max-width:650px;

}




.hero-logo{

    width:300px;
    max-width:90%;
    height:auto;

    display:block;

    margin:0 auto 30px;

}




.contenido h1{

    font-size:55px;

}



.contenido span{

    color:#e10600;

}



.contenido p{

    font-size:22px;

    margin:25px 0;

    line-height:1.5;

}




/* ================= BOTONES ================= */


.botones{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}



.boton{

    display:inline-block;

    background:#25d366;

    color:white;

    padding:15px 30px;

    border-radius:8px;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}



.boton:hover{

    background:#ff2a20;

}



.ubicacion{

    background:#333;

    border:1px solid #e10600;

}/* ================= SERVICIOS ================= */


.servicios{

    padding:80px 5%;
    background:#111;
    text-align:center;

}



.servicios h2{

    font-size:40px;
    margin-bottom:40px;

}



.carousel{

    display:flex;
    align-items:center;
    gap:15px;

}



.carousel-track{

    display:flex;
    overflow-x:auto;
    scroll-behavior:smooth;
    gap:20px;
    scrollbar-width:none;

}



.carousel-track::-webkit-scrollbar{

    display:none;

}



.card{

    min-width:300px;

    background:#1b1b1b;

    border-radius:15px;

    padding:30px;

    flex-shrink:0;

    transition:.3s;

    border:2px solid transparent;

}



.card:hover{

    transform:translateY(-10px);

    border-color:#e30613;

}



.card span{

    font-size:55px;

}



.card h3{

    margin:20px 0 10px;

    color:#e30613;

}



.card p{

    color:#ddd;

}



.prev,
.next{

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#e30613;

    color:white;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

}



.prev:hover,
.next:hover{

    background:#ff3b3b;

}





/* ================= CARRUSEL TRABAJOS ================= */


#galeria{

    padding:70px 8%;

    background:#111;

    text-align:center;

}



.slider{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

}



.slider-container{

    width:850px;

    height:450px;

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.5);

}



.slide{

    display:none;

    width:100%;

    height:100%;

}



.slide.active{

    display:block;

    animation:fade .6s;

}



.slide img{

    width:100%;

    height:100%;

    object-fit:cover;

}



@keyframes fade{

    from{

        opacity:0;

    }


    to{

        opacity:1;

    }

}



.slider-btn{

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#e10600;

    color:white;

    font-size:25px;

    cursor:pointer;

    transition:.3s;

}



.slider-btn:hover{

    transform:scale(1.1);

    background:#ff2a20;

}




.dots{

    margin-top:20px;

}



.dot{

    display:inline-block;

    width:12px;

    height:12px;

    background:#777;

    border-radius:50%;

    margin:5px;

    cursor:pointer;

}



.dot.active{

    background:#e10600;

}





/* ================= MAPA ================= */


#mapa{

    padding:70px 8%;

    background:#181818;

    text-align:center;

}



#mapa iframe{

    border-radius:15px;

}
/* ================= CONTACTO ================= */


#contacto{

    padding:60px;

    text-align:center;

    background:#101010;

}



#contacto p{

    font-size:20px;

    margin:15px;

}





/* ================= FOOTER ================= */


footer{

    background:#000;

    padding:40px 20px;

    text-align:center;

    color:white;

}



footer h3{

    color:#e10600;

    font-size:28px;

    margin-bottom:20px;

}



footer h4{

    color:#e10600;

    margin-top:25px;

    font-size:20px;

}



footer p{

    margin:10px;

    font-size:16px;

    color:#ccc;

}



.horarios{

    margin-top:20px;

}



.horarios p{

    margin:8px;

}



footer .copyright{

    margin-top:25px;

    font-size:14px;

    color:#777;

}










/* REDES SOCIALES */


.redes{

    margin-top:25px;

}



.redes a{

    color:white;

    font-size:40px;

    margin:0 15px;

    transition:.3s;

}



.redes a:hover{

    color:#e10600;

    transform:scale(1.2);

}





/* ================= WHATSAPP FLOTANTE ================= */


.whatsapp-flotante{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    font-size:38px;

    text-decoration:none;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 5px 20px rgba(0,0,0,.4);

    z-index:999;

    transition:.3s;

}



.whatsapp-flotante:hover{

    transform:scale(1.15);

}





/* ================= CELULAR ================= */


@media(max-width:768px){



header{

    height:80px;

    padding:20px;

    justify-content:flex-end;

}




.menu-icon{

    display:block;

    position:relative;

    z-index:2000;

}




nav{

    position:absolute;

    top:80px;

    right:0;

    width:100%;

    background:#080808;

    display:none;

    flex-direction:column;

    text-align:center;

    padding:20px;

    z-index:1000;

}




nav.active{

    display:flex;

}



nav a{

    margin:15px 0;

    font-size:20px;

}





.hero{

    padding:30px 20px;

}




.hero-logo{

    width:200px;

}




.contenido h1{

    font-size:38px;

}




.contenido p{

    font-size:18px;

}




.botones{

    flex-direction:column;

    align-items:center;

}




.boton{

    width:90%;

}





.slider{

    gap:5px;

}



.slider-container{

    width:80%;

    height:230px;

}




.slider-btn{

    width:45px;

    height:45px;

    font-size:18px;

}




#contacto{

    padding:40px 20px;

}



}
.mapas{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.mapa{
    flex:1;
    min-width:320px;
}

.mapa iframe{
    width:100%;
    height:280px;
    border:0;
    border-radius:15px;
}