/*==========================
        RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    color:#1F2937;
    background:#fff;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*==========================
        HEADER
==========================*/

.header{
    position:fixed;
    width:100%;
    top:0;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:100;
}

.navbar{
    max-width:1200px;
    margin:auto;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    color:#374151;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#C8A96A;
}

/*==========================
        HERO
==========================*/

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?w=1600");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:1200px;
    margin:auto;
    padding:8%;
    color:white;
}

.hero span{
    color:#C8A96A;
    letter-spacing:3px;
}

.hero h1{
    font-size:60px;
    margin:20px 0;
}

.hero p{
    max-width:600px;
    line-height:1.7;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#C8A96A;
    color:white;
    border-radius:40px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
    background:#b6914e;
}

/*==========================
        STATS
==========================*/

.stats{
    padding:90px 8%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    text-align:center;
}

.stat{
    padding:35px;
    border:1px solid #E5E7EB;
    border-radius:18px;
}

.stat h2{
    font-size:52px;
    color:#C8A96A;
}

.stat p{
    color:#6B7280;
    margin-top:10px;
}

/*==========================
        TITULOS
==========================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#C8A96A;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    margin-top:10px;
}

/*==========================
        SERVICIOS
==========================*/

.services{
    padding:100px 8%;
    background:#F8F9FA;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:white;
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:45px;
    color:#C8A96A;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

/*==========================
        PROYECTOS
==========================*/

.projects{
    padding:100px 8%;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.project{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.project:hover{
    transform:translateY(-8px);
}

.project img{
    height:260px;
    object-fit:cover;
}

.project-info{
    padding:25px;
}

/*==========================
        CONTACTO
==========================*/

.contact{
    padding:100px 8%;
    background:#111827;
    color:white;
}

form{
    max-width:650px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{
    padding:16px;
    border:none;
    border-radius:10px;
}

textarea{
    resize:none;
    height:150px;
}

button{
    padding:16px;
    background:#C8A96A;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#b6914e;
}

/*==========================
        FOOTER
==========================*/

footer{
    padding:40px;
    background:#0F172A;
    color:white;
    text-align:center;
}

footer p{
    margin:10px 0;
    color:#D1D5DB;
}

footer span{
    color:#9CA3AF;
    font-size:14px;
}

/*==========================
        RESPONSIVE
==========================*/

@media(max-width:900px){

.hero h1{
    font-size:42px;
}

.stats,
.cards{
    grid-template-columns:1fr;
}

.menu{
    display:none;
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:600px){

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:15px;
}

.stats{
    padding:70px 8%;
}

.services,
.projects,
.contact{
    padding:80px 8%;
}

.card{
    padding:30px;
}

}
.navbar .home-link{
    padding:10px 18px;
    border:1px solid rgba(0, 0, 0, 0.55);
    border-radius:999px;
    background:rgba(68, 72, 74, 0.12);
    color: #1F2937;
}

.navbar .home-link:hover{
    background:#000000;
    color:#f8f8f8;}