@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
}
body{
    /*background-image: url(../images/bg4.jpg);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
main{
    width: 100%;
    padding: 20px;
    margin: auto;
    margin-top: 100px;
}
.contenedor__todo{
    width: 100%;
    max-width: 800px;
    margin: auto;
    position: relative;
}
.caja__trasera{
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 128, 255, 0.5);
}
.caja__trasera div{
    margin: 100px 40px;
    color: white;
    transition: all 500ms;
}
.caja__trasera div p,
.caja__trasera div button{
    margin-top: 30px;
}
.caja__trasera div h3{
    font-weight: 400;
    font-size: 26px;
}
.caja__trasera button{
    padding: 10px 40px;
    border: 2px solid #fff;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    outline: none;
    transition: all 300ms;
}
.caja__trasera button:hover{
    background: #fff;
    color: #46a2fd;
}
/*Formularios*/
.contenedor__login-registro{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 380px;
    position: relative;
    top: -185px;
    left: 10px;

    transition: left 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
.contenedor__login-registro form{
    width: 100%;
    padding: 80px 20px;
    background: #fff;
    position: absolute;
    border-radius: 20px;
}
.contenedor__login-registro form h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #46a2fd;
}
.contenedor__login-registro form input{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}
/*.contenedor__login-registro form select{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}*/
.contenedor__login-registro form button{
    padding: 10px 40px;
    margin-top: 30px;
    border: none;
    font-size: 14px;
    background: #46a2fd;
    color: white;
    cursor: pointer;
    outline: none;
}
.formulario__login{
    opacity: 1;
    display: block;
}
.formulario__registro{
    display: none;
}
/*Responsive*/
@media screen and (max-width: 850px){
    main{
        margin-top: 50px;
    }
    .caja__trasera{
        max-width: 350px;
        height: 300px;
        flex-direction: column;
        margin: auto;
    }
    .caja__trasera div{
        margin: 0px;
        position: absolute;
    }
    /*Formularios*/
    .contenedor__login-registro{
        top: -10px;
        left: -5px;
        margin: auto;
    }
    .contenedor__login-registro form{
        position: relative;
    }
}
/*Panel*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 4px 25px -22px black;
    z-index: 2;
}
.contenedor-header{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.logo{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo h1 b{
    color: #46a2fd;
}
.menu{
    height: 80px;
}
.menu nav{
    height: 100%;
}
.menu nav ul{
    height: 100%;
    display: flex;
    list-style: none;
}
.menu nav ul li{
    height: 100%;
    margin: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*position: relative;*/
}
/*Si deseo que aparezca la linea en un solo item cambio por
.menu-selected:before{}*/
.menu nav ul li:before{
    content: '';
    width: 100%;
    height: 4px;
    background: #46a2fd;
    position: absolute;
    top: 0;
    left: 0;
}
.menu nav ul li a{
    color: #777777;
    font-size: 18px;
    transition: color 200ms;
}
.menu nav ul li a:hover{
    color: #46a2fd;
}
/*Si deseo que el color quede seleccionado igual que la linea
.menu .text-menu-selected{
    color: #46a2fd;
}*/
/*Portada Panel*/
.contenedor-cover{
    width: 100%;
    height: 350px;
    position: relative;
    margin-top: 80px;
    /*background-image: url(../images/bg1.jpg);*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.contenedor-cover:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(38, 172, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
}
.contenedor-info-cover{
    max-width: 800px;
    height: 100px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.contenedor-info-cover h1{
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    margin-top: 80px;
    margin-bottom: 10px;    
}
.contenedor-info-cover p{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
.contenedor_info_inversion{
    width: 100%;
    margin-bottom: -40px;
}
.contenedor_info_inversion caption{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}
.contenedor_info_referidos{
    width: 100%;
    margin-bottom: -180px;
}
.contenedor_info_referidos caption{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}
/*Contenido Panel*/
.contenedor-contenido{
    width: 1200px;
    margin: auto;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.contenedor-contenido caption{
    color: #46a2fd;
    font-size: 15px;
    font-weight: 400;
}
article{
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
    box-shadow: -10px 0 20px -30px black;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
article:before{
    content: '';
    width: 100%;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    background: #46a2fd;
}
article h1{
    margin-top: 20px;
    font-weight: 500;
    font-size: 40px;
}
article p{
    margin-top: 20px;
    font-size: 18px;
    color: #3c3c3c;
}
article img{
    width: 100%;
    margin-top: 20px;
}
/*Aside Panel*/
.contenedor-aside aside{
    width: 320px;
    /*border-right: 6px;*/
    box-shadow: 0 0 20px -20px black;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 40px;
    margin-bottom: 40px;
    padding-bottom: 20px;
}
.contenedor-aside aside img{
    width: 100%;
}
.contenedor-aside aside h2,
.contenedor-aside aside p{
    margin-top: 20px;
    padding: 0px 20px;
}
.contenedor-aside aside button{
    margin-top: 20px;
    margin-left: 20px;
    padding: 10px 50px;
    font-size: 16px;
    background: #46a2fd;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
}
.contenedor-aside aside button:hover{
    opacity: 0.9;
}
/*Footer*/
.contenedor-footer{
    width: 100%;
    padding: 40px 0;
    background: #f7f7f7;
    margin-top: 40px;
}
.contenedor-footer footer{
    max-width: 1200px;
    margin: auto;
}
.contenedor-footer footer .logo-footer{
    text-align: center;
}
.contenedor-footer footer .logo-footer img{
    width: 100px;
}
.contenedor-footer footer .redes-footer{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.contenedor-footer footer .redes-footer .icon-redes-footer{
    font-size: 20px;
    margin: 20px;
    background: #efefef;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #a2a2a2;
}
footer .redes-footer .fa-facebook-f:hover{
    background: #41579A;
    color: #fff;
}
footer .redes-footer .fa-instagram:hover{
    background: linear-gradient(to top right, #FCDE30, #E9712A, #D2313E, #AE4198, #7540A1, #5443A8);
    color: #fff;
}
footer .redes-footer .fa-twitter:hover{
    background: #7a98f3;
    color: #fff;
}
.contenedor-footer footer hr{
    margin-top: 20px;
    border: none;
    height: 2px;
    background: #c0c0c07a;
}
.contenedor-footer h4{
    text-align: center;
    margin-top: 20px;
    color: #8e8e8e;
    font-weight: 500;
}
/*Formulario Actualiza
.contenedor__actualiza{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 380px;
    position: relative;
    top: -185px;
    left: 10px;

    transition: left 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
.contenedor__actualiza form{
    width: 100%;
    padding: 80px 20px;
    background: #fff;
    position: absolute;
    border-radius: 20px;
}
.contenedor__actualiza form h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #46a2fd;
}
.contenedor__actualiza form input{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}
.contenedor__actualiza form button{
    padding: 10px 40px;
    margin-top: 30px;
    border: none;
    font-size: 14px;
    background: #46a2fd;
    color: white;
    cursor: pointer;
    outline: none;
}*/
.contenedor__actualiza form{
    width: 100%;
    padding: 80px 20px;
    background: #fff;
    position: absolute;
    border-radius: 20px;
}
.contenedor__actualiza form h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #46a2fd;
}
.contenedor__actualiza form input{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}
.contenedor__actualiza form button{
    padding: 10px 40px;
    margin-top: 30px;
    border: none;
    font-size: 14px;
    background: #46a2fd;
    color: white;
    cursor: pointer;
    outline: none;   
}
.contenedor__actualiza form select{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}
/*Formulario Inversion*/
.contenedor__inversion form{
    width: 100%;
    padding: 80px 20px;
    background: #fff;
    position: absolute;
    border-radius: 20px;
}
.contenedor__inversion form h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #46a2fd;
}
.contenedor__inversion form input{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}
.contenedor__inversion form button{
    padding: 10px 40px;
    margin-top: 30px;
    border: none;
    font-size: 14px;
    background: #46a2fd;
    color: white;
    cursor: pointer;
    outline: none;   
}
.contenedor__inversion form select{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}
/*Formulario Retiro*/
.contenedor__retiro form{
    width: 100%;
    padding: 80px 20px;
    background: #fff;
    position: absolute;
    border-radius: 20px;
}
.contenedor__retiro form h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #46a2fd;
}
.contenedor__retiro form input{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}
.contenedor__retiro form button{
    padding: 10px 40px;
    margin-top: 30px;
    border: none;
    font-size: 14px;
    background: #46a2fd;
    color: white;
    cursor: pointer;
    outline: none;   
}
/*Formulario Soporte*/
.contenedor__soporte form{
    width: 100%;
    padding: 80px 20px;
    background: #fff;
    position: absolute;
    border-radius: 20px;
}
.contenedor__soporte form h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #46a2fd;
}
.contenedor__soporte form input{
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    background: #f2f2f2;
    font-size: 12px;
    outline: none;
}
.contenedor__soporte form button{
    padding: 10px 40px;
    margin-top: 30px;
    border: none;
    font-size: 14px;
    background: #46a2fd;
    color: white;
    cursor: pointer;
    outline: none;   
}
/*Tabla panel*/
table{     
    font-size: 14px;
    margin: 45px;
    width: 100%;
    height: 50%;
    text-align: center;
}
th{
    font-size: 15px;
    font-weight: normal;
    padding: 1px;
    background: #b9c9fe;
    border-top: 1px solid #aabcfe;
    border-bottom: 1px solid #fff;
    color: #039;
}
td{
    padding: 1px;
    background: #e8edff;
    border-bottom: 1px solid #fff;
    color: #669;
    border-top: 1px solid transparent;
}
tr:hover td{
    background: #d0dafd;
    color: #339;
}