/* HERO PROYECTOS */
.hero-projects{
height:70vh;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-align:center;
-ms-flex-align:center;
align-items:center;
-webkit-box-pack:center;
-ms-flex-pack:center;
justify-content:center;
text-align:center;
padding:0 10%;
}

.hero-projects h1{
font-size:6vw;
font-weight:800;
line-height:1;
background:-webkit-gradient(linear,left top, right top,from(#38bdf8),to(#8b5cf6));
background:linear-gradient(90deg,#38bdf8,#8b5cf6);
-webkit-background-clip:text;
color:transparent;
margin-bottom:20px;
}

.hero-projects p{
color:#94a3b8;
max-width:700px;
margin:auto;
line-height:1.8;
}

/* CASE STUDY */
.case-study{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
-webkit-box-align:center;
-ms-flex-align:center;
align-items:center;
margin-top:80px;
padding-bottom:100px;
border-bottom:1px solid rgba(255,255,255,.05);
}

.case-media{
overflow:hidden;
border-radius:24px;
}

.case-media img{
width:100%;
height:100%;
-o-object-fit:cover;
object-fit:cover;
-webkit-transition:1s;
transition:1s;
}

.case-media:hover img{
-webkit-transform:scale(1.05);
transform:scale(1.05);
-webkit-filter:brightness(.85);
filter:brightness(.85);
}

.case-content h3{
font-size:2rem;
margin-bottom:20px;
}

.case-content p{
color:#94a3b8;
line-height:1.9;
margin-bottom:20px;
}

/* TAGS */
.tags{
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-ms-flex-wrap:wrap;
flex-wrap:wrap;
gap:10px;
margin-top:25px;
}

.tags span{
padding:10px 16px;
background:#0f172a;
border:1px solid rgba(255,255,255,.08);
border-radius:30px;
font-size:.85rem;
color:#cbd5e1;
}

/* GALLERY */
.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:60px;
}

.gallery img{
width:100%;
height:320px;
-o-object-fit:cover;
object-fit:cover;
border-radius:18px;
-webkit-transition:.6s;
transition:.6s;
}

.gallery img:hover{
-webkit-transform:translateY(-10px);
transform:translateY(-10px);
}

/* GALLERY ITEM + OVERLAY */
.gallery-item{
position:relative;
overflow:hidden;
border-radius:18px;
}

.gallery-item img{
width:100%;
height:320px;
-o-object-fit:cover;
object-fit:cover;
display:block;
-webkit-transition:.6s;
transition:.6s;
}

.gallery-item:hover img{
-webkit-transform:scale(1.05);
transform:scale(1.05);
-webkit-filter:brightness(.55);
filter:brightness(.55);
}

.gallery-overlay{
position:absolute;
inset:0;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-align:center;
-ms-flex-align:center;
align-items:center;
-webkit-box-pack:center;
-ms-flex-pack:center;
justify-content:center;
opacity:0;
-webkit-transition:.4s;
transition:.4s;
background:rgba(5,8,22,.25);
}

.gallery-item:hover .gallery-overlay{
opacity:1;
}

/* CONTACT */
.contact{
text-align:center;
padding-bottom:140px;
}

.contact h2{
font-size:3rem;
margin-bottom:20px;
}

.contact p{
color:#94a3b8;
margin-bottom:30px;
}

/* FOOTER */
footer{
padding:40px;
text-align:center;
color:#64748b;
border-top:1px solid rgba(255,255,255,.05);
}

/* MOBILE */
@media(max-width:900px){

.hero-projects h1{
font-size:14vw;
}

.case-study{
grid-template-columns:1fr;
gap:40px;
}

.gallery{
grid-template-columns:1fr;
}

.gallery img,
.gallery-item img{
height:260px;
}

}