/* ===== RESET ===== */
html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f7f7;
    color:#222;
}

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

header{
    background:#0B2545;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;
}

.logo{
    color:white;
    font-size:32px;
    font-weight:bold;
    letter-spacing:1px;
}

nav a{

    color:white;

    text-decoration:none;

    margin-left:30px;

    font-size:18px;

    transition:.3s;
}

nav a:hover{

    color:#C89B3C;

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

.hero{
    height:90vh;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
url("images/imagen1.JPG"); 

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding-left:8%;
}

.hero-content{
    color:white;
    max-width:700px;
    padding-top:40px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:20px;
}

.hero h3{
    font-weight:normal;
    color:#f5f5f5;
    margin-bottom:40px;
}

.btn{
    background:#C89B3C;
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:8px;
    display:inline-block;
    font-weight:bold;
}
/* ===== ABOUT ===== */

.about{
    padding:80px 10%;
    background:#ffffff;
}

.about-text{
    max-width:900px;
    margin:auto;
}

.about h2{
    font-size:42px;
    color:#0B2545;
    margin-bottom:25px;
}

.about p{
    font-size:20px;
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}
/* ===== SERVICES ===== */

.services{
    background:#f5f5f5;
    padding:90px 10%;
}

.services h2{
    text-align:center;
    font-size:42px;
    color:#0B2545;
    margin-bottom:50px;
}

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

.service-card{
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

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

.service-card h3{
    color:#0B2545;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.6;
}
.highlights{
    padding:80px 10%;
    background:#f5f5f5;
}

.highlights h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.highlight-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.item{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.item h3{
    color:#0f2d63;
    margin-bottom:10px;
}

.item p{
    color:#555;
    line-height:1.6;
}
.gallery{
    padding:80px 10%;
    background:#f8f8f8;
}

.gallery h2{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    color:#1d2b53;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    transition:.3s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}
/* ===== VIDEOS ===== */

.videos{
    padding:80px 8%;
    background:#f8f8f8;
}

.videos h2{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

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

.video-grid video{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
/* ===== CONTACT ===== */

.contact{
    padding:80px 8%;
    text-align:center;
    background:#0f2348;
    color:white;
}

.contact h2{
    font-size:42px;
    margin-bottom:25px;
}

.contact p{
    font-size:20px;
    margin:15px 0;
}

.contact-btn{
    display:inline-block;
    margin-top:30px;
    background:#ffc107;
    color:#000;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.contact-btn:hover{
    background:#e0a800;
}
footer{
    background:#0b1f44;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:40px;
}
.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,.3);
    z-index: 999;
    transition: .3s;
}

.whatsapp:hover{
    transform: scale(1.1);
}
/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {

    header{
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    nav{
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero{
        height: auto;
        padding: 120px 20px 80px;
        text-align: center;
    }

    .hero-content{
        max-width: 100%;
        padding: 0;
    }

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

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

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

    .highlight-box{
        grid-template-columns: 1fr;
    }

    .about{
        padding: 50px 20px;
    }

    .contact{
        padding: 50px 20px;
        text-align: center;
    }

    .contact-btn{
        width: 100%;
        display: inline-block;
    }

    .whatsapp{
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }

}
html{
    scroll-behavior: smooth;
}

@media (max-width:768px){

    header{
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    nav{
        margin-top:15px;
    }

    nav a{
        margin:8px;
        display:inline-block;
    }

    .hero{
        padding:20px;
        text-align:center;
    }

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

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

    .hero h3{
        font-size:18px;
    }

    .gallery-grid,
    .services-grid,
    .video-grid{
        grid-template-columns:1fr;
    }
}
/* ===== AREAS WE SERVE ===== */

.areas{
    padding:80px 8%;
    background:#f8f8f8;
    text-align:center;
}

.areas h2{
    font-size:42px;
    color:#0B2545;
    margin-bottom:20px;
}

.areas p{
    max-width:800px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.7;
    color:#555;
}

.areas-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:700px;
    margin:auto;
}

.areas-grid div{
    background:white;
    padding:20px;
    border-radius:12px;
    font-size:20px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}
