@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300&display=swap');

/* Reglas generales */

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}


h3 {
    color: #7B7A7A;
    font-size: 1.1em;
    word-spacing: -0.1em;
}

h4 {
    color: #7B7A7A;
    font-size: 0.9em;
}

p {
    color: #7B7A7A;
    font-size: 0.9em;
}

#bibliotecasMoviles {
    color: #7B7A7A;
    font-weight: 900;
    font-size: 1.2em;
    line-height: 18px;
    margin-left: 1em;
}

strong {
    padding-left: 1em;
    padding-right: 0.5em;
}


main,
footer {
    margin-right: 1.2em;
    margin-left: 1.2em;
}

.titular {
    color: #7B7A7A;
    font-weight: 700;
    font-size: 1.3em;
    padding-top: 0.6em;
}


/* Pantalla de carga */

#azul {
    background-color: #0094C1;
}

#carga {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#camionCarga {
    display: flex;
    justify-content: center;
    background-color: white;
    width: 8em;
    height: 8em;
    border-radius: 50%;
}

#camioncitoCarga {
    width: 6.5em;
}

#tituloCargando {
    padding-top: 0.5em;
    color: white;
}

/* Registro */

#hola {
    display: flex;
    flex-direction: column;
    padding-top: 2em;
    padding-left: 2.5em;
}

#camioncito {
    width: 3em;
}

#camionBienvenide {
    display: flex;
    justify-content: center;
    background-color: white;
    width: 4em;
    height: 4em;
    border-radius: 50%;
}

#tituloBienvenide {
    padding-top: 0.5em;
    color: white;
    font-size: 1.4em;
    font-weight: 800;
}

#registro {
    background-color: white;
    color: #7B7A7A;
    width: 100%;
    margin-top: 4em;
    margin-left: 0;
    padding: 1.5em 2.5em 1.5em 2.5em;
    border-radius: 40px 40px 0 0;
    position: fixed;
    bottom: 0;
}

#registro p {
    font-size: 0.8em;
    font-weight: 400;
    text-align: center;
}

.inicioSesion {
    margin-top: 1em;
    padding: 0.8em;
    border-radius: 6px;
    background-color: #ECECED;
    border-style: none;
    width: 100%;
}

#olvidaste {
    color: #0094C1;
    font-size: 0.7em;
}

#botones {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.botonAzul {
    background-color: #0094C1;
    color: white;
    font-size: 1em;
    font-weight: 300;
    border-radius: 6px;
    padding: 0.5em;
    border-style: none;
    margin-bottom: 0.5em;
    width: 100%;
}

#botonVerde {
    background-color: #00B27E;
    color: white;
    font-size: 1em;
    font-weight: 300;
    border-radius: 6px;
    padding: 0.5em;
    border-style: none;
    margin-top: 0.5em;
    width: 100%;
}

fieldset {
    border-style: none;
}

#terminos {
    display: flex;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

#terminos p {
    margin-left: 0.5em;
    font-size: 0.8em;
}

#holaDos {
    display: flex;
    padding-top: 2em;
    padding-left: 2.5em;
}

#tituloBienvenideDos {
    margin-left: 0.5em;
    color: white;
    font-size: 1.4em;
    font-weight: 800;
}

/* Encabezado */

#contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4em 1.2em 1em 1.2em;
}

#camion {
    width: 4em;
}

#titulo {
    display: flex;
    align-items: center;
}

/* Menu Hamburguesa */

#llamaMenu button {
    color: #7B7A7A;
    border-style: none;
}

#llamaMenu {
    color: #7B7A7A;
    background-color: #ECECED;
    border-style: none;
    display: flex;
    position: relative;
    z-index: 9999;
}

header nav a {
    color: #7B7A7A;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
}

header nav ul {
    background-color: #ECECED;
    position: fixed;
    top: 0;
    left: 100%;
    height: 100vh;
    width: 40%;
    padding-top: 5.5em;
    z-index: 9990;
    transition: all .3s ease;
    padding-right: 1.2em;
}

header nav ul li {
    padding-bottom: 1em;
}

.visible {
    left: 60%;
    transition: all .6s ease;
}

/* Buscador */

#buscador {
    color: #7B7A7A;
    background-color: #ECECED;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 4em;
    padding-left: 0.2em;
}

#buscador button {
    padding: 0.2em;
    color: #7B7A7A;
    font-size: 0.4em;
    border: 0;
    z-index: 1;
}

#b {
    padding-left: 1em;
    flex-grow: 20;
    border: none;
}

#c {
    flex-grow: 1;
}

#d {
    flex-grow: 1;
}

/* Slider home */

#slideHome {
    position: relative;
    margin-top: 0.5em;
    z-index: 0;
    margin-bottom: 0.5em;
}

#scrollHome {
    display: flex;
    overflow-x: auto;
}

.scroll {
    margin-top: 0.5em;
    margin-bottom: 1em;
    display: flex;
    overflow-x: auto;
    max-height: 10em;
    width: 100%;
}

.scroll img {
    width: 120px;
    padding-right: 1em;
}

/* Slide libros */

.slideBiblioteca {
    width: auto;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

#slideBibliotecaDos {
    width: auto;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 0.5em;
}

/* Articulo */

.articuloHome {
    display: flex;
    max-height: 7em;
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.cajaArticulo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1em;
    padding-right: 0.5em;
    width: 20em;
}

.textoArticulo {
    font-size: 0.7em;
    font-style: italic;
    margin-top: 0.2em;
}

.volantaBiblioteca {
    color: #00B27E;
    border-bottom: .1em solid #00B27E;
    width: 30%;
}

.tituloBiblioteca {
    color: #00B27E;
    padding-top: 0.2em;
}

.volantaActividad {
    color: #F4283C;
    border-bottom: .1em solid #F4283C;
    width: 30%;
}

.tituloActividad {
    color: #F4283C;
    padding-top: 0.2em;
}

.fotoArticulo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 6em;
}

/* Footer */

footer {
    margin-bottom: 5.5em;
}

footer a {
    color: #7B7A7A;
    margin-right: 0.5em;
}

#redes {
    display: flex;
    justify-content: center;
    font-size: 0.7em;
    margin-top: 4em;
}

#redes li {
    border-top: .1em solid #7B7A7A;
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
}

/* Ficha tecnica */

#topicosDario {
    margin-top: 1em;
}

#topicosDario ul {
    display: flex;
}

#topicosDario ul li {
    margin-right: 1em;
    background-color: #F4283C;
    padding: 0.2em 0.8em 0.2em 0.8em;
    border-radius: 15px;
}

#topicosDario ul li a {
    color: white;
}

#topicos {
    margin-top: 1em;
}

#topicos ul {
    display: flex;
}

#topicos ul li {
    margin-right: 1em;
    background-color: #00B27E;
    padding: 0.2em 0.8em 0.2em 0.8em;
    border-radius: 15px;
}

#topicos ul li a {
    color: white;
}

#cajaFichaTecnica {
    display: flex;
    margin-top: 1em;
}

#cajaDatos {
    margin-left: 1em;
}

#fotoFicha {
    max-width: 12em;
}

.volantaFicha {
    color: #00B27E;
    border-bottom: .1em solid #00B27E;
    width: 100%;
}

.textoFicha {
    font-size: 0.8em;
    font-style: italic;
    margin-bottom: 0.4em;
    margin-top: 0.15em;
}

.volantaFichaDario {
    color: #F4283C;
    border-bottom: .1em solid #F4283C;
    width: 100%;
}

.textoFichaDario {
    font-size: 0.8em;
    font-style: italic;
    margin-bottom: 0.4em;
    margin-top: 0.15em;
}

#iconos {
    max-width: 12em;
}

#iconos ul {
    display: flex;
}

#iconos ul li {
    font-size: 0.9em;
    font-weight: 700;
    padding: 0.5em 2em 2em 0;
}

#iconos ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #7B7A7A;
    font-weight: 700;
    font-size: 0.8em;
}

.descripcionDario {
    color: #F4283C;
    border-bottom: .1em solid #F4283C;
}

.descripcion {
    color: #00B27E;
    border-bottom: .1em solid #00B27E;
}

#textoDescripcion {
    margin-top: 0.5em;
    margin-bottom: 1.4em;
}

#video {
    margin-bottom: 1em;
}

/* perfil */

.fotoperfil {
    display: flex;
    justify-content: center;
    max-width: 10em;
}

.fotoperfil img {
    border-radius: 50%;
}

#perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nombreUsuario {
    color: #7B7A7A;
    font-weight: 700;
    text-align: center;
    font-size: 1.3em;
    padding-top: 0.2em;
}

.usuario {
    font-size: 1em;
    font-style: italic;
    text-align: center;
}

/* mi perfil */

#datosPersonales ul {
    display: flex;
    flex-direction: column;
    padding-bottom: 2em;
    padding-top: 1em;
}

#datosPersonales ul li {
    display: flex;
    align-items: center;
    color: #7B7A7A;
    font-size: 0.9em;
    padding: 1em 0 0 1.5em;
}

/* navegador perfil */

#cajaNavpPerfil {
    display: flex;
    justify-content: center;
}

main nav {
    display: flex;
    justify-content: center;
    max-width: 20em;
}

#navPerfil {
    display: flex;
    justify-content: center;
    border-radius: 1em;
    background-color: #ECECED;
    margin-top: 0.7em;
    max-width: 20em;
}

#navPerfil li {
    padding: 0.5em 1.2em 0.5em 1.2em;
}

#navPerfil a {
    color: #7B7A7A;
    font-weight: 700;
    font-size: 1em;
}

#sobreMi {
    border-radius: 1em 0 0 1em;
    background-color: #827db7;
}

#favoritos {
    background-color: #827db7;
}

#talleres {
    border-radius: 0 1em 1em 0;
    background-color: #827db7;
}

#sobreMi a {
    color: white;
}

#favoritos a {
    color: white;
}

#talleres a {
    color: white;
}

/* Foro */

#navegacionForoPrincipal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#navegacionForoPrincipal ul {
    width: 100%;
}

#navegacionForoPrincipal ul li {
    margin-top: 1.5em;
    background-color: #ECECED;
    padding: 1em;
    border-radius: 10px;
}

#navegacionForoPrincipal ul li a {
    color: #7B7A7A;
    font-size: 1.2em;
    font-weight: 600;
}

.titularForo {
    color: #FFA700;
    border-bottom: .1em solid #FFA700;
}

.titularBiblioteca {
    margin-top: 1em;
    color: #00B27E;
    border-bottom: .1em solid #00B27E;
}

.titularActividades {
    margin-top: 1em;
    color: #F4283C;
    border-bottom: .1em solid #F4283C;
}

#cajaForo ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 8em;
}


.perfilForo {
    max-width: 2.4em;
    margin-right: 1em;
}

.perfilForo img {
    border-radius: 50%;
}

.cajaComentario {
    display: flex;
    margin-top: 1.5em;

}

.nombreMensaje {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.2em;
}

.cajaMensaje p {
    font-size: 0.85em;
}

.cajaMensaje h6 {
    color: #7B7A7A;
    font-weight: 300;
}

.uno {
    color: #00B27E;
}

.dos {
    color: #F4283C;
}

.tres {
    color: #0094C1;
}

/* Comentario */

#comentario {
    color: #7B7A7A;
    background-color: #ECECED;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 3em;
    padding-left: 1.2em;
    padding-right: 1.2em;
    width: 100%;
    position: fixed;
    bottom: 3.7em;
    z-index: 9995;
}

#comentario button {
    color: #7B7A7A;
    font-size: 0.8em;
    display: flex;
    border: 0;
    z-index: 1;
}

#comentario input {
    padding: 0.4em;
}

/* Barra de navegacion inferior */

#navegacionInferior {
    width: 100%;
    background-color: #ECECED;
    position: fixed;
    bottom: 0;
    z-index: 9995;
}

#navegacionInferior nav ul {
    display: flex;
    justify-content: space-between;
}

#navegacionInferior nav ul li {
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    width: 25%;
    text-align: center;
}

#navegacionInferior nav ul a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #7B7A7A;
    font-weight: 700;
    font-size: 0.8em;
    padding: .45em .7em;
}

.iconify {
    font-size: 3em;
    padding-bottom: 0.1em;
    padding-top: 0.1em;
}

#home {
    background-color: #0094C1;
}

#navegacionInferior nav ul #home a {
    color: white;
}

#biblioteca {
    background-color: #00B27E;
}

#navegacionInferior nav ul #biblioteca a {
    color: white;
}

#actividades {
    background-color: #F4283C;
}

#navegacionInferior nav ul #actividades a {
    color: white;
}

#miperfil {
    background-color: #827db7;
}

#navegacionInferior nav ul #miperfil a {
    color: white;
}

#foro {
    background-color: #FFA700;
}

#navegacionInferior nav ul #foro a {
    color: white;
}
