*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#050505;
    color:white;
}

/* HEADER */

.header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(0,0,0,0.8);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,255,255,0.2);
}

.logo{
    font-size:32px;
    font-weight:bold;
}

.logo span{
    color:#00e5ff;
}

.navbar{
    display:flex;
    gap:40px;
}

.navbar a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.navbar a:hover{
    color:#00e5ff;
}

/* HAMBURGUESA */

.hamburguesa{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburguesa span{
    width:30px;
    height:3px;
    background:white;
    border-radius:5px;
}

/* HERO */

.hero{
    min-height:45vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 8% 60px;
    background:linear-gradient(
        rgba(0,229,255,0.08),
        rgba(0,0,0,0.95)
    );
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    color:#cfcfcf;
    line-height:1.7;
    margin-bottom:40px;
}

.hero button{
    padding:18px 40px;
    border:none;
    background:#00e5ff;
    color:black;
    font-size:18px;
    font-weight:bold;
    border-radius:15px;
    cursor:pointer;
    transition:0.3s;
}

.hero button:hover{
    background:white;
}

/* GALERIA */

.galeria{
    padding:50px 8%;
}

.titulo{
    text-align:center;
    margin-bottom:60px;
}

.titulo h2{
    font-size:50px;
    margin-bottom:15px;
}

.titulo p{
    color:#bcbcbc;
}

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    overflow:hidden;
    border-radius:25px;
    border:1px solid #222;
    background:#111;
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s;
}

.card:hover img{
    transform:scale(1.1);
}

/* SERVICIOS */

.servicios{
    padding:100px 8%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    background:#0a0a0a;
}

.servicio{
    background:#111;
    padding:40px;
    border-radius:25px;
    border:1px solid #222;
    transition:0.3s;
}

.servicio:hover{
    border-color:#00e5ff;
}

.servicio h3{
    color:#00e5ff;
    margin-bottom:20px;
    font-size:28px;
}

.servicio p{
    color:#cfcfcf;
    line-height:1.6;
}

/* FOOTER */

.footer{
    padding:60px 8%;
    text-align:center;
    border-top:1px solid rgba(0,255,255,0.2);
}

.footer-logo{
    font-size:35px;
    font-weight:bold;
    margin-bottom:20px;
}

.footer-logo span{
    color:#00e5ff;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-bottom:30px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#00e5ff;
}

.footer p{
    color:#888;
}

/* RESPONSIVE */

@media(max-width:900px){

    .grid{
        grid-template-columns:1fr 1fr;
    }

    .servicios{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    .navbar{
        position:absolute;
        top:80px;
        right:-100%;
        width:250px;
        background:#111;
        flex-direction:column;
        padding:30px;
        transition:0.4s;
        border-radius:20px;
    }

    .navbar.active{
        right:20px;
    }

    .hamburguesa{
        display:flex;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:18px;
    }

}

.btn-whatsapp{
    display:inline-block;
    padding:18px 40px;
    background:#00e5ff;
    color:black;
    font-size:18px;
    font-weight:bold;
    border-radius:15px;
    text-decoration:none;
    transition:0.3s;
}

.btn-whatsapp:hover{
    background:white;
    transform:translateY(-3px);
}