@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

img {
    max-width: 100%;
    height: auto;
    
    }
/* *** Primera Parte para Dispositivos móviles, Mobile First *** */

header {
    background-color: #dd6743;
    padding:0.3rem;
    box-shadow: 0 4px 2px rgba (o,o,o,o.25);
}
header{
    position:sticky;
    top:0;
    z-index:5000;
}
header .contenedor{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.contenedor{
    margin:0 auto;
    padding:0.5;
}
#logo{
    display: block;
    width: 3em;
    }

/
header nav{
    color:white;
    font-weight: bold;
    
    }

header nav a{
    color: white;
    padding:.5em 1em;
    text-decoration: none;
    display: flex;
    justify-content:flex-start;
    align-items:flex-start;
}

header nav a: hover{
    background-color: rgba(0,0,0,0.5);
    color:white;
    
}

/*Menu propiamente dicho */

header nav ul {
    background-color: (0,0,0,0.75);
    /* el menu sale del flujo de informaciones y se oculta a la derecha*/
    position:fixed;
    list-style: none;
    right:0;
    top:-100%;
    height:100vh;
    left:60%;
    z-index:9990;
    padding-top:4em;
    transition:all .5s ease;

   
}

header nav.visible{
    background-color: #ffd7bb;
    top:0;
    left:50%;
    transition: all .25s ease;
    justify-content: flex-start;
    padding: 1em 0 1em 50%;

     
}

.visible{
     /*el menu se muestra corriendose a la izquierda*/
    background-color:black;
    top:0;
    transition: all .25s ease;

}

header nav .visible a{
    justify-content: flex-start;
    padding:em 0 1em 50%;
    color:white;

}

/* boton que llama al menu*/

#llamamenu {
    background-color: rgba(0,0,0,0.75);
    color:white;
    cursor: pointer;
    height: 2.5em;
    width:2.5em;
    /*caja flexible*/
    display:flex;
    position:relative;
    z-index:9999;
}
#llamamenu:hover{
    background-color: rgba(0,0,0,0.75);
}

#llamamenu i{
    padding:0;
    /*centrado en la horizontal y o vvertical */
    margin:auto;
    
}
*/

/*PAGINA DE INICIAR SESION*/

.ingresar{
    background-color: #dd6743;
    text-align: center;
}
.encabezado {
    background-color: #dd6743;
    display:flex;
    justify-content: center;
}



#logos{
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
}

.logobibliotecas {
    display: flex;
    text-align: center;
    
}

#ingresar p{
    display:flex;
    justify-content: center;
    font-weight: bold;
    font-size: 17px;
    color: white;
    margin-bottom: 1.5em;
    text-align: center;    
}
.datos{
    background-color:#dd6743;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
   
}

#ingresar h1{
    display: flex;
    justify-content: center;
    color: white;
    margin-bottom: 1em;    
}
#ingresar h3{
    font-size: 17px;
    margin-top: 1em;
    padding-left: 0.3em;
    margin-bottom: 0.2em;
    color: white;
}

#ingresar p{
    padding-left: 2em;
    color: white;    
}

.caja{
    border:solid black;
    font-size: 14px;
    background-color: white;
    margin: 1em;
    border-color: antiquewhite;
    padding: 0.5em 5em;
    border-radius: 5px;
}

ul li a{
    list-style-type: none;
    text-decoration: none;
    color:black;
    font-size: 14px;
}

label {
    color:beige;
}

.recordar { 
color: beige;
}

.olvidarcontrasena {
    margin-top: 1em;
    color:beige;
    text-decoration: none;
    list-style: none;
}

.crearcuenta {
    display: inline-block;
    text-align: center;
    background-color: antiquewhite;
    border-radius: 4px;
    list-style: none;
    width: 10em;
    height: 3em;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding:13px 20px;
    margin-top: -0.5em;
}

.crearcuenta a {
    color: black;
}

.start{
    background-color: antiquewhite;
    border: black;
    color: white;
    padding:13px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    -webkit-transition-duration:0.4s;
    transition-duration: 0.4s;
    border-radius: 4px;
    margin-top: 1.5em;
}
.start: hover{
    background-color:antiquewhite;
    color: black;
}

.start a{
    color:antiquewhite;
    font-size: 16px;
    color: black;  
}
.invitado {
    background-color:antiquewhite;
    border: black;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
     -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    border-radius: 4px;
    margin-top: 2em;
     margin-bottom: 3em;
    float: left;
    margin-left: 4px;
}

.invitado:hover {
    background-color:antiquewhite;
    color: white;
}

.invitado a{
    color:antiquewhite;
    font-size: 16px;
    color: black;  
}

.slogan {
    margin-top: 2em;
    margin-bottom: 2em;
    color:beige;
}

.acumar { 
width: 30%;
}

p.contenedora {
    width: auto;
    display: flex;
    justify-content: center;
}
#logoiniciarsesion {
    display: flex;
    font-size: 18px;
    color:white;
    text-align: start;
    margin-left: 0.5em;
}

/*listo pagina iniciar sesion*/
/*pagina principal*/


.bodypaginaprincipal{
    background-color: #ffd7bb;
    }

main .virtual .boton{
    background-color: white;
    border-radius: 1em;
    margin: 1em;
    padding: 0.5em;
    margin-left: 5em; 
    margin-right: 5em;
    text-align: center;
    
    }
main .virtual .boton a{
    color: #dd6743;
    text-decoration: none;
    font-weight: bold;
    font-size: 23px;
    
}
main .presencial .boton{
    background-color: white;
    border-radius: 1em;
    margin: 1em;
    padding: 0.5em;
    margin-left: 5em; 
    margin-right: 5em;
    text-align: center;
    font-size: 20px;
}
main .presencial .boton a{
    color: #dd6743;
    text-decoration: none;
    font-weight: bold;
    font-size: 23px;
}
html {
    height: -webkit-fill-available;
}

.comunicate {
    display: block;
    text-align: center;
}


.comunicate > #nosotros > .nombre > .caja {
    border: solid black;
    font-size: 14px;
    background-color: white;
    border-color: antiquewhite;
    padding: 0.5em 5em;
    border-radius: 2em;

}
.comunicate>#nosotros>.nombre>h3{
    font-size: 20px;
    text-decoration: none;
    color:#dd6743;
    text-align: center;
    
}
.comunicate>#nosotros>h1{
     color:#dd6743;
    text-align: center;
    font-size: 40px;
    }
.tumeves{
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-direction: column;    
}
.resenas h1{
    color:#dd6743;
    text-align: center;
    font-size: 40px;
   } 
.tumeves h2{
    font-size: 27px;
    color:black;
    margin-bottom: 1em;
}
.tumeves h4{
    margin-bottom: 1em;
    
}
.tumeves img{
    margin-bottom: 1em;
        
}
.tumeves p{
    margin-bottom: 2em;
}
.dracula h2{
   font-size: 27px;
    color:black;
    margin-bottom: 0;
}
.dracula h4{
  margin-bottom: 1em;
}
.dracula img{
  margin-bottom: 1em;
}
.dracula{
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-direction: column; 
}
.muertesubita h4{
    margin-bottom: 1em;
}
.muertesubita h2{
    font-size: 27px;
    color:black;
    margin-bottom: 0;
}
.muertesubita img{
    margin-bottom: 1em;
}
.muertesubita p{
    margin-bottom: 2em;
}
.muertesubita{
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    flex-direction: column; 
}
    
.resenatumeves h2 {
    color:#dd6743;
    text-align: center;
    font-size: 40px;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
   } 

.otrasresenas {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2em;


}

.resena .tumevesimagen {
    margin-top: 1em;
}

.resena .bielsainformacion {
    font-weight: 600 !important;

}

.resenatumeves {
    display: flex !important;
    margin: 1em;
    flex-direction: column !important;

}


.davidlorenbielsa img {
    display: flex !important;
    border-radius: 20em !important;
    margin-top: 1em;
    margin-bottom: 1em;
    }

/*esto es para que justifique bien los parrafos  */
@supports ((-webkit-hyphens:auto) or (hyphens:auto)) {

    #inner-content-div,
    footer,
    .tumeves p,
    .muertesubita p,
    .dracula p,
    .sobreellibro,
    .resena,
    .bielsainformacion, .presencial2 p {
        text-align: justify;
        -webkit-hyphens: auto;
        hyphens: auto;
    }
}
 .puntolector {
    text-align: center;
    line-height: 2em;
    
}
.googlemaps {
    position: relative;
    margin: 20px;
    margin-bottom: 1.5em;
    height: 0;
    padding-bottom: 56.25%;
    margin-top: 1.5rem;
    
}
.googlemaps iframe {
    position: absolute;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
}
.facebook {
     position: relative;
    margin: 20px;
    margin-bottom: 1.5em;
    height: 0;
    padding-bottom: 56.25%;
    margin-top: 1.5rem;
    
}
.facebook iframe {
    position: absolute;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
}

.redesiframe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.redesiframe .twitter {
    margin-left: 1.5em;
}



.galeria{
    display:flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin:1em;
    margin-top: 1em;    
    }

.galeria a{
    flex-basis: 40%;
    padding:1vw;
    margin:2vw;
    color:#dd6743;
    }
.galeria a{
    list-style: none;
    text-decoration: none;
}

.logo img{
    display: block;
    width:5em;
}


.galeria figure:hover figcaption{
    background-color: rgba (0,60,60,.5);
    top:0;
}
.galeria figcaption {
    display:block;
    color:black;
    text-transform: none;
    margin:0.5em;
    text-align: center;
    font-weight: bold;
}

#recorridosInicio h1 {
     color:#dd6743;
    text-align: center;
    font-size: 40px;
    }
#recorridosInicio h3{
    text-align: center;
    margin: 1em;
    font-size: 22px;
}

#recorridosInicio h2 {
text-align: center;
    margin: 1em;
    font-size: 27px;
    }
.subir{
    display: flex;
    justify-content: center;
}

.mapa h1 {
    color:#dd6743;
    text-align: center;
    font-size: 40px;
    }

.mapa h2 {
text-align: center;
    margin: 1em;
    font-size: 22px;
    }

.encuentros h1 {
 color:#dd6743;
    text-align: center;
    font-size: 40px;
    }

.calendar {
  display: flex;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 3em auto 0 auto;
    padding: 1.5em;
    background-color: #fff;
    border: 2px solid var(--blue-grey-200);
    border-radius: 8px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
}

.month-indicator {
  display: flex;
    color: var(--blue-grey-700);
    text-align: center;
    font-weight: 500;
}
.date-grid {
    display: grid;
}
.day-of-week {
    display: flex;
}
// CSS grid used for the dates
.day-of-week,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

// Styles for the weekday/weekend header
.day-of-week {
  display: flex;
  margin-top: 1.25em;
}

.day-of-week > * {
  font-size: 0.7em;
  color: var(--blue-grey-400);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-variant: small-caps;
  text-align: center;
}

/* Dates */
.date-grid {
  margin-top: 0.5em;
}
.date-grid button{
  background-color: #dd6743 ;
    color: beige;
}

/* Positioning the first day */
.date-grid button:first-child {
  grid-column: 6;
}

// Style for each day
.date-grid button {
  position: relative;
  border: 0;
  width: 4.5ch;
  height: 4.5ch;
  border-radius: 50%;
  background-color: transparent;
  color: var(--blue-grey-600);
}

.date-grid button:hover,
.date-grid button:focus {
  outline: none;
  background-color: var(--blue-grey-050);
  color: var(--blue-grey-700);
}

.date-grid button:active,
.date-grid button.is-selected {
  background-color: var(--teal-100);
  color: var(--teal-900);
}
.encuentros {
    margin: 1em;
}
.encuentros h1 {
    margin-bottom: 1em;
}
.encuentros h1, .virtual h2, .presencial h2 {
    color: #dd6743;
}
.virtual h2, .presencial h2 {
   font-size: 100;
}
.presencial {
    margin: 1em;
}
.presencial2 {
    margin: 2em;
    background-color: beige;
   padding: 2em;
    
}
.presencial2 h2 {
     margin-top: 1em;
    margin-bottom: 1em;
}
.presencial2 h1 {
    margin-top: 1em;
    margin-bottom: 1em;
    
}
.presencial2 h5 {
    display: flex;
    justify-content: center;
       
}
.debateimagen {
    display: flex;
    justify-content: center;
    border: 3em;
    border-color: beige;
    flex-direction: column;
    line-height: 2em;
     margin-top: 1em;
    margin-bottom: 1em;
    
}
/*link subir*/
.subir{
    text-decoration: none;
    color:darkcyan;
    font-weight: bold;
}
.subir:hover{
    text-decoration: underline;
}

/*footer pagina iniciar sesion*/

footer{
    font-size: .85em;
    background-color: #dd6743;
    color:beige;
    justify-content: flex-start;
    text-align: justify;
    margin:auto;
}

/*carrusel de libros*/

#libros{
    margin:1em;
    text-align: left;
    line-height: 33px;
}
#libros h3{
    text-align: center;
    color:#dd6743;
    font-weight: bold;
    font-size:2em;
    margin-bottom: 0.5em;
    margin-top:0.5em;
}
#libros h1{
    text-align: center;
    color:#dd6743;
    font-weight: bold;
    font-size:2em;
    margin-top:0.5em;
    
}
    
#libros h2{
    text-align: left;
    color: #dd6743;
    font-weight: bold;
    font-size: 1.5em;
}


.scroll-contenedor{
    width: auto;
    height: 260px;
    overflow-y: hidden;
    overflow-x: auto;
    padding:0.3px;
    background: #dd6743;
    white-space: nowrap;
    margin:1em;
    margin-top: 0em;
    }
.scroll-contenedor img{
    width:auto;
    height: 260px;
    overflow-y: hidden;
    overflow-x: auto;
    padding:5px;
    background: #dd6743;
    white-space: nowrap;
}
#inner-content-div h1{
    text-align: center;
    margin-bottom: 0.5em;
}
#inner-content-div p{
    text-align: center;
    padding-left: 2em;
    padding-right: 2em;
    
}

main { 
    background-color: #ffd7bb;
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
    flex-direction: column;
}

/*main {
    background-color: #ffd7bb;
    width: 600px;
    padding: 0.5em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    }*/

.subir{
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 1.5em 0;
}

.subir: hover{
    text-decoration: underline;
}

section {
    margin: 0;
}

#video h1 {
    color:#dd6743;
    text-align: center;
    font-size: 40px;
    margin-bottom: 0.5em;
}

.biblio h2{
    color:#dd6743;
    text-align: center;
    font-size: 40px;
    
}
.bloque nav ul li{
    font-size: 25px;
    color:#dd6743;
    margin-top: 2em;
    }

.leerlibro ul li a {
    background-color: white;
    border-radius: 2em;
    margin: 1em;
    padding: 0.5em;
    margin-left: 1em; 
    margin-right: 1em;
    margin-bottom: 1em;
    text-align: center;
    font-size: 20px;
    }
.leerlibro img {
    margin-bottom: 1em;
    }
.leerlibro h3 {
    margin-top: 1em;
    margin-bottom: 1em;
    }
.leerlibro h1{
    color:#dd6743;
    text-align: center;
    margin-top: 0.5;
    margin-bottom: 0.5em;
    font-size: 35px;    
}
.sobreellibro h3 {
font-weight: normal;
        
    }
.recomendados h2{
color: #dd6743;
    text-align: center;
    font-size: 25px;
    }

.botoneslibro {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}
.botonanterior {
    display: flex !important;
    justify-content: flex-start;
    position: absolute;
    
}
.botonsiguiente {
    display: flex !important;
    justify-content: flex-end;
    position: absolute;
}

/*RESPONSIVE */


@media (min-width: 600px) {
     #textlogo {
    display: block;
    font-size:18px;
    color:white;
    }
    
}

@media (min-width: 800px) {
    
    #logo {
    display: block;
    }
    
    #textlogo{
    display: block;
    font-size:18px;
    color:white;
    /*margin-right: 10px;
    margin-left: 0.2em;*/
    }
    
    #llamamenu {
        display: none;
    }
    header nav ul {
        display: flex;
        flex-wrap: wrap;
        position: unset;
        height: auto;
        padding-top: 0;
    }

    header nav ul.visible {
        background-color: #dd6743;
    }

    header nav .visible a {
        justify-content: center;
        padding: .5em 1em;
    }
    .galeria {
        display: flex;
        flex-direction: row;
        }
    .redesiframe {
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    
}
       
    .tumeves {
        align-items: center;
        }
    .muertesubita {
        align-items: center;
        }
    .dracula {
        align-items: center;
        }
    

}

@media (min-width: 768px){
  #logo {
    display: block;
   
    }
    
    #textlogo{
    display: block;
    font-size:18px;
    color:white;
        }
    }
@media (min-width: 992px){
    #textlogo{
    display: block;
    font-size:18px;
    color:white;
    /*margin-left: 0.2em;
    margin-right:40px;*/
    }
    }
@media (min-width: 950px){
    #textlogo{
    display: block;
    font-size:18px;
    color:white;
    /*margin-left: 0.2em;
    margin-right:180px;*/
    }
    }
@media (min-width:1100px){
    #textlogo{
    display: block;
    font-size:18px;
    color:white;
    /*margin-left: 0.2em;
    margin-right:215px;*/
    }
    }
@media (min-width: 1024px) {
    #logo {
        display: block;
        
    }
     #textlogo{
    display: block;
    font-size:18px;
    color:white;
    /*margin-right:320px;*/}
    .subir{
    display: flex;
    justify-content: center;
}
}

@media (min-width:768px) {
    
    .subir{
    display: flex;
    justify-content: center;
}
    .logobibliotecas {
        display: flex;
        justify-content: center;
    }
    
    .datos {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    
        
    }
}





























/*@media (min-width: 1400px) {
     #textlogo{
    display: block;
    font-size:18px;
    color:white;
    margin-right:400px;}
}
@media (min-width: 1519px) {
    #textlogo{
    display: block;
    font-size:18px;
    color:white;
    margin-right:400px;}
}
@media (min-width: 1600px) {
    #logo {
        display: block;
        
    }
     #textlogo{
    display: block;
    font-size:18px;
    color:white;
    margin-right:400px;}
}

*/



