/* ===============================
ARCHIVO: assets/css/style.css
=============================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f8f9fa;
    color:#212529;
}

/* NAVBAR */

.navbar{
    padding:20px 0;
    background:transparent;
    transition:0.3s;
    z-index:999;
}

/* CONTENEDOR BLANCO */

.nav-container{
    background:white;
    border-radius:18px;
    padding:12px 30px;
    box-shadow:0 5px 25px rgba(0,0,0,0.12);
}

/* LOGO */

.site-logo{
    height:75px;
    width:auto;
    object-fit:contain;
}

/* LINKS MENU */

.nav-link{
    margin-left:25px;
    font-weight:600;
    color:#222 !important;
    transition:0.3s;
    font-size:16px;
}

.nav-link:hover{
    color:#25d366 !important;
}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    background:url('../img/hero.jpg') center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
}

.hero h1{
    font-size:70px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-buttons .btn{
    margin:10px;
}

/* TITULOS */

.section-subtitle{
    color:#198754;
    font-weight:600;
    letter-spacing:2px;
}

h2{
    font-size:45px;
    font-weight:700;
    margin-bottom:20px;
}

/* ABOUT */

.about-section img{
    width:100%;
}

/* SERVICIOS */

.service-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.service-info{
    padding:30px;
}

.service-info h4{
    margin-bottom:15px;
    font-weight:700;
}

/* GALERIA */

.gallery-section{
    background:#fff;
}

.gallery-img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
}

.gallery-img:hover{
    transform:scale(1.03);
}

/* CTA */

.cta-section{
    background:#198754;
    color:white;
    padding:100px 20px;
}

.cta-section h2{
    font-size:50px;
}

/* MAPA */

.map-section iframe{
    filter:grayscale(20%);
    border-radius:15px;
}

/* CONTACTO */

.contact-page{
    min-height:100vh;
    padding-top:180px !important;
}

.contact-form{
    background:white;
    padding:50px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.form-control{
    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    padding-left:15px;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:#198754;
}

textarea.form-control{
    height:auto;
    padding-top:15px;
}

/* FOOTER */

.footer{
    background:#111;
    color:white;
    padding:50px 0;
}

.footer h4{
    margin-bottom:15px;
}

/* WHATSAPP */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    background:#25d366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    text-decoration:none;
    z-index:999;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    color:white;
}

/* RESPONSIVE */

@media(max-width:992px){

    .nav-container{
        padding:15px 20px;
    }

    .navbar-collapse{
        margin-top:15px;
    }

}

@media(max-width:768px){

    .site-logo{
        height:55px;
    }

    .hero{
        padding:0 20px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    h2{
        font-size:32px;
    }

    .cta-section h2{
        font-size:35px;
    }

    .contact-form{
        padding:30px;
    }

    .service-card img{
        height:220px;
    }

    .gallery-img{
        height:220px;
    }

    .nav-link{
        margin-left:0;
        padding:10px 0;
    }

}