
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#020617;
color:white;
overflow-x:hidden;
}

/* NAV */

nav{
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(2,6,23,0.80);
backdrop-filter:blur(10px);
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
display:flex;
align-items:center;
gap:12px;
font-size:28px;
font-weight:700;
color:#38bdf8;
}

.logo img{
width:55px;
padding:5px;
border-radius:12px;
background:#0f172a;
box-shadow:
0 0 10px rgba(56,189,248,.5),
0 0 20px rgba(56,189,248,.3);
transition:.4s;
}

.logo:hover img{
transform:scale(1.05);
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
transition:.3s;
font-weight:500;
}

nav a:hover{
color:#38bdf8;
}

/* HERO */

.hero{
min-height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 8%;
background:
linear-gradient(rgba(2,6,23,0.55),rgba(2,6,23,0.65)),
url('https://images.unsplash.com/photo-1605379399642-870262d3d051?q=80&w=1206&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
background-size:cover;
background-position:center;
position:relative;
overflow:hidden;

}



.hero::before{
content:'';
position:absolute;
width:450px;
height:450px;
background:#0ea5e9;
filter:blur(140px);
opacity:.15;
top:-100px;
right:-100px;
border-radius:50%;
animation:flotar 6s ease-in-out infinite;
}

@keyframes flotar{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0px);
}

}

.hero-content{
max-width:900px;
position:relative;
z-index:2;
}

.hero h1{
font-size:65px;
margin-bottom:25px;
line-height:1.2;
}

.hero p{
font-size:20px;
line-height:1.8;
color:#cbd5e1;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#0ea5e9;
color:white;
text-decoration:none;
border-radius:12px;
font-weight:600;
transition:.3s;
box-shadow:0 0 15px rgba(14,165,233,.35);
}

.btn:hover{
background:#0284c7;
transform:translateY(-5px);
}

/* SERVICIOS */

.servicios{
padding:100px 8%;
}

.titulo{
text-align:center;
margin-bottom:70px;
}

.titulo h2{
font-size:45px;
margin-bottom:15px;
}

.titulo p{
color:#94a3b8;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:35px;
}

.card{
background:rgba(15,23,42,0.85);
backdrop-filter:blur(10px);
border-radius:20px;
overflow:hidden;
transition:.4s;
border:1px solid rgba(255,255,255,0.06);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(14,165,233,0.25);
}

.card img{
width:100%;
height:240px;
object-fit:cover;
filter:brightness(.88);
transition:.5s;
}

.card:hover img{
transform:scale(1.05);
filter:brightness(1);
}

.card-content{
padding:30px;
}

.card-content h3{
font-size:24px;
margin-bottom:15px;
color:#38bdf8;
display:flex;
align-items:center;
gap:12px;
}

.card-content p{
line-height:1.8;
color:#cbd5e1;
}

/* INFO */

.info{
padding:100px 8%;
background:#0f172a;
}

.info-container{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.info-img,
.info-text{
flex:1;
}

.info-img img{
width:100%;
border-radius:20px;
}

.info-text h2{
font-size:45px;
margin-bottom:25px;
}

.info-text p{
line-height:1.9;
color:#cbd5e1;
margin-bottom:20px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
z-index:1000;
background:#25D366;
width:70px;
height:70px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
box-shadow:
0 0 15px rgba(37,211,102,.7),
0 0 35px rgba(37,211,102,.5);
transition:.4s;
animation:pulse 2s infinite;
}

.whatsapp img{
width:38px;
}

.whatsapp:hover{
transform:scale(1.12);
}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

/* FOOTER */

footer{
background:#01040f;
text-align:center;
padding:35px;
border-top:1px solid rgba(255,255,255,0.05);
}

footer h3{
color:#38bdf8;
font-size:28px;
margin-bottom:10px;
}

footer p{
margin:8px 0;
color:#94a3b8;
}

/* RESPONSIVE */

@media(max-width:768px){

nav{
flex-direction:column;
gap:15px;
padding:20px;
}

.hero{
padding:100px 25px;
min-height:80vh;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:16px;
}

.cards{
grid-template-columns:1fr;
}

.info-container{
flex-direction:column;
}

.info-text{
text-align:center;
}

.titulo h2,
.info-text h2{
font-size:34px;
}

.whatsapp{
width:60px;
height:60px;
}

.whatsapp img{
width:32px;
}

}
