*{ margin: 0; padding: 0; box-sizing: border-box;}
.contenedor{ max-width: 30rem; margin: 0 auto; position: relative;}

.intro{ width: 100%; 
    height: 100vh; 
    background: url('../img/pattern.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
}


















/*-----------------------*/
/* Estilos de Form LOGIN */
/*-----------------------*/

.formlogin{ 
width: 100%;
height: 100vh;
background-color: #08AEEA;
background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
}

.formlogin form{
    padding: 45% 5% 5% 5%;
    text-align: center;
}

.formlogin form input{ 
    display: block;
    width: 90%;
    margin: 2% auto;
    font-size: 1.2rem;
}

.formlogin form .input{ border: none; padding: 2%;}
.formlogin form .boton{ border: none; padding: 2%; background: #4203b9; color: #fff;}












/*-----------------------*/
/* Estilos de ONBOARDING */
/*-----------------------*/

.onboarding{
    width: 100%;
    height: 100vh;
    background: #08AEEA;
}














/*-----------------------*/
/*   Estilos de MAIN     */
/*-----------------------*/

.main{
    width: 100%;
    background: #0095b1;
    padding-top: 5%;
}

.main article{ width: 96%; min-height: 10rem; background:#fff; margin: 2% auto; border-radius: .2rem;}
.main article{ width: 96%; min-height: 10rem; background:#fff; margin: 2% auto; border-radius: .2rem;}
.main article h2{ font-family: Arial; font-size: 1rem; font-weight: normal; color: #888;}



.mainnav{ width: 100%; height: 3rem; background: #000; 
    position: fixed;
    bottom: 0; 
    left: 0;
    z-index: 10 ;
}






/* Home Spotify */

body{
    
}
.section-home{
    
    font-family: Arial,sans-serif;
}
.section-home h2{
    display: block;
    text-align: center;
}
.section-home .contenedor-modulos{
    display: flex;
    overflow: auto;
}

.section-home .contenedor-modulos .modulo-musica{
    width: 40%;
    flex-shrink: 0;
    padding: .5rem;
    background: transparent;
    text-align: center
}
.section-home .contenedor-modulos .modulo-musica img{
    display: block;
    width: 100%;
    margin-bottom: .5rem;
}
.section-home .contenedor-modulos .modulo-musica.artista img{
    border-radius: 50%;
}
.section-home .contenedor-modulos .modulo-musica.seleccionado img{
    border: .5rem #fff solid;
}


.menu-hamburguesa{
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
}
.menu-hamburguesa .boton-hamburguesa{
    display: inline-block;
    background: #fff;
    padding: 1rem;
}

.menu-hamburguesa .menu ul{
    list-style: none
}

.menu-hamburguesa .menu ul li a{
    color: #fff;
    background: #000;
    padding: 1rem;
    display: block;
    text-decoration: none;
}

.opciones .opcion.seleccionada {
    background-color: #f00;
    color: #fff;
}

.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.modal article{
    padding: 2rem;
    background: #fff;
}
.modal article h2{
    color: #f00;
}


.corazon{background: url('../img/corazon2.png'); width: 20px; height: 20px; display: inline-block; background-size: cover;}
.seleccionado{ background: url('../img/corazon.png'); width: 20px; height: 20px; display: inline-block; background-size: cover;}




/* ONBOARDING */
.onboarding li{
    display: block;
    padding: 2rem;
    text-align: center;
    font-size: 1.5rem;
    background: #fff;
    border-radius: 2rem;
}


/* VIDEO RESPONSIVE */

.video{
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
    position: relative;
}
.video iframe{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.precarga{
    display: block;
    border: 1px #000 solid;
    padding: .25rem;
    margin-top: 3rem;
}
.precarga .barra{
    height: .5rem;
    width: 0%;
    background: #000;
}


/* Texto resaltado */
.texto p{
    line-height: 1.5;
    font-size: 1.2rem;
}
.texto p span.resaltado{
    background-color: yellow;
}