@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;700;900&display=swap');

* {

  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}


/* ----------------
   reglas generales
   ---------------- */

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

ul.menu a {
    font-size: 1em;
}
img {
  max-width: 100%;
  height: auto;
}

.contenedora {
  padding: 0rem 2rem 1rem 2rem;
}


header{
  background-color: #131313;
  color: white;
}

/* ----------
   header
   ---------- */

header {
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.25); /* sombra difusa  */
  position: sticky;
  top: 0;
  z-index: 9000;
}


header .contenedora {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1em;
  align-items: center;
}

#logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
}

#logo img {
  width: 70%;
}

.logoclub{
  background-image: url(../img/libros.jpg);
  background-size: cover;
  width: 100vw;
  height: 30vh;
  margin-bottom: 3em;
}


#logo h3 {
  font-weight: 500;
  line-height: 1em;
  margin: 0;
}

.logoclub h1{
  font-size: 2.3em;
  color: #FFC727;
  position: relative;
  top: 3em
 }
 
 h1{
 font-size: 2em;
 color: #FFC727;
 }

 h2{
   display: none
 }

 .descrip h1 {
  margin-top: 1em;
 }

/* ----
   menu
   ---- */

nav {
    position: relative;
  }


.menu-btn,
.menu-fondo {
  padding: .75rem;
  width: 3em;
  height: 3em;

  position: fixed; 
  top: 1rem;
  right: 1rem;
  z-index: 9000;
  cursor: pointer;
  transition: all 0.3s ease-out;
}


.menu-fondo {
  background: #FFC727;
  z-index: 8000;
  
}


.menuVisible .menu-fondo {
  background: #FFC727;
  width: 150vw;
  height: 100vh;
  right: -100vw;
  top: 0;
}


.menu-btn .btn-linea {
  width: 25px;
  height: 3px;
  margin: 4px 0 4px 0;
  background: black;
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 9000;
}


.menuVisible .menu-btn .btn-linea {
  transform: rotate(180deg);
  ;
}

.menuVisible .menu-btn .btn-linea:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
.menuVisible .menu-btn .btn-linea:nth-child(2) {
  opacity: 0;
}
.menuVisible .menu-btn .btn-linea:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

/* menú*/
nav ul {
  position: absolute;
  right: 1rem;
  top: calc(100% + 4rem);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: all .5s ease;
}

.menuVisible ul {
  visibility: visible;
  opacity: 100%;
  transition: all .5s .2s ease;
}


nav ul li a {
  border-bottom: solid 4px transparent;
  color: rgb(0, 0, 0);
  display: block;
  font-size: 1.5rem;
  margin-bottom: .5rem;
  width: min(40vw, 15rem);
  text-align: right;
  padding: .5rem;
  text-decoration: none;
}

nav ul li a:hover {
  border-bottom: solid 4px rgba(255, 255, 255, 0.5);
  transition: all .3s;
}

/*Body General---------*/

body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    justify-content: space-between;
}

h1{ text-align: center;
    font-size: 1em;
}

h2,h3,h5,h6{
    margin-bottom: 1.5em;
    margin-top: 1.5em;
}

h3{
font-size: 1.2em;
}

h4{
font-size: 1em;

}

h6 {
    font-size: .8em;
}
h4.agenda{
    margin-top: 2em;
    margin-bottom: 2em;
}
.boton2 {
    background-color: #FFC727;
    padding: .8em;
    border-radius: 0.6em;
}    
a.boton2 {
color: black;
text-decoration: none;
margin-top: auto;
} 


ul li{
    list-style: none;
    margin: 2em 0 2em 0 ;
}

.calendario img{
    width: 70%;
}

.libroslista{
    padding-bottom: 2em;
    display: block;
    margin: 0 auto;
    background-color: #FFC727;
    
}

.articleflex {
    display: flex;
    overflow-x: scroll;
    margin: 2em 0 0 1em;
}

.articleflex article {
    min-width: 18em;
    display: flex;
    flex-direction: column;
    margin-right: 1em;
    font-weight: 700;
}

.articleflex article figure {
    width: 100%;
}

figure img {
    width: 100%;
}

ul img {
    width: 20em;
}

h3.titulos{
    padding-top: 2em;
    margin-left: 2em;
}

h4.titulos{
margin-left: 1.5em;
padding-top: 2em;
}

.articleflex p {
margin: auto;
justify-content: center;
    font-size: 1.1em;
}

.boton3{
    margin-top: 1.2em;
    display: flex;
    background-color: #040404;
    color: #FFC727;
    padding: .8em;
    border-radius: 0.6em;
    height: auto;
}

.boton4{
    display: flex;
    background-color: #040404;
    color: #FFC727;
    padding: .8em;
    border-radius: 0.6em;
    height: auto;
}

a.boton3{
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 1em ;
    margin-top: auto;
    width: auto;
}

a.boton4{
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 1.3em
}

.mostrar{
    display: flex;
    font-size: 3.3em;
    color: #FFC727 ;
}

.todosloslibros {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.todosloslibros img{
  width: 15em;
  margin-top: 1em;
}

h2.tituloslibros{
    width: 10em;
    font-weight: 700;
    font-size: 1.2em;
}

h2.titulolibros{
  font-size: 2.3em;
  color: #FFC727;
}

.libros {
margin: 2em 4em 0 0;
justify-content: space-between;
}

h3.descripcion{
    font-size: 1em;
    font-weight: 800;
    width: 10em;
}
h4.horario{
    font-size: 1em;
    font-weight: 700;
    width: 14em;
    padding-bottom: 1em;
}

h1.mostrarclub{
    display: flex;
    font-size: 1.8em;
    color: #000000;
    margin: 0 auto;
    margin-top: 1em;

}

/* menú filtros */
h6 {
  text-transform: none;
  font-weight: 400;
  font-size: .8em;
}

#caja5  {
  text-align: center;
  
}

.caja5items input  {
  padding: 1.2em;
  border-radius: 1em;
  margin-top: 1em;
  width: 20em;
  box-shadow: -1px 4px 16px -3px rgba(47, 47, 47, 0.57);
-webkit-box-shadow: -1px 4px 16px -3px rgba(47, 47, 47, 0.57);
-moz-box-shadow: -1px 4px 16px -3px rgba(47, 47, 47, 0.57);

}

#caja5 ul li {
  border-radius: 0.5em;
  padding: 0.5em 1em;
  margin-bottom: 1em;
  margin-right: 1em;
  
}

.ennegro {
  background-color: #000000;
  color: #FFC727;
  font-weight: 600;
  
}

.enamarillo {
  background-color: #FFC727;
  color: black;
  
}

ul.tipodelibros {
display: inline-flex;
flex-wrap: wrap;
margin-left: 0em;
}

main div#caja5 img {
  display: inline-block;
}


.participa h3{
  display: flex;
}

.libroforo {
  display: block;

}

.libroforo img{
  max-width: 80%;
}



.iniciarsesion{
  justify-content: center;
  text-align: center;
}


.iniciarsesion h2{
  font-weight: 700;
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #FFC727;
}


.iniciarsesion h3{
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 1.8em;
}

.iniciarsesion h4{
  font-size: 1.5em;
  margin-bottom: 1em;
  text-align: center;
}

.formulario{
  width: 350px;
  margin:auto;
  padding: 30px;
  justify-content: center;
  align-items: center;
}

.registro{
  width: 100%;
  padding: 10px;
  margin-bottom: 1.5em;
  border: 2px solid rgb(8, 8, 8);
  border-radius: 0.5em;
}

.botoncomenzar{
  margin-top: 1em;
  width: 100%;
  padding: 10px;
  margin-bottom: 1em;
  border: 2px solid rgb(158, 158, 158);
  border-radius: 0.5em;
  background-color: rgb(48, 48, 48);
  color: white;
  font-weight: 700;
}

.formulario p{
  margin-top: 1em;
  font-size: 0.9em;
  font-weight: 700;
  color: #FFC727;
  margin-bottom: 1.5em;
  justify-content: center;
}

.lineatexto1{
  display: flex;
  justify-content: center;
  margin: 1em;
}

.micuentageneral{
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.iniciocuenta{
  margin-top: 2em;
}

.datoseditar{
  justify-content: center;
  margin-bottom: 2em;
  flex-direction: row;
  flex-wrap: wrap;
}
.cajaflexible{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 1em;
}
.datoseditar button {
  margin-left: 2em;
  background-color: #FFC727;
  padding: 0em 1em 0em 1em;
  border-radius: .25em;
  width: 6em;
  height: 1.7em;
}

.lineatexto1 img {
  margin-left: -1em;
}
img#iconolibro, img#iconocorazon, img#iconocalendario{
  max-width: 90%;
}


p.textomicuenta1{
margin-left: 1em;
}

.search {
  display: flex;
}


.participadebate{
background-color: #FFC727;
padding: 1em;
border-radius: 0.25em;
width: 13em;
}

.participadebate a{
color: #000000;
}

.participa h3 {
  margin-bottom: 0em;
}

h3.contenedora.titulo {
  margin-top: 1em;
  margin-bottom: 0em;
  margin-left: 0em;
}

.botones {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.botones button{
  margin-top: 1em;
  background-color:#000000 ;
  color: #FFC727;
  border-radius: 0.25em ;
  text-align: center;
  padding: .5em;
  box-shadow: 2px 2px 10px rgb(128 128 128 / 48%);
  width: 12em;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.botones a{
  margin-top: 1em;
  background-color: #FFC727;
  color: #000000;
  border-radius: 0.25em ;
  text-align: center;
  padding: .3em;
  width: 8em;
  box-shadow: 2px 2px 10px rgb(128 128 128 / 48%);
  font-weight: 600;
}

.agendcalen img{
  width: 15em;
}

.mapa {
  padding: 0rem 2rem 1rem 2rem;
  max-width: 100%;
}

iframe {
  margin-top: 1em;
  width: 100%;
  height: 20em;
}

.bienvenida h3{
  margin-bottom: 1em;
}

.misdatos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2em;
}


img#iconocorazon {
  margin-bottom: .5em;
}

p.textomicuenta {
  margin: 1em 0em 1em 0em;
  font-weight: 600;
}


img.persona {
  width: 5em;
  height: 5em;
}

.opiniones{
  color: #000000;
  margin-top: 2em;
}

.usuario2{
  margin-top: 2em;
}
.usuario2 p{
  margin-bottom: 2em;
}

.botoncoment {
  margin-left: 2em;
  background-color: #FFC727;
  padding: .8em;
  border-radius: 0.6em;
}    
a.botoncoment {
color: black;
text-decoration: none;
margin-top: auto;
} 

footer {
  margin-top: 2em;
  position: relative;
  bottom: 0em;
  width: 100%;
  color: white;
  background-color: #000000;
}

footer p {
  padding: 1em;
  text-align: center;
  margin: auto;
  justify-content: center;
  font-size: 12px;
}

.logos {
  align-items: center;
  justify-content: center;
  margin: auto;
  display: flex;

}

.logos a img {
  width: 20em;
  padding: 1em 2em 0 2em;
}

footer > a {
  display: block;
  margin: 1.5em 4em 1em 4em;
  padding: .3em;
  text-align: center;
  background-color: #FFC727;
  border-radius: .25em;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}


  /*FOOTER*/
    
    

    .logos a {
        padding: 1em;
    }
    
    footer > a {
        margin: auto;
        width: 13em;
    }

    i.material-icons{
      display: flex;
      margin-top: 1em;
    }  

    .contenedora span {
      font-weight: 700;
    }

   
    h3.titulo{
margin-right: 0;
}

.ennegro{
background-color: #000000;
color: #FFC727;
}

.librodescarga img{
  max-width: 100%;
}

.botonenviar{
  margin-left: auto;
  text-align: left;
}
@media(min-width: 42em) {
  .misdatos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .datoseditar{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  img#iconolibro, img#iconocorazon{
    max-width: 50%;
  }

  .libroforo{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .libroforo img{

    max-width: 92%;
  }


.libroforo ul {
margin-top: auto;
}

.libroforo1{
  display: flex;
  flex-wrap: wrap;
}

.libroforo1 ul{
margin-left: 2em;
}

.imagen img{
  width: 20em;
}
}

/* A partir de los 50em */
@media(min-width: 50em) {
  
 .contenedora{
  position: relative;
  top:0;
  left:0;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  max-width: unset;
}

.logoclub{
  background-image: url(../img/libros.jpg);
  background-size: cover;
  width: 100vw;
  height: 40vh;
  margin-bottom: 3em;
}

 
header nav {
 position: relative;
}
 

.menu-btn {
 display: none;
}


header nav ul {
 display: flex;
 position: relative;
 opacity: 1;
 visibility: visible;
}
 

header nav ul li {
 min-width: 4em;
 margin: .25em 0 .25em .25em;
}


header nav ul li a {
 background-color: #FFC727;
 border-radius: .25em ;
 color: rgb(2, 1, 1);
 font-size: 1rem;
 width: auto;
 padding: .25em .5em;
 text-align: center;
 display: block;
}


header nav ul li a:hover {
 background-color: #FFC727;
 color: #009cde;
}

h3.titulos{
display: flex;
margin: 0 auto;
justify-content: center;

 }


h1{
display: flex;
font-size: 2em;
color: #FFC727;
margin: 0 auto;
justify-content: center;
}

 h2{
   display: unset;
 }
 
.descrip h1 {
 margin-top: 1em;
}
.todosloslibros{
display: flex;
flex-wrap: wrap;
justify-content: space-between;

}
.libros {
width: 25%;
margin: 2em 2em 0 0;
justify-content: space-between;
}


h2.tituloslibros, h3.descripcion{
width: unset;  
}

p.desc{
 margin: 0 auto;
 text-align: center;
 justify-content: center;
}

h4.horario {
 width: unset;
}

.buscador, p{
justify-content: center;
}

.participa h3{
justify-content: center;
}

.libroforo{
 justify-content: center;
 padding-bottom: 2em;
}

.libroforo ul {
  margin-left: 0em;
}

.libroforo ul li {
 text-align: left;
}


.calendario img{
  width: 20em;
}

.search {
margin: 0 auto;
text-align: center;
}


.iframe {
  margin: 0;
}

p.desc, .reseña p{
  width: 40em;
  margin: auto;
}

.botones {
  padding-top: 2em;
  margin: auto;
  width: 65%
}
.botones button{
  margin: auto
}

.botones a{
  margin: auto
}


.datoseditar h4{
  font-weight: 700;
font-size: 1.3em;
}

.usuario2 p, .usuario1 p{
  width: 50em;
}

.usuario1, .usuario2 {
  margin-left: 2em;
}

.botoncoment {
display: flex;
align-items: center;
justify-content: center;
margin: auto;
width: 15em;
}    

.mapa {
  justify-content: center;
  align-items: center;
  margin: auto;
}

.mapa h3{
  text-align: center;
}

iframe {
  width: 50em;
  height: 30em;
}

img#iconolibro, img#iconocorazon{
  max-width: 35%;
}


p.descripcioncomunidad{
  width: 40em;
  margin: auto;
}

.agendcalen>ul{
  display: flex;
  justify-content: center;
}  

.columnacalend{
  display: flex;
  margin-left: 2em;
  justify-content: center;
  flex-direction: column;
}


.librodescarga{
  flex-wrap: unset;
  text-align: left;
}
h3.titulodescarga{
  text-align: left;
}

.librodescarga{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.librodescarga img {
  max-width: 30em;
}
.librodescarga ul{
  margin-bottom: auto;
  margin-left: 2em;
}

.contenedora.foro{
  margin: 0 auto;
  align-items: left;
  text-align: left;
}


h3.titulolibro.contenedora{
  text-align: left;
}

}

@media(min-width: 60em) {

  .todosloslibros{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
    }

  .libros {
    width: 21%;
    margin: 0 1em 0 0;
    justify-content: space-between;
    }

    .parrafosquienesomos p {
      margin: 0 auto;
      width: 40em;
    }

    .misdatos{
      display: flex;
      justify-content: center;
    }

    .libroforo {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      justify-content: space-around;
    
    }
    .libroforo img{
      max-width: 20em;
    }
  
    .libroforo ul {
      margin-left: 2em;
    }
    .foro{
      display: flex;
      flex-wrap: nowrap;
    }

    .contenedora.foro{
      margin: 0 auto;
      align-items: left;
      text-align: left;
    }
    
  }

  @media(min-width: 77em) {

    h3.titulo{
      text-align: left;
    }

    .logoclub h1{
      display: flex;
      font-size: 2.3em;
      color: #FFC727;
      margin: 0 auto;
      justify-content: center;
      position: relative;
      top: 6em
     }
  } 
  
@media(min-width: 94em) {

  .misdatos{
    flex-wrap: nowrap;

  }

  h3.titulo{
    text-align: left;
  }

} 