@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{
    --rm-red:#c50000;
    --rm-dark:#050639;
    --rm-blue:#00aaff;
    --rm-gray:#E0E0E0;
    --rm-soft:#F5F5F5;
    --rm-text:#253e51;
    --rm-footer:#E9E8EC;
}

*{margin:0;padding:0;box-sizing:border-box;}
a{color:inherit;text-decoration:none;}
html{width:100%;min-height:100%;font-size:18px;}
body{
    width:100%;
    min-height:100vh;
    background:#fff;
    color:#000;
    font-family:'Lato',sans-serif;
    font-weight:400;
    line-height:1.6;
    overflow-x:hidden;
}
img{max-width:100%;display:block;}
input,button,textarea,select{font-family:inherit;}

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

/* HEADER */
.headerWrap{position:relative;width:100%;}
.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;
    gap:30px;
}
.headerMenu::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(to right,var(--rm-blue),#8c8c8c);
    box-shadow:0 0 8px rgba(0,170,255,.9),0 0 15px rgba(0,170,255,.5);
}

/* MENU */
.hamburger{
    display:none;
    width:42px;
    height:42px;
    cursor:pointer;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:6px;
    z-index:10001;
}
.hamburger span{
    width:26px;
    height:3px;
    background:var(--rm-dark);
    border-radius:3px;
    transition:.3s;
}
.menuItems{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:30px;
}
.btnHeader01{
    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;
}

/* CONTENIDO */
.contMain{
    width:70%;
    height:600px;
    margin:0 auto;
    background:url("../../system/img/forget.png") right center / 600px auto no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:stretch;
}
.titleMain{width:720px;padding:30px;}
.cl01{
    margin-bottom:20px;
    color:var(--rm-text);
    font-size:30px;
    font-weight:700;
    line-height:1.25;
}
.cl02{
    width:530px;
    color:var(--rm-text);
    font-size:17px;
    font-weight:400;
    text-align:justify;
    hyphens:auto;
}
.mnuCentral{
    width:60%;
    margin-left:30px;
    padding:40px 30px 30px;
    background:var(--rm-soft);
    border-radius:13px;
    box-shadow:0 0 10px #fff;
}
.cl03{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    gap:15px;
}
.input02{
    width:260px;
    height:50px;
    padding:10px;
    border:.5px solid var(--rm-gray);
    border-radius:5px;
    background:#fff;
    font-size:13px;
    text-align:center;
    text-indent:10px;
    user-select:none;
}
.input02:focus{
    outline:none;
    border:1px solid dodgerblue;
    box-shadow:0 0 5px dodgerblue;
}
.btn03{
    width:120px;
    margin:1px;
    padding:10px;
    border:.5px solid var(--rm-gray);
    border-radius:5px;
    background:var(--rm-red);
    color:#fff;
    cursor:pointer;
    font-size:14px;
    letter-spacing:1px;
    text-align:center;
    user-select:none;
}
.btn03:hover{
    background:#fff;
    border-color:var(--rm-red);
    color:var(--rm-red);
    box-shadow:0 0 30px #fff;
    transition:all .4s linear;
}

/* DETALLE INFERIOR */
.details{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    height:auto;
    padding:20px 0;
    background:var(--rm-footer);
    color:var(--rm-text);
    font-size:17px;
    font-weight:400;
}
.co08{
    width:60%;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:stretch;
    gap:25px;
}
.cl07{
    width:150px;
    min-height:70px;
    flex:0 0 150px;
    background:url("../../system/img/ssl-secure-1.svg") center / contain no-repeat;
}
.cl06{width:80%;}

@media (max-width:1024px){
    .headerLogo{left:15px;}
    .headerLogo img{width:220px;}
    .headerMenu{padding-right:15px;}
    .contMain{
        width:90%;
        height:auto;
        min-height:520px;
        padding:80px 0 40px;
        background-size:380px auto;
        background-position:right bottom;
    }
    .titleMain{width:60%;padding:20px;}
    .cl02{width:100%;}
    .mnuCentral{width:60%;margin-left:20px;}
    .details{position:relative;}
    .co08{width:90%;}
}

/* HAMBURGUESA COMO INDEX451 */
@media (max-width:900px){
    .headerLogo{
        position:relative;
        top:0;
        left:0;
        width:100%;
        padding:10px 0;
        background:#fff;
        text-align:center;
    }
    .headerLogo img{width:240px;margin:0 auto;}
    .headerMenu{
        height:60px;
        min-height:60px;
        padding:0 18px;
        background:rgba(0,0,0,.70);
        backdrop-filter:blur(8px);
        -webkit-backdrop-filter:blur(8px);
        display:flex;
        justify-content:flex-start;
        align-items:center;
        gap:15px;
        flex-wrap:nowrap;
    }
    .hamburger{display:flex;}
    .hamburger span{background:#fff;}
    .menuItems{
        display:none;
        position:absolute;
        top:60px;
        left:0;
        width:100%;
        padding:12px 0;
        background:rgba(0,0,0,.78);
        backdrop-filter:blur(10px);
        -webkit-backdrop-filter:blur(10px);
        box-shadow:0 8px 18px rgba(0,0,0,.35);
        flex-direction:column;
        align-items:flex-start;
        z-index:9999;
    }
    .menuItems.active{display:flex;}
    .menuItems .btnHeader01{
        width:100%;
        display:flex;
        justify-content:flex-start;
        align-items:center;
        padding:15px 22px;
        border-bottom:1px solid rgba(255,255,255,.08);
        color:#fff;
        font-size:13px;
        letter-spacing:.5px;
        text-align:left;
    }
    .menuItems .btnHeader01:last-child{border-bottom:none;}
    .menuItems .btnHeader01:hover{background:rgba(197,0,0,.20);color:#fff;}
    .menuItems .btnHeader01 span{width:24px;margin-right:10px;color:#fff;text-align:center;}
}

@media (min-width:901px){
    .headerLogo{position:absolute;top:4px;left:30px;z-index:10;padding:0;background:transparent;}
    .headerLogo img{width:300px;margin:0;}
    .hamburger{display:none;}
    .menuItems{
        display:flex;
        position:static;
        width:auto;
        padding:0;
        background:transparent;
        box-shadow:none;
        flex-direction:row;
        justify-content:flex-end;
        align-items:center;
        gap:30px;
    }
    .menuItems .btnHeader01{
        width:auto;
        padding:0;
        border-bottom:none;
        color:#000;
        display:block;
        font-size:13px;
        letter-spacing:1.5px;
    }
}

@media (max-width:767px){
    html{font-size:16px;}
    body{line-height:1.45;}
    .headerLogo img{width:210px;}
    .contMain{
        width:100%;
        min-height:auto;
        /* 10px aprox. entre formulario e imagen; 50px bajo la imagen */
        padding:25px 15px 290px;
        background-size:230px auto;
        background-position:center bottom 50px;
        justify-content:flex-start;
        align-items:center;
    }
    .titleMain{
        width:100%;
        padding:15px 5px;
        text-align:center;
    }
    .cl01{font-size:24px;line-height:1.25;}
    .cl02{width:100%;font-size:15px;text-align:center;}
    .mnuCentral{width:100%;margin-left:0;padding:25px 15px;}
    .cl03{flex-direction:column;gap:15px;}
    .input02{width:100%;max-width:300px;}
    .btn03{width:180px;margin:0 auto;}
    .details{position:relative;padding:20px 15px;}
    .co08{
        width:100%;
        flex-direction:column;
        align-items:center;
        gap:15px;
        text-align:center;
    }
    .cl07{width:120px;min-height:70px;flex-basis:auto;}
    .cl06{width:100%;font-size:14px;line-height:1.5;}
}
.msgFinal{
    width:100%;
    min-height:calc(100vh - 60px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 15px;
    background:#f5f5f5;
}

.msgCard{
    width:100%;
    max-width:520px;
    padding:35px 30px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    text-align:center;
}

.msgLogo{
    width:230px;
    margin:0 auto 25px;
}

.msgTitulo{
    margin-bottom:15px;
    color:#c50000;
    font-size:28px;
    font-weight:700;
    line-height:1.2;
}

.msgTexto{
    color:#002447;
    font-size:16px;
    line-height:1.6;
}


/* =========================================================
   AJUSTE FINAL MENÚ MÓVIL ESTILO INDEXZ
========================================================= */
@media only screen and (max-width:767px){

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

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

    .headerLogo img{
        width:210px;
        max-width:58vw;
        height:auto;
        margin:0 auto;
        display:block;
    }

    .headerMenu{
        position:relative;
        width:100%;
        height:72px;
        min-height:72px;
        padding:0;
        margin:0;
        display:block;
        background:#fff;
        overflow:visible;
        backdrop-filter:none;
        -webkit-backdrop-filter:none;
    }

    .hamburger{
        display:flex;
        position:absolute !important;
        top:50% !important;
        left:15px !important;
        transform:translateY(-50%) !important;
        width:34px;
        height:28px;
        margin:0 !important;
        padding:0;
        flex:none !important;
        flex-direction:column;
        justify-content:space-between;
        align-items:stretch;
        gap:0;
        cursor:pointer;
        pointer-events:auto;
        touch-action:manipulation;
        z-index:10001;
    }

    .hamburger span{
        width:100%;
        height:3px;
        background:#111;
        border-radius:3px;
        transition:transform .25s ease, opacity .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);
    }

    .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;
        border-radius:0;
        box-shadow:0 8px 14px rgba(0,0,0,.08);
        backdrop-filter:none;
        -webkit-backdrop-filter:none;
        visibility:visible;
        opacity:1;
        z-index:9999;
    }

    .menuItems.active{
        display:flex !important;
        pointer-events:auto;
    }

    .menuItems .btnHeader01{
        width:100%;
        margin:0;
        padding:9px 0;
        display:flex;
        align-items:center;
        justify-content:flex-start;
        color:#000;
        background:#fff;
        border:0;
        border-bottom:0;
        text-align:left;
        font-size:12px;
        letter-spacing:1.5px;
    }

    .menuItems .btnHeader01 span{
        width:auto;
        margin-right:8px;
        color:#000;
    }

    .menuItems .btnHeader01:hover,
    .menuItems .btnHeader01:hover span{
        color:#ca0f16;
        background:#fff;
    }
}
