@charset "utf-8";

/* ==============================
   FUENTES
============================== */
@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;
}

/* ==============================
   BASE
============================== */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

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

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

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

img{
    display:block;
    max-width:100%;
}
/****************
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,
input[type="email"]: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,
input[type="email"]: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;
}
/* ==============================
   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;
    cursor:wait;
}

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

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

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

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

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

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

.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:rotate(45deg) translate(8px, 8px);
}

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

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

/* ==============================
   CONTENIDO
============================== */
.contMain{
    width:70%;
    min-height:600px;
    margin:0 auto;
    background:url("../../system/img/mail.png") right center/600px no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}

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

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

.cl02,
.cl09,
.cl06{
    text-align:justify;
    text-justify:inter-word;
    hyphens:auto;
}

.cl02{
    width:530px;
    max-width:100%;
    color:#253e51;
    font-size:17px;
    font-weight:400;
}

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

.cl03,
.cl15{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.cl15{
    justify-content:space-evenly;
}

.cl08{
    color:darkred;
    font-weight:700;
}

.cl09{
    width:450px;
    max-width:100%;
    margin:80px 0 0 70px;
    color:#253e51;
    font-size:13px;
    font-weight:300;
}

.cl04{
    width:max-content;
    max-width:100%;
    margin:10px 0 0 50px;
    color:#625e5e;
    cursor:pointer;
    font-size:16px;
    letter-spacing:1px;
    text-decoration:underline;
}

.cl04:hover{
    color:crimson;
    font-weight:700;
    letter-spacing:2px;
    transition:.4s linear;
}

/* ==============================
   DETALLES / FOOTER INFO
============================== */
.details{
    width:100%;
    margin-top:auto;
    padding:20px 0;
    background:#e9e8ec;
    color:#253e51;
    font-size:17px;
    font-weight:400;
}

.co08{
    width:60%;
    margin:0 auto;
    padding:20px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cl07{
    flex:0 0 150px;
    width:150px;
    height:70px;
    background:url("../../system/img/spam.png") center/contain no-repeat;
}

.cl06{
    flex:1;
}

/* ==============================
   BOTONES / FORMULARIO LEGADO
============================== */
.cl05{
    margin-left:30px;
}

.line01{
    width:160px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}


.btn03,
.btn04{
    margin:1px;
    padding:10px;
    border:.5px solid #e0e0e0;
    border-radius:5px;
    background:#c50000;
    color:#fff;
    cursor:pointer;
    letter-spacing:1px;
    font-size:14px;
    text-align:center;
}

.btn03{
    width:120px;
}

.btn04{
    width:180px;
}

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

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

    .headerLogo img{
        width:240px;
    }

    .headerMenu{
        padding-right:20px;
    }

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

    .titleMain{
        width:58%;
        padding:25px 0;
    }

    .mnuCentral{
        width:58%;
        min-width:0;
        margin-left:0;
    }

    .cl09{
        width:58%;
        margin-left:0;
    }

    .co08{
        width:85%;
    }
}

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

    .headerLogo{
        position:relative;
        top:auto;
        left:auto;
        padding:10px 0;
        text-align:center;
    }

    .headerLogo img{
        width:230px;
        margin:0 auto;
    }

    .headerMenu{
        height:auto;
        min-height:55px;
        padding:12px 15px;
        background:rgba(0,0,0,.70);
        justify-content:flex-start;
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .hamburger{
        display:flex;
    }

    .hamburger span{
        background:#fff;
    }

    .menuItems{
        display:none;
        width:100%;
        margin-top:15px;
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .menuItems.menuActivo{
        display:flex;
    }

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

    .contMain{
        width:100%;
        min-height:auto;
        padding:25px 15px 35px;
        background-size:220px;
        background-position:center bottom;
        justify-content:flex-start;
        align-items:center;
    }

    .titleMain{
        width:100%;
        padding:15px 0;
        text-align:center;
    }

    .cl01{
        font-size:28px;
    }

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

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

    .cl03,
    .cl15{
        flex-direction:column;
        align-items:center;
        gap:12px;
        font-size:14px;
        line-height:1.5;
        text-align:center;
        overflow-wrap:anywhere;
    }

    .cl09{
        width:100%;
        margin:25px 0 170px;
        font-size:13px;
        line-height:1.6;
        text-align:center;
    }

    .cl04{
        margin:10px auto 0;
        font-size:14px;
    }

    .details{
        position:relative;
        padding:15px;
        font-size:14px;
        line-height:1.6;
    }

    .co08{
        width:100%;
        padding:0;
        flex-direction:column;
        text-align:center;
    }

    .cl07{
        flex:0 0 70px;
    }

    .cl06{
        width:100%;
        text-align:center;
    }

    .btn03,
    .btn04{
        width:100%;
        max-width:230px;
    }
}

/* ==============================
   FIX DESKTOP
============================== */
@media only screen and (min-width:768px){
    .hamburger{
        display:none !important;
    }

    .menuItems{
        display:flex !important;
        width:auto;
        margin-top:0;
        flex-direction:row;
        align-items:center;
        justify-content:flex-end;
    }
}
.cardStatus{
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.14);
    text-align: center;
    margin: 24px auto;
}

.logoStatus{
    width: 230px;
    max-width: 100%;
    margin: 0 auto 25px;
}

.okStatus{
    font-size: 28px;
    color: #008000;
    margin-bottom: 15px;
}

.msgStatus{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #253e51;
}

.btnStatus{
    display: inline-block;
    background: #d00000;
    color: #fff;
    padding: 13px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btnStatus:hover{
    background: #fff;
    color: #d00000;
    outline: 1px solid #d00000;
}
html,
body{
    width:100%;
    height:100%;
}

.statusPage{
    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:25px;
    box-sizing:border-box;

    background:#f5f5f5;
}

.cardStatus{
    width:100%;
    max-width:650px;

    background:#fff;

    border-radius:16px;

    padding:40px 35px;

    text-align:center;

    box-shadow:0 15px 45px rgba(0,0,0,.15);
}
.statusTitle{
    font-size:28px;
    font-weight:bold;
    margin-bottom:20px;
}
.statusPage{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
    padding:25px;
    box-sizing:border-box;
}

.cardStatus{
    width:100%;
    max-width:650px;
    background:#fff;
    border-radius:16px;
    padding:40px 35px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.15);
}

.logoStatus{
    width:230px;
    margin:0 auto 30px;
    display:block;
}

.statusTitle{
    font-size:28px;
    font-weight:bold;
    margin-bottom:20px;
}

.msgStatus{
    font-size:18px;
    line-height:1.7;
    color:#253e51;
    margin-bottom:30px;
}

.btnStatus{
    display:inline-block;
    background:#c50000;
    color:#fff;
    padding:14px 24px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.btnStatus:hover{
    background:#fff;
    color:#c50000;
    outline:1px solid #c50000;
}
.correoBox{
    width:100%;
    max-width:450px;
}

.correoTitulo{
    margin-bottom:10px;
    color:#253e51;
    font-size:15px;
    font-weight:700;
}

#correo{
    width:100%;
}