@charset "utf-8";
@font-face{
    font-family:'Lato';
    src:url("../../system/font/Lato/Lato-Light.ttf") format('truetype');
    font-weight:300;
    font-style:normal;
    font-display:swap;
}
@font-face{
    font-family:'Lato';
	src:url("../../system/font/Lato/Lato-Regular.ttf") format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Lato';
	src:url("../../system/font/Lato/Lato-Bold.ttf") format('truetype');
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

:root{
    --color-primario:#253e51;
    --color-acento:#c50000;
    --color-acento-hover:#CA0F16;
    --color-borde:#E0E0E0;
    --color-header:#D3D3D3;
    --color-card:#F5F5F5;
    --radio:13px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
    overflow-x:hidden;
}

body{
    background:#fff;
    color:#000;
    font-family:'Lato', sans-serif;
    font-size:18px;
    font-weight:400;
    line-height:30px;
}

a{
    color:inherit;
    text-decoration:none;
}
/****************
FORMATO INPUT GENERAL
*****************/
input,
select,
textarea,
button{
    font-family:inherit;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="telefono"]:focus,
input[type="checkbox"]:focus,
select:focus,
textarea:focus{
    outline:none;
    border:3px solid mediumblue;
    box-shadow:0 0 0 5px rgba(0,170,255,.5);
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="telefono"]:hover,
input[type="checkbox"]:hover,
select:hover,
textarea:hover{
    outline:none;
    border:3px solid mediumblue;
}

.input01{
    float:left;
    width:340px;
    height:50px;
    margin:0 auto;
    padding:10px;
    background:#fff;
    border:.5px solid #e0e0e0;
    border-radius:5px;
    font-size:13px;
    text-indent:10px;
    user-select:none;
}
/* =========================
   HEADER
========================= */
.headerWrap{
    position:relative;
    width:100%;
    background:#fff;
    border-bottom:1px solid #E5E5E5;
    box-shadow:0 3px 12px rgba(0,0,0,.06);
}

.headerLogo{
    position:absolute;
    top:4px;
    left:30px;
    z-index:10;
}

.headerLogo img{
    display:block;
    width:300px;
    height:auto;
}

.headerMenu{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    width:100%;
    min-height:60px;
    padding:0 30px 0 330px;
    background:var(--color-header);
}

.headerMenu::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    z-index:2;
    width:100%;
    height:3px;
    background:linear-gradient(to right, #00aaff, #8c8c8c);
    box-shadow:0 0 8px rgba(0,170,255,.9), 0 0 15px rgba(0,170,255,.5);
}

.btnHeader01{
    cursor:pointer;
    user-select:none;
    white-space:nowrap;
    font-size:13px;
    font-weight:500;
    letter-spacing:1.5px;
}

.btnHeader01:hover{
    color:var(--color-acento-hover);
}

.btnHeader01 .ico50{
    margin-right:4px;
    font-size:22px;
    vertical-align:middle;
}

/* =========================
   HAMBURGER
========================= */
.hamburger{
    display:none;
    width:34px;
    height:28px;
    cursor:pointer;
    flex-direction:column;
    justify-content:space-between;
    z-index:20;
}

.hamburger span{
    width:100%;
    height:3px;
    background:#111;
    border-radius:3px;
    transition:.25s;
}

.menuItems{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:30px;
}

/* =========================
   LOADER / OVERLAY
========================= */
.loader{
    position:fixed;
    inset:0;
    z-index:9999;
    background:url("../../system/img/loader.gif") 50% 50% no-repeat rgb(249,249,249);
    opacity:.8;
}

.overlay{
    position:fixed;
    inset:0;
    z-index:-1;
    background:#000;
    opacity:0;
    transition:.3s ease;
}

.overlay.active{
    z-index:2;
    opacity:.5;
}

/* =========================
   CONTENIDO PRINCIPAL
========================= */
.contMain{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    width:min(1180px, 92%);
    min-height:620px;
    margin:120px auto 0;
    padding-bottom:40px;
}

.titleMain{
    position:relative;
    z-index:2;
    width:58%;
    max-width:720px;
    padding:30px;
}

.cl01{
    width:100%;
    margin-bottom:20px;
    color:var(--color-primario);
    font-size:clamp(26px, 3vw, 38px);
    font-weight:700;
    line-height:1.25;
    text-align:left;
}

.cl02{
    width:100%;
    color:var(--color-primario);
    font-size:17px;
    font-weight:400;
    line-height:1.6;
    text-align:justify;
}

.mnuCentral{
    position:relative;
    z-index:2;
    width:52%;
    max-width:640px;
    margin-left:30px;
    padding:40px 30px 30px;
    background:var(--color-card);
    border-radius:var(--radio);
    box-shadow:0 0 10px rgba(0,0,0,.06);
}

.cl03{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width:100%;
    margin:0 auto;
}

.cl04,
.line01{
    display:flex;
    align-items:center;
}

.cl04{
    justify-content:space-between;
}

.line01{
    justify-content:space-between;
    width:160px;
}

.vendeImg{
    position:absolute;
    top:20px;
    right:-130px;
    z-index:1;
    width:55%;
    pointer-events:none;
}

.vendeImg img{
    display:block;
    width:100%;
    height:auto;
}

/* =========================
   FORMULARIO
========================= */


/*.input01,
.input02{
    height:50px;
    padding:10px;
    background:#fff;
    border:.5px solid var(--color-borde);
    border-radius:5px;
    font-size:13px;
    text-indent:10px;
    user-select:none;
}

.input01{ width:260px; }
.input02{ width:100px; }*/

.btn03{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:150px;
    min-height:50px;
    margin:1px;
    padding:10px;
    background:var(--color-acento);
    border:.5px solid var(--color-borde);
    border-radius:5px;
    color:#fff;
    cursor:pointer;
    font-size:14px;
    letter-spacing:1px;
    text-align:center;
}

.btn03:hover{
    background:#fff;
    border-color:var(--color-acento);
    box-shadow:0 0 30px #fff;
    color:var(--color-acento);
    transition:all .4s linear;
}

.buscarVendedorBox{
    width:100%;
    margin-bottom:25px;
    padding:15px;
    background:#fff;
    border-left:4px solid var(--color-acento);
    border-radius:10px;
}

.buscarTitulo{
    margin-bottom:12px;
    color:var(--color-primario);
    font-size:15px;
    font-weight:700;
    line-height:1.4;
}

.buscarLinea{
    display:flex;
    align-items:center;
    gap:12px;
}

.inputBuscarVendedor{
    width:100%;
    max-width:360px;
}

.respuestaVendedor{
    margin-top:10px;
    color:var(--color-acento);
    font-size:13px;
    font-weight:700;
    line-height:1.4;
}

/* =========================
   MODAL
========================= */
.modalOpciones{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:16px;
    background:rgba(0,0,0,.55);
}

.modalContenido{
    width:90%;
    max-width:430px;
    padding:25px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 0 30px rgba(0,0,0,.25);
    text-align:center;
}

.modalTitulo{
    margin-bottom:10px;
    color:var(--color-primario);
    font-size:20px;
    font-weight:700;
}

.modalTexto{
    margin-bottom:20px;
    color:#555;
    font-size:15px;
    line-height:1.45;
}

.modalBotones{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.modalBotones .btn03{
    flex-direction:column;
    width:180px;
    height:95px;
    gap:10px;
    font-size:15px;
}

.modalBotones .btn03 span{
    font-size:34px;
}

.modalCerrar{
    margin-top:18px;
    color:var(--color-acento);
    cursor:pointer;
    font-size:13px;
    font-weight:700;
}

.modalCerrar:hover{
    text-decoration:underline;
}

/* =========================
   TABLET
========================= */
@media only screen and (max-width:1024px){
    .headerLogo{
        top:5px;
        left:20px;
    }

    .headerLogo img{
        width:230px;
    }

    .headerMenu{
        min-height:55px;
        padding:0 20px 0 260px;
    }

    .menuItems{
        gap:20px;
    }

    .contMain{
        align-items:center;
        width:92%;
        min-height:auto;
        margin-top:80px;
        padding-bottom:40px;
    }

    .titleMain{
        width:100%;
        max-width:760px;
        padding:20px;
        text-align:center;
    }

    .cl01{
        font-size:32px;
        line-height:1.25;
        text-align:center;
    }

    .cl02{
        font-size:17px;
        line-height:1.55;
        text-align:center;
    }

    .mnuCentral{
        width:100%;
        max-width:680px;
        margin:10px auto 0;
        padding:30px 25px;
    }

    .vendeImg{
        position:static;
        width:100%;
        margin-top:25px;
        text-align:center;
    }

    .vendeImg img{
        width:100%;
        max-width:460px;
        margin:0 auto;
    }
}

/* =========================
   CELULAR
========================= */
@media only screen and (max-width:600px){
    body{
        font-size:16px;
        line-height:24px;
    }
    .headerWrap{
        position:relative;
        display:block;
        width:100%;
        height:60px;
        background:#fff;
    }

    .headerLogo{
        position:absolute;
        top:50%;
        left:50%;
        width:auto;
        padding:0;
        transform:translate(-50%, -50%);
        text-align:center;
        background:transparent;
        z-index:10002;
        pointer-events:none;
    }

    .headerLogo img{
        width:145px; /* Se conserva el tamaño actual del logo */
        height:auto;
        margin:0;
    }

    .headerMenu{
        position:absolute;
        inset:0;
        width:100%;
        min-height:60px;
        padding:0 15px;
        display:flex;
        flex-direction:row;
        justify-content:flex-start;
        align-items:center;
        background:#fff;
        z-index:10000;
    }

    .hamburger{
        display:flex;
        width:42px;
        height:42px;
        justify-content:center;
        align-items:center;
        flex-direction:column;
        gap:6px;
        z-index:10003;
    }

    .hamburger span{
        width:26px;
        height:3px;
        background:#000;
        border-radius:3px;
    }

    .menuItems{
        display:none;
        position:absolute;
        top:60px;
        left:0;
        width:100%;
        margin-top:0;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        background:#fff;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
        z-index:10001;
    }

    .menuItems.menuActivo{
        display:flex;
    }

    .btnHeader01{
        display:flex;
        justify-content:flex-start;
        align-items:center;
        width:100%;
        min-height:52px;
        padding:14px 22px;
        color:#000;
        background:#fff;
        border-bottom:1px solid #ececec;
        text-align:left;
        font-size:12px;
        letter-spacing:1.5px;
    }

    .btnHeader01:hover{
        color:var(--color-acento-hover);
    }

    .btnHeader01 .ico50{
        margin-right:4px;
        font-size:22px;
    }

    .hamburgerActivo span:nth-child(1){
        transform:rotate(45deg) translate(8px, 8px);
    }

    .hamburgerActivo span:nth-child(2){
        opacity:0;
    }

    .hamburgerActivo span:nth-child(3){
        transform:rotate(-45deg) translate(9px, -9px);
    }

    .contMain{
        align-items:center;
        width:100%;
        margin:0 auto;
        padding:70px 12px 30px;
    }

    .titleMain{
        width:100%;
        padding:10px 0;
    }

    .cl01{
        margin-bottom:14px;
        font-size:24px;
        line-height:1.25;
        text-align:center;
    }

    .cl02{
        font-size:14px;
        line-height:1.45;
        text-align:center;
    }

    .mnuCentral{
        width:100%;
        max-width:100%;
        margin:18px auto 0;
        padding:18px 12px;
        border-radius:12px;
    }

    .buscarVendedorBox{
        margin-bottom:0;
        padding:14px 12px;
    }

    .buscarTitulo{
        font-size:14px;
        text-align:center;
    }

    .buscarLinea{
        flex-direction:column;
        align-items:stretch;
        gap:10px;
    }

    .inputBuscarVendedor,
    .buscarLinea .btn03,
    .btn03{
        width:100%;
        max-width:none;
    }

    .vendeImg{
        position:static;
        display:flex;
        justify-content:center;
        align-items:center;
        width:100%;
        margin:25px auto 0;
        padding:0 12px;
        text-align:center;
    }

    .vendeImg img{
        display:block;
        width:min(92vw, 420px);
        max-width:100%;
        height:auto;
        margin:0 auto;
    }

    .modalContenido{
        width:100%;
        padding:20px 14px;
    }

    .modalBotones{
        flex-direction:column;
        align-items:stretch;
    }

    .modalBotones .btn03{
        width:100%;
        height:78px;
    }

}
