@charset "utf-8";

/*
----------------------
Parámetros generales
----------------------
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif; "Roboto:500";
    text-decoration: none;
    list-style: none;
}

@font-face {
    font-family: "Exotc";
    src: url("../fonts/EXOT350B.ttf")
}

body {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(to bottom, rgba(118,144,168,1) 0%, rgba(71,91,112,1) 100%);;
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    box-shadow: 0px 4px 9px -3px rgba(0,0,0,0.68);
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
    max-width: 100%;
}

#inicial {
    justify-content: center;
}

.titulo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(135deg, rgba(224,239,249,1) 0%, rgba(224,239,249,1) 1%, rgba(181,198,208,1) 43%, rgba(216,225,231,1) 43%, rgba(242,246,248,1) 100%);
    box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.68);
    color: #f0f0f0;
    padding-top: 8em;
    padding-bottom: 1.7em;
    max-width: 100%;
}

form {
    display:flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    max-width: 100%;
    padding: 2.2rem;
    padding-bottom: 2em;
}

input {
    display: flex;
    flex-direction: column;
    font-size: 1em;
    text-transform: uppercase;
    text-align: center;
    border: none;
    padding: .9em;
    margin: .4em;
}



/*
-------------------
Estilos de fuentes
-------------------
*/



h1 {
    font-family: "Exotc";
    color: white;
    font-size: 1.5em;
}

h2 {
    font-family: "Exotc";
    color: white;
    font-size: .8em;
}

h3 {
    font-family: "Roboto";
    color: #7690a8;
    font-size: 1.5em;
}

h4 {
    font-family: "Roboto";
    color: #00bdc6;
    font-size: 1.1em;
}

h5 {
    font-family: "Roboto";
    color: white;
    font-size: 1.5em;
}

h6 {
    font-family: "Roboto";
    color: #7690a8;
    font-size: 1em;
}

p {
    font-family: "Roboto";
    color: white;
    font-size: 1em;
}

a {
    color: white;
    font-weight: bolder;
    cursor: pointer;
    text-decoration: none;
}



/*
----------------
Header general
----------------
*/



header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgba(28,196,182,1) 0%, rgba(35,133,237,1) 100%);;
    box-shadow: 0px 4px 9px -3px rgba(0,0,0,0.68);
    font-family: "Roboto", sans-serif;
    color: white;
    width: 100%;
    height: 6em;
	left: 0;
	top: 0;
    right: 100;
    padding: 2em;
    position: fixed;
}

.encabezado { 
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items: center;
}

.isologoheader {
    padding-left: 1em;
    height: 100%;
}

#logoheader{
    float: left;
    position: static;
    width: 3em;
    height: 3em;
}



/*
----------------
Menú general
----------------
*/



.botonmenu {
    display: flex;
}

header button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 2.5em;
    height: 2.5em;
    z-index: 9999;
}

header nav {
    background-color: #00bdc6;
    color: white;
    transition: all .3s ease;
    position: fixed;
    right: -70%;
    top: 0;
    bottom: 0;
    min-width: 40%;
    z-index: 9998;
    opacity: 0.95;
}



/*
----------------
Menú invisible
----------------
*/



nav.menuvisible {
    width: 70%;
    padding-top: 5em;
    right: 0;
}

header nav a {
    display: block;
    text-decoration: none;
    font-size: .9rem;
    padding: .9em;
}

#principal ul li:hover, #secundario ul li:hover {
    color: white;
    background-color: #475b70;
}

.usuario {
    display: block;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.usuario img {
    border-radius: 50%;
    border: solid 3px white;
    box-shadow: 0px 4px 9px -3px rgba(0,0,0,0.68);
    width: 20vmin;
    height: 20vmin;
    margin: .5em;
}


#principal { 
    background-color: #04a8a8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#principal ul li {
    list-style: none;
	text-decoration: none;
    display:flex;
    flex-direction: row;
    align-items: center;
    padding-left: 1em;
}

#principal ul li img {
    width: 22px;
}


#secundario {
    background-color: #00bdc6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#secundario ul li {
    list-style: none;
	text-decoration: none;
    display:flex;
    flex-direction: row;
    align-items: center;
    padding-left: 1em;
}

#secundario ul li img {
    width: 22px;
}


/*
----------------
Footer general
----------------
*/



footer {
    background: linear-gradient(to right, rgba(28,196,182,1) 0%, rgba(35,133,237,1) 100%);;
    box-shadow: inset 2px 2px 30px 2px rgba(0,0,0,0.1);
    font-family: "Roboto", sans-serif;
    font-size: .8em;
    padding: 2.5em;
}



/*
----------------
1- Pagina inicio
----------------
*/



index.main {
    padding-top: 1em;
} 

.logo {
    align-items: center;
    align-content: center;
    text-align: center;
    padding-bottom: 1em;
    justify-content: center;
}

.logo img {
    max-width: 45%;
    height: auto;
}

.ingreso {
    background-color: #00bdd0;
    color: white;
    border: none;
    box-shadow: 0px 3px 9px -3px rgba(0,0,0,0.69);
    font-family: sans-serif; "Roboto 600"; 
    font-size: 1.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 1em 2em;
    margin-top: 1em;
    border-radius: 2em;
    transition-duration: 0.4s;
}

.ingreso:hover {
    background-color: #7690a8;
    color: #00dbff;
    text-shadow: 1px 1px #000000;
}

.agregar, .olvido {
    text-align: center;
    margin-top: 1em;
    color: #00bdc6;
    font-family: sans-serif; "Roboto 600"; 
    font-size: .9em;
}



/*
-------------------------
2- Página de recuperación
-------------------------
*/



.olvido1 {
    text-align: center;
    margin-top: .5em;
    color: #00bdc6;
    font-family: sans-serif; "Roboto 600"; 
    font-size: .9em;
}

.olvido2 {
    padding-left: 1.5em;
    padding-right: 1.5em;
    text-align: center;
    margin-top: .5em;
    margin-bottom: .5em;
    color: #00bdc6;
    font-family: sans-serif; "Roboto 600"; 
    font-size: .9em;
}



/*
---------------------
3- Página de registro
---------------------
*/



.terminos {
    text-align: center;
    margin: .3em;
    color: #00bdc6;
    font-family: sans-serif; "Roboto 600"; 
    font-size: .8em;
}



/*
--------------------
4- Pagina bienvenida
--------------------
*/



.inicio {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    padding: 1em;
}

.inicio img, .inicio0 img {
    max-width: 100%;
    max-height: 100%;
}

.notas {
    background-color: white;
    box-shadow: 0px 4px 9px -3px rgba(0,0,0,0.68);
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.notas p {
    color: black;
    font-size: .9em;
	text-align: justify;
}

.next {
    background-color: #00bdc6;
    border: none;
    box-shadow: 0px 4px 9px -3px rgba(0,0,0,0.68);
    font-size: 1.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 2em;
    padding: .5em;
    margin-top: 1em;
    transition-duration: 0.4s;
}



/*
-------------------
5- Página de perfil
-------------------
*/



.perfilusuario {
    display:block;
    flex-direction: row;
    align-content: space-between;
    justify-content: center;
    text-align: center;
}

.perfilusuario img {
    border-radius: 50%;
    border: solid 4px white;
    box-shadow: 0px 4px 9px -3px rgba(0,0,0,0.68);
    max-height: 50%;
    max-width: 50%;
    margin: .5em;
}

.datos {
    padding-top: 2em;
    padding-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#datos2 {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

#datos2 ul li {
    border-bottom: solid 2px white;
    margin: 1em;
    list-style: none;
    padding-right: 4em;
    padding-left: em;
    padding-top: 1em;
}



/*
--------------------------------
6- Página términos y condiciones
--------------------------------
*/



.condiciones { 
    margin: 2rem;
    font-size: small;
    font-size: .8rem;
    padding-top: 1em;
    text-align: left;
}

.condiciones_li p{
    list-style: none;
    text-align: left;
}

.aceptacion {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2em;
}

.acepto, .noacepto{
    background-color: #00bdc6;
    border: none;
    box-shadow: 0px 4px 9px -3px rgba(0,0,0,0.68);
    font-size: 1.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 2em;
    padding: 1em;
    transition-duration: 0.4s;
}



/*
---------------------
Página sobre nosotros
---------------------
*/



.quienes_somos { 
    box-sizing: border-box;
    width: 100%;
    padding: 2em;
    text-align: left;
}

.quienes_somos h3{
    text-align: center;
    padding-bottom: 1rem;
    font-size: 36px;
    
}

.quienes_somos p {
    color: white;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
}



/*
----------------
Páginas del Test
----------------
*/



.pregunta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color:  #475b70;
    padding-left: 2em;
    padding-right: 4em;
    padding-top: 8em;
    padding-bottom: 1em;
    max-width: 100%;
    box-shadow: inset 2px -10px 60px -22px rgba(0,0,0,0.77);
}

main#test {
    background-color: #00bdc6;
}

.respuesta {
    padding-bottom: 1em;
}

.respuesta label{
    display: flex;
    border: solid 1px white;
    border-radius: 2em;
    padding: .9em;
    color: white;
}

#answer1, #answer2, #answer3, #answer4, #answer5  {
    display: none;
    border-radius: 3px;
}

#answer1:checked ~ #expand-btn, #answer2:checked ~ #expand-btn, #answer3:checked ~ #expand-btn, #answer4:checked ~ #expand-btn, #answer5:checked ~ #expand-btn {
    background-color: #7690a8; 
    color: white;
    box-shadow: inset 0px 0px 20px 1px rgba(0,0,0,0.2);
}

.siguiente {
    background-color: #475b70;
    color: white;
    border: none;
    box-shadow: 0px 3px 9px -3px rgba(0,0,0,0.69);
    font-family: sans-serif; "Roboto 600"; 
    font-size: 1.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    margin-top: .5em;
    border-radius: 2em;
    transition-duration: 0.4s;
}



/* 
---------------------
Pagina resultados test
---------------------
*/


.porcentaje {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    background-color: #475b70;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 7em;
    padding-bottom: 1em;
    box-shadow: inset 2px -10px 60px -22px rgba(0,0,0,0.77);
}

#img_resultado {
    height: 100%;
    padding-top: .5em;

}

.iso_resultados {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1em;
}
    
.iso_resultados h4{
    font-size: 4em;
    color: white;
}

.iso_resultados h5{
    color: white;
}

    
main#tabla {
    background-color: #00bdc6;
    align-self: stretch;
}

.contenedortabla{
    display: flex;
    flex-direction: column;
    padding: 2em;
}

table {
    width: 100%;
    padding-bottom: 1em;
}

th {
    padding-top: .5em;
    padding-bottom: .5em;
    color: #475b70;
    text-align: left;
}

td {
    width: 100%;
    padding: .6em;
}


#columna1 {
    width: 55%;
    color: white;
    font-size: .7em;
    font-weight: 600;
    border-bottom: solid
}

#columna2 {
    width: 45%;
    color: white;
    font-size: .8em;
}

.nuevotest {
    background-color: #475b70;
    color: white;
    border: none;
    box-shadow: 0px 3px 9px -3px rgba(0,0,0,0.69);
    font-family: sans-serif; "Roboto 600"; 
    font-size: 1.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 1em;
    margin: 1em;
    border-radius: 2em;
    transition-duration: 0.4s;
}


/*
------------------
Página información
------------------
*/



.informacion {
    background-color: white;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    margin: 2em;
    padding: .5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #002D47;
    border-radius: 1%;
    transition-duration: 0.4s;
}

.informacion:hover {
    background-color: aliceblue;
}


/*
------------------
Página de contacto
------------------
*/
.contacto  {
    display: flex;
    flex-direction: column;
}

textarea {
    display: flex;
    flex-direction: column;
    font-size: 1em;
    text-transform: uppercase;
    text-align: center;
    border: none;
    padding: .9em;
    margin: .4em;
    text-decoration: none;
}

.aceptoterminos {
    display: flex;
    flex-direction: row-reverse;
    border: none;
    font-size: .8em;
    text-decoration: none;
    text-align: center;
    color: white;
    border-radius: 2em;
    padding: 1em;
}




form button {
    background-color: #00bdc6;
    border: white;
    box-shadow: 0px 4px 9px -3px rgba(0,0,0,0.68);
    font-size: 1.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 2em;
    padding: 1em;
    transition-duration: 0.4s;

}

form button:hover{
    background-color: #475b70;
    color: white;
}




/*
-----------------
Mediaquire >640px
-----------------
*/



@media (min-width: 640px) {
    form {
        padding-top: 5%;
        padding-left: 30%;
        padding-right: 30%;
    }
    
    header {
        height: 5em;
    }
    
    .titulo {
        padding-top: 7em;
        padding-bottom: .5em;
    }
    
    .ingreso {
        margin-top: 4em;
    }
    
    .datos {
        padding-top: 3em;
        padding-bottom: 3em;
        padding-left: 30%;
        padding-right: 30%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .bienvenidos {
        display: flex;
        justify-content: center;
        padding: 3em;
    }
    
    .inicio {
        justify-content: space-between;
        align-self: stretch;
    }
    
    .notas {
        justify-content: space-between;
        align-self: stretch;
        flex-grow: 1;
    }
    
    .masinfo {
        padding: 10em;
    }    
}

/*
------------------------------
Contacto Redes
------------------------------
*/

.redes { display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;    
    width: 100%;    
    
}

.seguinos {
    font-family: sans-serif; "Roboto 600"; 
    font-size: 1em;
    text-align: center;
    color: white;
    margin: 1em;
    
    
    
    
}