@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;
}

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

html,
body{
    width:100%;
    min-height:100%;
    overflow-x:hidden;
    background:#fff;
    color:#000;
    font-family:'Lato', sans-serif;
    font-size:18px;
    font-weight:400;
    line-height:1.45;
}

a{
    color:inherit;
    text-decoration:none;
}

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

/* ==============================
   HEADER / MENU
============================== */
.headerWrap{
    position:relative;
    width:100%;
}

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

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

.headerMenu{
    position:relative;
    width:100%;
    height:60px;
    padding-right:30px;
    background:#d3d3d3;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.headerMenu::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    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);
    z-index:2;
}

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

.btnHeader01{
    margin-right:20px;
    cursor:pointer;
    user-select:none;
    font-size:13px;
    font-weight:500;
    letter-spacing:1.5px;
}

.btnHeader01:hover{
    color:#ca0f16;
}

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

.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 ease;
}

.hamburgerActivo span:nth-child(1){
    transform:translateY(12px) rotate(45deg);
}

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

.hamburgerActivo span:nth-child(3){
    transform:translateY(-13px) rotate(-45deg);
}

/* ==============================
   CONTENIDO
============================== */
.contMain{
    width:60%;
    max-width:1100px;
    min-height:600px;
    margin:0 auto;
    background-image:url("../img/401.png");
    background-repeat:no-repeat;
    background-position:right center;
    background-size:400px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.titleMain{
    width:100%;
    max-width:720px;
    padding:30px;
}

.cl01{
    margin-bottom:20px;
    color:#253e51;
    font-size:30px;
    font-weight:700;
    line-height:1.2;
    user-select:none;
}

.cl02{
    width:100%;
    max-width:530px;
    color:#253e51;
    font-size:17px;
    font-weight:400;
    line-height:1.65;
    text-align:justify;
}

.mnuCentral{
    width:60%;
    max-width:520px;
    margin-left:30px;
    padding:40px 30px 30px;
    background:#f5f5f5;
    border-radius:13px;
    box-shadow:0 0 10px #fff;
}

.cl03{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    color:#253e51;
    font-size:17px;
    font-weight:700;
    text-align:center;
    word-break:break-word;
}

.btn03,
.btn05{
    min-width:190px;
    width:auto;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    border:.5px solid #e0e0e0;
    border-radius:5px;
    cursor:pointer;
    background:#c50000;
    color:#fff;
    font-size:14px;
    letter-spacing:1px;
    text-align:center;
    user-select:none;
}

.btn03:hover,
.btn05:hover{
    background:#fff;
    box-shadow:0 0 30px #fff;
    border-color:#c50000;
    color:#c50000;
    transition:.3s linear;
}

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

    .headerLogo img{
        width:230px;
    }

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

    .contMain{
        width:90%;
        min-height:560px;
        background-size:330px;
        background-position:right bottom;
    }

    .titleMain{
        padding:25px;
    }

    .mnuCentral{
        width:65%;
        margin-left:25px;
    }
}

/* ==============================
   CELULAR / MENU HAMBURGUESA
============================== */
@media only screen and (max-width:767px){
    html,
    body{
        font-size:16px;
        line-height:1.5;
    }

    .headerWrap{
        position:relative;
        width:100%;
        min-height:72px;
        background:#fff;
        border-bottom:1px solid #e7e7e7;
        box-shadow:0 4px 14px rgba(0,0,0,.07);
        z-index:100;
    }

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

    .headerLogo img{
        width:230px;
        max-width:58vw;
        margin:0 auto;
    }

    .headerMenu{
        position:relative;
        width:100%;
        min-height:72px;
        height:auto;
        padding:0 15px;
        display:flex;
        justify-content:flex-start;
        align-items:center;
        flex-wrap:wrap;
        background:#fff;
    }

    .hamburger{
        display:flex;
        position:relative;
        flex:0 0 34px;
        align-self:center;
        z-index:30;
    }

    .hamburger span{
        background:#111;
    }

    .menuItems{
        display:none;
        position:absolute;
        top:72px;
        left:0;
        width:100%;
        margin:0;
        padding:14px 18px 16px;
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
        background:#fff;
        border-top:1px solid #ececec;
        box-shadow:0 8px 14px rgba(0,0,0,.08);
        z-index:25;
    }

    .menuItems.menuActivo{
        display:flex;
    }

    .btnHeader01{
        width:100%;
        margin-right:0;
        padding:9px 0;
        color:#000;
        font-size:12px;
        text-align:left;
    }

    .btnHeader01:hover{
        color:#ca0f16;
    }

    .contMain{
        width:100%;
        min-height:auto;
        padding:35px 15px;
        background-image:none;
        justify-content:flex-start;
        align-items:center;
        text-align:center;
    }

    .titleMain{
        width:100%;
        padding:15px 5px;
    }

    .cl01{
        font-size:25px;
        text-align:center;
    }

    .cl02{
        max-width:100%;
        font-size:15px;
        line-height:1.6;
        text-align:center;
    }

    .mnuCentral{
        width:100%;
        max-width:420px;
        margin:20px auto 0;
        padding:25px 15px;
    }

    .btn03,
    .btn05{
        width:100%;
        max-width:260px;
    }
}

@media only screen and (max-width:380px){
    .headerLogo img{
        width:205px;
        max-width:60vw;
    }

    .cl01{
        font-size:23px;
    }

    .mnuCentral{
        padding:22px 12px;
    }
}
