/*Estilos generales*/
body{
    width: calc(100vw - 20px);
	height: 100vh;
    margin:0;
    padding:0;
}

p, a, ol, ul{
    font-family:'Open sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, Helvetica, sans-serif;
    line-height: 1.4;
}

h1, h2, h3, h4, h5, h6{
    font-family:'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, Helvetica, sans-serif;
    line-height: 1.1;
}

.subtitle{
    margin: 0 0 12px 0!important;
}

p
{
    margin:0;
}

a{
    text-decoration:none!important;
    color: #794FA3;
}

.dnl{
    margin-bottom:12px!important;
}

.dnl::before{
    content:url('../svg/icons/download.svg');
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.back::before{
    content:url('../svg/icons/arrow-left.svg');
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}


/*Contenedores*/
.main-container{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:0 8vw;
}

.navbar{
    display:flex;
    flex-direction: row;
    width:100%;
    height:80px;
    background-color:white;
    align-items: center;
    justify-content:space-between;
}

.navbar .container_img{
    display: block;
    width:100%;
    max-width: 95px;
}

.container_full{
    display:flex;
    flex-direction:column;
    width:100%;
    height:fit-content;
    margin-bottom:32px;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

.container_50{
    display:flex;
    width:40vh;
    height:fit-content;
    background-color:white;
}

.container_img{
    display: block;
    width:100%;
    max-width: 600px;
}

.container_banner{
    display: block;
    width:100%;
}

.container_img img{
    width:inherit;
}



.container_banner img{
    width:inherit;
}

/*Cards*/

.container_card{
    display:flex;
    width:100%;
    height:fit-content;
    background-color:white;
    margin-bottom:32px;
    justify-content:space-between;
}

.container_card object{
    width: 58px;
}

.container_card .container_img{
    width: 58px;
    height: 58px;
    margin-bottom:24px;
}

.container_card p{
    margin-bottom:24px;
}

.card{
    display:flex;
    flex-direction:column;
    height:250px;
    width:346px;
    padding:24px;
    border: solid 1px #E9E9E9;
    border-radius:16px;
    justify-content: space-between;
}

.card .ver_descargas::after{
    content: url(../svg/icons/chevron-right.svg);
    display: inline-block;
    margin-left: 12px;
    vertical-align: middle;
    padding-bottom:4px;
}

/*Termina Cards*/

/*Teaser*/
.main_screen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-image: url("../img/teaser_bg.png");
    background-repeat:none;
    background-size: cover;
}

.logo_teaser{
    width: 350px;
}

.h1_teaser{
    font-weight: 400;
    font-size:20px;
}

.complemento{
    width: 120px;
    display:flex;
    flex-direction:row;
    gap: 12px;
}

.cyan_dot{
    display: block;
    width: 18px;
    height: 18px;
    background-color: #00B5E2;
    border-radius:3px;
    transform: rotate(-45deg);
    animation: rotate infinite 1.5s;
}

.yellow_dot{
    display: block;
    width: 18px;
    height: 18px;
    background-color: #F3EA5D;
    border-radius:3px;
    transform: rotate(-45deg);
    animation: rotate infinite 1.5s;
    animation-delay: 0.375s;
}

.pink_dot{
    display: block;
    width: 18px;
    height: 18px;
    background-color: #F67599;
    border-radius:3px;
    transform: rotate(-45deg);
    animation: rotate infinite 1.5s;
    animation-delay: 0.75s;
}

.purple_dot{
    display: block;
    width: 18px;
    height: 18px;
    background-color: #8246AF;
    border-radius:3px;
    transform: rotate(-45deg);
    animation: rotate infinite 1.5s;
    animation-delay: 1.125s;
}

@keyframes rotate{
    from{
        transform: rotate(-45deg);
    }
    to{
        transform: rotate(45deg); 
    }
}
/*Termina Teaser*/