/*=============== GOOGLE FONT ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=============== VARIABLES ===============*/
:root{

    --color-principal:#F97316;
    /*--color-principal:#0fb85d;*/
    --color-secundario:#1F2937;
    --color-blanco:#ffffff;
    --color-gris:#F3F4F6;
    --color-texto:#6B7280;
    --color-negro:#111827;

}
html,
body{

    overflow-x:hidden;

}

/*=============== RESET ===============*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    color:var(--color-texto);
    background:#fff;

}

section{

    padding:100px 0;

}

img{

    width:100%;
    display:block;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;

}

.container{

    max-width:1200px;

}

/*====================================================
                    NAVBAR
=====================================================*/

.navbar{
    position: fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1400px;
    padding:15px 35px;

    background:#1F2937;   /* <-- Agrega esta línea */

    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    z-index:9999;
}

.navbar-brand img{
    height: 85px;
    width: 90px;
    border-radius:10px;
}

.nav-link{

    color:#EA580C !important;

    font-weight:600;

    margin:0 12px;

    position:relative;

}

.nav-link:hover{

    color:var(--color-blanco) !important;

}

.btn-warning{

    background:var(--color-principal);
    border:none;
    border-radius:40px;
    padding:12px 28px;
    font-weight:600;

}

.btn-warning:hover{

    background:#ffffff;
    /*background:#0fb85d;*/

}


/*====================================================
                HERO
=====================================================*/

.hero{

    height:100vh;
    background:url("../img/nosotros.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    padding:120px 0;

}
.hero h1{
    font-size:70px;
    overflow:hidden;
}

.overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);

}

.hero .container{

    position:relative;
    z-index:10;

}

.subtitulo{

    color:var(--color-principal);
    letter-spacing:4px;
    font-size:18px;
    font-weight:700;

}

.hero h1{

    color:#fff;
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin:20px 0;

}

.hero h1 span{

    color:var(--color-principal);

}

.hero p{

    color:#ddd;
    font-size:18px;
    line-height:32px;
    margin-bottom:35px;
    max-width:650px;

}

.hero-buttons{

    display:flex;
    gap:20px;

}

.btn-principal{

    background:var(--color-principal);
    color:#fff;
    padding:15px 35px;
    border-radius:40px;
    transition:.4s;
    font-weight:600;

}

.btn-principal:hover{

    background:#EA580C;
    color:#fff;

}

.btn-secundario{

    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:40px;
    transition:.4s;
    font-weight:600;

}

.btn-secundario:hover{

    background:#fff;
    color:#111;

}

/*====================================================
            SCROLL NAVBAR
=====================================================*/

.navbar.scrolled{

    background:#1F2937;
    padding:10px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.20);

}

/*====================================================
                BOTÓN WHATSAPP
=====================================================*/

.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:30px;

    z-index:999;

    transition:.4s;

}

.whatsapp:hover{

    transform:scale(1.1);

    color:#fff;

}

/*====================================================
            BOTÓN IR ARRIBA
=====================================================*/

#btnTop{

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 60px;

    height: 60px;

    border: none;

    border-radius: 50%;

    background: #F97316;

    color: #fff;

    display: none;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    z-index: 9999;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);

    transition: .35s;

}

#btnTop:hover{

    transform: translateY(-5px);

    background:#EA580C;

}

#btnTop i{

    font-size:22px;

    line-height:1;

}
/*====================================================
                TÍTULOS
=====================================================*/

.titulo{

    font-size:40px;

    color:var(--color-negro);

    font-weight:700;

    margin-bottom:20px;

}

.subtitulo-seccion{

    color:var(--color-principal);

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:10px;

}

.texto{

    font-size:17px;

    line-height:30px;
    text-align: justify;

}
/*====================================================
                    NOSOTROS
=====================================================*/

.nosotros{

    background:#fff;

}

.img-nosotros{

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.feature{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:20px;

    border-radius:15px;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.feature:hover{

    transform:translateY(-8px);

}

.feature i{

    font-size:35px;

    color:var(--color-principal);

}

.feature h5{

    color:var(--color-negro);

    font-size:18px;

    margin-bottom:8px;

    font-weight:700;

}

.feature p{

    margin:0;

    font-size:14px;

}
/*====================================================
                MISIÓN Y VISIÓN
=====================================================*/

.mision-vision{

    background:#f8f9fa;

    padding:80px 0;
    text-align: justify;

}

.mv-card{

    display:flex;

    align-items:flex-start;

    gap:25px;

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

    transition:.4s;

}

.mv-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.mv-icon{

    min-width:80px;

    width:80px;

    height:80px;

    border-radius:50%;

    background:#F97316;

    display:flex;

    justify-content:center;

    align-items:center;

}

.mv-icon i{

    color:#fff;

    font-size:34px;

}

.mv-content h3{

    color:#1F2937;

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

}

.mv-content p{

    color:#6B7280;

    line-height:30px;

    margin:0;

}
/*====================================================
                SERVICIOS
=====================================================*/

.servicios{

    background:#f8f9fa;

}

.service-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.service-card img{

    height:250px;

    object-fit:cover;

    transition:.4s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-info{

    padding:30px;

}

.service-info i{

    width:70px;

    height:70px;

    background:#F97316;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:20px;

}

.service-info h4{

    font-weight:700;

    color:#1F2937;

    margin-bottom:15px;

}

.service-info p{

    color:#6B7280;

    line-height:28px;

}

/*====================================================
                POR QUÉ ELEGIRNOS
=====================================================*/

.porque{

    background:#ffffff;

}

.porque-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.porque-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.icono{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#F97316;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.icono i{

    color:#fff;

    font-size:38px;

}

.porque-card h4{

    color:#1F2937;

    font-size:22px;

    margin-bottom:15px;

    font-weight:700;

}

.porque-card p{

    color:#6B7280;

    line-height:28px;

}
/*====================================================
                ESTADÍSTICAS
=====================================================*/

.estadisticas{

    background:#1F2937;

    padding:90px 0;

}

.contador{

    color:#fff;

}

.contador h2{

    font-size:60px;

    color:#F97316;

    font-weight:800;

    margin-bottom:10px;

}

.contador p{

    font-size:18px;

    color:#ddd;

}
/*====================================================
                    PROYECTOS
=====================================================*/

.proyectos{

    background:#F8F9FA;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.project-card img{

    width:100%;

    height:350px;

    object-fit:cover;

    transition:.5s;

}

.project-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

    text-align:center;

    color:#fff;

    padding:30px;

}

.project-card:hover img{

    transform:scale(1.1);

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay h4{

    font-size:28px;

    margin-bottom:10px;

    font-weight:700;

}

.project-overlay p{

    color:#ddd;

}
/*====================================================
                    CLIENTES
=====================================================*/

.clientes{

    background:#fff;
    padding:100px 0;

}

.cliente-logo{

    background:#fff;

    padding: 5px;

    border-radius:18px;

    height:150px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 30px rgba(0,0,0,.08);

    transition:.4s;


}

.cliente-logo:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.cliente-logo img{

    max-width:140px;

    max-height:80px;

    object-fit:contain;

    filter:grayscale(100%);

    transition:.4s;

}

.cliente-logo:hover img{

    filter:none;

    transform:scale(1.08);

}
/*====================================================
                    CTA
=====================================================*/

.cta{

    background:#1F2937;

    padding:80px 0;

}

.cta-title{

    color:#fff;

    font-size:42px;

    font-weight:700;

    line-height:1.3;

}

.cta .btn-principal{

    display:inline-block;

    margin-top:20px;

}
/*====================================================
                    CONTACTO
=====================================================*/

.contacto{

    background:#F8F9FA;

}

.contact-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.form-control{

    border-radius:12px;

    padding:15px;

    border:1px solid #ddd;

}

.form-control:focus{

    box-shadow:none;

    border-color:#F97316;

}

.info-contacto{

    background:#1F2937;

    color:#fff;

    padding:40px;

    border-radius:20px;

    height:100%;

}

.info-contacto h4{

    margin-bottom:30px;

    font-size:28px;

}

.info-item{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i{
    width: 60px;
    height: 60px;
    min-width: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: #ff7a1a;
    color: #fff;
    font-size: 24px;

    flex-shrink: 0;
}

.info-item span{
    color: #fff;
    line-height: 1.6;
    word-break: break-word;
}
/*====================================================
                    FOOTER
=====================================================*/

.footer{

    background:#1F2937;

    color:#fff;

    padding:80px 0 30px;

}
.footer-logo{
    width:170px;
    margin-bottom:25px;
    transition:.4s;
}

.footer-logo:hover{
    transform:scale(1.05);
}

.footer-text{

    color:#C9CDD4;

    line-height:30px;

}

.footer h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
}

.footer h4::after{
    content:'';
    width:55px;
    height:4px;
    background:#F97316;
    display:block;
    margin-top:12px;
    border-radius:10px;
}

.footer ul{

    padding:0;

}

.footer ul li{

    list-style:none;

    margin-bottom:15px;

    color:#C9CDD4;

}

.footer ul li a{

    color:#C9CDD4;

    transition:.3s;

}

.footer ul li a:hover{

    color:#F97316;

    padding-left:6px;

}

.footer ul li i{

    color:#F97316;

    margin-right:10px;

}

.social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social a{

    width:45px;

    height:45px;

    background:#F97316;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s;

}

.social a:hover{

    transform:translateY(-6px);

    background:#fff;

    color:#F97316;

}

.footer hr{

    margin:50px 0 20px;

    border-color:rgba(255,255,255,.15);

}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:60px;
    padding-top:30px;
    text-align:center;
}
.copyright{

    text-align:center;

    color:#aaa;

    font-size:15px;

}
#btnTop{

display:none;

}
.correo-footer{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.correo-footer a{
    color:#C9CDD4;
    text-decoration:none;

    overflow-wrap:anywhere;
    word-break:break-word;
    white-space:normal;
}

.correo-footer a:hover{
    color:#F97316;
}


/*====================================================
                EXTRAS PROFESIONALES
=====================================================*/

html{
    scroll-behavior:smooth;
}

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#F3F4F6;
}

::-webkit-scrollbar-thumb{
    background:#F97316;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#EA580C;
}

::selection{
    background:#F97316;
    color:#fff;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(17,24,39,.78),rgba(17,24,39,.35));
    z-index:1;
}

.overlay{
    z-index:2;
}

.hero .container{
    z-index:3;
}

.navbar.scrolled{
    top:10px;
    background:#111827;
}

.titulo::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#F97316;
    margin:15px auto 0;
    border-radius:10px;
}
/*==================================
            MAPA
==================================*/

.mapa{

    margin-top:40px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.mapa iframe{

    width:100%;

    height:350px;

    display:block;

}

/* icono zanjadora */
.icono-zanjadora{
    width: 60px;
    height: 60px;
    object-fit:contain;
}
/* .service-icon{
    width:40px;
    height: 40px;
    padding:15px;
    background:#F97316;
    border-radius:50%;
    object-fit:contain;
    margin-bottom:20px;
    filter: brightness(0) invert(1);
} */

/* ===========================
   TABLET
=========================== */

@media (max-width:991px){

    section{
        padding:70px 0;
    }

    h1{
        font-size:42px;
    }

    h2{
        font-size:34px;
    }

    .navbar{
        padding:15px;
    }

    .footer{
        text-align:center;
    }

}
/* ===========================
   CELULARES
=========================== */

@media (max-width:768px){

    h1{
        font-size:34px;
    }

    h2{
        font-size:28px;
    }

    h3{
        font-size:24px;
    }

    p{
        font-size:16px;
    }

    img{
        max-width:100%;
        height:auto;
    }

}
@media (max-width:576px){

    body{
        overflow-x:hidden;
    }

    .container{
        padding-left:20px;
        padding-right:20px;
    }

}
@media(max-width:768px){

.btn{

    width:100%;

    padding:15px;

}

}
@media(max-width:768px){

.footer{

    text-align:center;

}

.footer ul{

    padding:0;

}

.footer .social{

    justify-content:center;

}

}
/* ==========================
   NAVBAR RESPONSIVE
========================== */

@media (max-width: 991px){

    .navbar{
        padding: 10px 20px;
    position: fixed;
    }

    .navbar-brand img{
        width: 110px;
        height: auto;
    }

    .navbar-collapse{
        background: #1F2937;
        margin-top: 15px;
        border-radius: 12px;
        padding: 15px;
    }

    .navbar-nav{
        text-align: center;
    }

    .navbar-nav .nav-link{
        padding: 12px 0;
        font-size: 18px;
    }

    .navbar-toggler{
        border: none;
        box-shadow: none;
    }
}

