/* =====================================================
   GLOBAL.CSS — LIFT WORKS SOLUTIONS
   Estilos globales del sitio
===================================================== */


/* =====================================================
   RESET GLOBAL
===================================================== */

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}


/* ================================ 
   NAVBAR PROFESIONAL
================================ */

.navbar-custom{
    background-color:#2f3640;

    min-height:60px;             /* altura fija de la barra */
    padding:0 40px;           /* elimina padding vertical */

    display:flex;
    align-items:center; 
     border-radius:12px;
    margin:15px;      /* centra verticalmente */
}


/* LOGO */

.navbar-brand{
    padding:0;
    display:flex;
    align-items:center;
}

.navbar-logo{
    height:45px;              /* tamaño real del logo */
    width:auto;

}


/* LINKS NAVBAR */

.navbar-custom .navbar-nav{
    align-items:center;
    gap:30px;
}

.navbar-custom .nav-link{
    color:#dcdde1;
    font-weight:500;
    font-size:16px;
    transition:0.3s ease;
}

.navbar-custom .nav-link:hover{
    color:#ffffff;
}
.navbar-toggler{
    border:none;
}

.navbar-toggler-icon{
    filter: invert(1);
}

/* BOTÓN AUDITORÍA */

.btn-auditoria{
    background:#e84118;
    color:#ffffff;
    padding:10px 22px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

.btn-auditoria:hover{
    background:#c23616;
}


/* =====================================================
   HERO / JUMBOTRON
===================================================== */

.custom-jumbotron{
   background-image:url('img/inicio.jpeg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:12px;

    padding:60px 40px;
    margin-top:20px;
}

.custom-jumbotron .content{
    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(6px);

    padding:30px;
    border-radius:12px;

    max-width:650px;

    color:#ffffff;
}

.custom-jumbotron h1{
    font-weight:600;
    margin-bottom:15px;
}

.custom-jumbotron p{
    font-size:17px;
    line-height:1.6;
}


/* =====================================================
   BOTONES GLOBALES
===================================================== */

.btn-primary{
    background:#0d6efd;
    border:none;
    padding:10px 20px;
    font-weight:500;
    border-radius:6px;
    transition:0.3s ease;
}

.btn-primary:hover{
    background:#0b5ed7;
}


/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float{
    position:fixed;

    bottom:25px;
    left:25px;

    width:65px;
    height:65px;

    background-color:#25D366;
    color:#ffffff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 6px 15px rgba(0,0,0,0.35);

    z-index:9999;

    transition:0.3s ease;
}

.whatsapp-float:hover{
    background-color:#1ebe5d;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:768px){

    /* Logo */

    .navbar-logo{
        height:50px;
    }

    /* Botón auditoría */

    .btn-auditoria{
        margin-top:10px;
        display:inline-block;
    }

    /* Hero */

    .custom-jumbotron{
        padding:30px 20px;
    }

    .custom-jumbotron .content{
        max-width:100%;
        text-align:left;
    }

    .custom-jumbotron h1{
        font-size:28px;
        line-height:1.2;
    }

    .custom-jumbotron p{
        font-size:15px;
    }

    /* WhatsApp */

    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:24px;

        bottom:20px;
        left:20px;
    }

}
@media (max-width:991px){

.navbar-custom .navbar-nav{
    gap:0;
    text-align:center;
}

.navbar-custom .nav-link{
    padding:12px 0;
}

.navbar-cta{
    text-align:center;
    margin-top:10px;
}

}
/* =================================
   MODAL AUDITORÍA PROFESIONAL
================================ */

.auditoria-modal{

background:#2f3640;

color:white;

border-radius:12px;

border:none;

}

.modal-header{

border-bottom:1px solid rgba(255,255,255,0.1);

}

.modal-title{

font-weight:600;

}

.auditoria-texto{

font-size:15px;

margin-bottom:20px;

opacity:0.9;

}

.auditoria-form label{

font-size:14px;

}

.auditoria-form .form-control{

background:#1e272e;

border:none;

color:white;

border-radius:6px;

}

.auditoria-form .form-control:focus{

background:#1e272e;

color:white;

box-shadow:0 0 0 2px rgba(232,65,24,0.4);

}

.auditoria-form textarea{

resize:none;

}