@charset "utf-8" ;

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

/* font-family: 'Asap', sans-serif; */


/* "reseteo" selector universal */
*{
    /* para que el ancho de las cajas
       se calcule hasta los bordes y NO
       sólo por sus contenidos */
    box-sizing: border-box;

    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: #10303E;
}

h1{
    color: #10303E;
    font-family: 'Asap', sans-serif;
    padding-left: 2em;
}

h3{
    color: #10303E;
    font-family: 'Asap', sans-serif;
}

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

/*- - - - - H E A D E R - - - - -*/
header{
    font-family: 'Asap', sans-serif;
    width: 100%;
    background-color: #91B7A9;
    padding: 1em;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/*------ menu principal  --------*/
nav {
    position: relative; /* para ser origen de coordenadas de sus descendientes */
}

/* botón "hamburguesa" */
.menu-btn{

  padding: .75rem;
  width: 3rem;
  height: 3rem;

  position: absolute; /* fijo en header*/
  bottom: -2.6rem; /* emplazamiento */
  left: 1rem; /* emplazamiento */
  z-index: 9000; /* en capa superior */
  cursor: pointer;
  transition: all 0.3s ease-out; /* anima el "click" */
}

/* fondo del botón "hamburguesa" */
.menu-fondo {
  background: #91B7A9;
  z-index: 8000; /* capa superior, pero debajo del menu ppte dicho */

  padding: 0rem;
  width: 3rem;
  height: 3rem;

  position: absolute; /* fijo */
  top: 0rem; /* emplazamiento */
  left: -3rem; /* emplazamiento */

  cursor: pointer;
  transition: all 0.3s ease-out; /* anima el "click" */
}

/* cuando "nav" tiene la clase "menuVisible" */
.menuVisible .menu-fondo {
  background: #91B7A9;
  /* se agranda y se mueve */
  /*forma y ubicación del fondo de menú*/
  width: 200vw;
  height: 110vw;
  right: -100vw;
  top: 0vw;
}

/* cada barra de la "hamburguesa" */
.menu-btn .btn-linea {
  width: 25px;
  height: 3px;
  margin: 4px 0 4px 0;
  background: black;
  transition: all 0.3s ease-out;
  position: relative; /* capa superior, pero no parece */
  z-index: 9000; /* capa superior */
}

/* cada barra, transformacion para formar la "X" */
.menuVisible .menu-btn .btn-linea {
  transform: rotate(180deg);
  ;
}
/* Las tres barras para formar la "X" */
.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ú propiamente dicho */
nav ul {
  position: absolute; /* sale del fondo */
  left: 1rem; /* emplazamiento */
  top: calc(100% + 4rem); /* emplazamiento */
  opacity: 0; /* transparente */
  visibility: hidden; /* no se ve */
  z-index: 9999; /* capa superior, arriba de todo */
  transition: all .5s ease; /* anima cuando "nav" NO tiene la clase "menuVisible" */
}

.menuVisible ul {
  visibility: visible; /* se ve */
  opacity: 100%; /* opaco */
  transition: all .5s .2s ease; /* anima cuando "nav" tiene la clase "menuVisible" */
}

/* cada vínculo del menu */
nav ul li a {
  color: black;
  display: block;
  font-size: 1.5rem;
  margin-bottom: .5rem;
  width: min(40vw, 15rem); /* el valor menor entre el 40% del ancho de la ventana del navegador y 240px */
  text-align: left;
  padding: .5rem;
  text-decoration: none;
}

nav ul li a:hover {
  color: white;
  border-bottom: solid 4px rgba(255, 255, 255, 0.5);
  transition: all .3s;
}
/*------ fin menu principal -------*/


/*----- logo bma y icono perfil -----*/
#bmcyperfil{

    background-color: #91B7A9;

    padding: 1em 2em 1em 1em;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
}
/*- - - - - F I N  H E A D E R - - - - -*/

/*- - - - - M A I N - - - - -*/
main{
    font-family: 'Asap', sans-serif;
    padding: 2em;
}
/*- - - - - F I N  M A I N - - - - -*/

/*- - - - - I N I C I O  S E S I Ó N (I N D E X)  - - - - -*/
.iniciosesion {
    background-color: #91B7A9;
}

.logoindex {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4em 2em 0 2em;
}

#inicio-form{
    font-family: 'Asap', sans-serif;
    margin: 4em;

    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-start;
}

#inicio-form h2{
    padding: 0 0 1em 0;
    font-size: 40px;
  
}

#inicio-form form{
    padding-bottom: 2em;
}

#inicio-form h3{
    font-size: 18px;
}

#inicio-form input{
    background-color: #CBE4DB;
    padding: 0.6em;
}

#inicio-form p{
    font-size: 14px;
    padding-bottom: 1em;
}

#inicio-form a{
    text-decoration: underline;
    margin-bottom: 1em;
}
/*- - - - - F I N  I N I C I O  S E S I Ó N (I N D E X)  - - - - -*/

/*- - - - - R E G I S T R O  - - - - -*/
.registro{
    display:flex;
    justify-content: center;
}

#registro-form{
    font-family: 'Asap', sans-serif;
    margin: 4em;
}

#registro-form h1{
    padding: 0 0 2em 0;
    font-size: 30px;
}

#registro-form form{
    padding-bottom: 2em;
}

#registro-form h2{
    font-size: 40px;
    margin-bottom: 2em;
}

#registro-form input{
    background-color: #CBE4DB;
    padding: 0.6em;
}

#registro-form p{
    font-size: 14px;

    padding-bottom: 1em;
    max-width: fit-content;
}

#registro-form a{
    text-decoration: underline;
}
/*- - - - - F I N  R E G I S T R O  - - - - -*/

/*- - - - - S E C C I Ó N  P E R F I L - - - - -*/

#perfilMain{
    display: flex;
    flex-direction: column;
}

#perfilMain h2{
    margin-bottom: 1em;
}

#presentacionUsuario{
    background-color: #91B7A9;
    
    border: solid 20px #91B7A9;
    border-radius: 2em;
    padding-bottom: 2em;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center; 
}

#presentacionUsuario img{
    width: 50%;
}

#presentacionUsuario ul{
    padding-top: 1em;
    text-align: center;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#presentacionUsuario ul li h4{
    margin-bottom: 2em;
}

#presentacionUsuario ul a{
    background-color: #10303E;
    color: white;
    padding: 1em;
    border-radius: 10px;
}

#presentacionUsuario ul a:hover{
    background-color:white ;
    color:#10303E;
}

#presentacionUsuario h3{
    margin-bottom: 1em;
}

#miRetolectura{
    background-color: #CCAB84;
    border: solid 20px #CCAB84;
    border-radius: 2em;
    margin: 2em 0 2em 0;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.secuenciasLibros{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.secuenciasLibros figure{
    background-color: rgb(240, 229, 215);
    padding: 1em;
    border-radius: 1em;
    margin-right: 3em;
    margin-bottom: 3em;
}

.secuenciasLibros h3{
    max-width: fit-content;
    margin-bottom: 0.3em;
}
/*- - - - - F I N  S E C C I Ó N  P E R F I L - - - - -*/

/*- - - - - S E C C I Ó N  B I B L I O T E C A  - - - - -*/

/*------- ESTRENOS -------*/
.h3biblioteca{
    background-color: #91B7A9;
    color: #10303E;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 10px;
}

#estrenos{
    background-color: rgb(238, 208, 169);
    margin: 1em;
    border-radius: 2em;
    padding: 1em;
    display: flex;
    justify-content: center;
}

#estrenos img{
    max-width: 100%;
}

/*------- TEMAS -------- */

#temas{
    margin-bottom: 3em;
}

#temas ul{
    display: inline-flex;
    flex-wrap: wrap;
}

#temas a{
    background-color:#91B7A9;
    color: #10303E;
    margin:0.7em 0.4em 0em 0.4em;
    border-radius: 15px;
    padding: 0.4em;
    display: inline-flex;
    justify-content: space-between;
}

#temas a:hover{
    background-color:white;
    color: #10303E;
    box-shadow: 0.2em 0.2em rgb(201, 193, 191) inset;
}

/* ------ LIBRERIA ---------*/

.nacional{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.nacional figure{
    background-color: rgb(240, 229, 215);
    padding: 1em;
    border-radius: 1em;
    margin-right: 2.5em;
    margin-bottom: 3em;
}

.nacional h3{
    max-width: fit-content;
}
/*- - - - - F I N  S E C C I Ó N  B I B L I O T E C A  - - - - -*/

/*- - - - - S U B S E C C I Ó N  S E C C I Ó N  B I B L I O T E C A  - - - - -*/

/*----- BIBLIOTECA2 RESEÑA DE LIBRO  -----*/
#reseña-libro{
    display: flex;
    flex-direction: column;

    padding-top: 1em;
    margin-bottom: 4em;
}

#reseña-libro h3{
    text-decoration: underline;
}

#reseña-libro img{
    display: flex;
    justify-content: center;

    padding-bottom: 2em;
}

#reseña-libro div{
    display: flex;
    flex-direction: row;

    padding: 1em;
}

#reseña-libro h6{
    border: solid 3px #91B7A9;

    border-radius: 2em;
    padding: 0.25em 1em;
}

#reseña-libro p{
    padding: 1em;
}

#reseña-libro button{
    color: black;
    font-family: 'Asap', sans-serif;

    margin: 2em 6em 4em 6em;
    padding: 1em;
}
/*- - - - - F I N  S U B S E C C I Ó N  S E C C I Ó N  B I B L I O T E C A  - - - - -*/

/*- - - - - S E C C I Ó N  N O T I C I A S  - - - - -*/

.noticias h2{
    margin-bottom: 1em;
}

.noticias figure{

   /* para que cada "figure" sea origen de coordenadas de sus elementos contenidos */
    position: relative;
    /* para ocultar lo que "excede" sus límites */
    overflow: hidden;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    margin-bottom: 1em;
}

.noticias figure img{
    display: block;
}


.noticias figure figcaption{
    background-color: rgba(0, 6, 41, 0.6);
    color: white;
    padding: .5em;
    /*line-height: 1em; interlineado */
    
    position: absolute;
    width: 100%;
    height: 100%;
    top: calc(100% - 1.7em);
    transition: all .6s ease-out;
}

.noticias figure figcaption a{
    color: white;
    text-decoration: underline;
}

/* propiedades de figcaption SÓLO cuando el cursor se coloca encima de "figure" */

.noticias figure:hover figcaption {
    background-color: rgba(0, 6, 41, 0.6);
    top: 0;
    transition: all .2s ease;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.noticias figcaption span {
    display: block;
    font-size: .75em;
    color: #ddd;
    margin-top: .5em;
    text-transform: none;
}

/*-- Efemerides deslizable ----*/
/* galeria de imagenes */

.galeria {
    padding-bottom: 2em;
    max-width: 75em;
    margin-left: auto;
    margin-right: auto;
}
  
/* contenedor de slides */
.slider {
    position: relative; /* origen de coordenadas de sus descendientes */
    height: 50vh; /* altura igual a la mitad de la altura del navegador */
}
  
/* cada slide */
.slider__slide {
    display: none; /* comienza oculto */
}
  
/* imágenes de cada slide */
.slider .slider__slide img {
    object-fit: cover; /* se extienden para ocupar toda la etiqueta */
    width: 100%;
    height: 50vh; /* altura igual a la mitad de la altura del navegador */
}
  
/* botones "anterior" y "próximo" */
.prev,
.next {
    cursor: pointer;
    position: absolute; /* se superponen a los slides */
    top: 0;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px 24px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 50%;
    left: .5em;
}
  
/* Position del boton "proximo" a la derecha */
.next {
    left: unset;
    right: .5em;
}
  
/* En hover */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
  
/* epígrafe de cada slide */
.slider__text {
    background: rgba(0, 0, 0, 0.50);
    color: #f2f2f2;
    padding: 1em;
    position: absolute; /* se superpone a la imagen del slide */
    bottom: 0; /* emplazamiento abajo */
    width: 100%;
    text-align: center;
    font-weight: bold;
}
  
/* Numeros (1/4 etc) */
.slider__numbertext {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    color: #f2f2f2;
    position: absolute; /* se superpone a la imagen del slide */
    width: 5em;
    height: 5em;
    top: .5em;
    left: .5em;
    text-align: center;
    line-height: 5em;
}
  
/* bolitas */
.slider__dots {
    text-align: center;
    padding-top: .5em;
}
  
/* cada bolita */
.slider__dots--dot {
    cursor: pointer;
    height: 1em;
    width: 1em;
    margin: 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
/* bolita activa */
.active,
.slider__dots--dot:hover {
    background-color: #717171;
}
  
/* fading */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}
  
@keyframes fade {
    from {
      opacity: 0.4;
    }
  
    to {
      opacity: 1;
    }
}
/* fin del slider */
/*- - - - - F I N  S E C C I Ó N  N O T I C I A S  - - - - -*/

/*- - - - - S U B S E C C I Ó N  N O T I C I A S  - - - - -*/

/*----- Noticia-nota ciudad evita -----*/
#nota-denoticias{
    font-family: 'Asap', sans-serif;
    margin: 2em 0 3em 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#nota-denoticias h2{
    font-size: 28px;
    padding: 1.5em 0 0.6em 0;
}

#nota-denoticias h3{
    font-size: 20px;
    padding-bottom: 0.6em;
}

#nota-denoticias p{
    font-size: 16px;
    padding-bottom: 0.6em;
}
/*- - - - - F I N  S U B S E C C I Ó N  N O T I C I A S  - - - - -*/

/*- - - - - S E C C I Ó N  F I L M S  - - - - -*/

#filmes{
    padding-top: 1em;
    border: 0;
}

#filmes h2{
    text-decoration: underline;
}

#filmes article{
    padding-top: 2em;
    border: 0;
}

.seccionFilms-inicio{
    background-color: rgb(238, 208, 169);
    border-radius: 2em;
    padding: 0 0 1em 1em;
    margin: 1em 0 2em 0;
    

    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.seccionFilms-inicio img{
    width: 80%;
}

.seccionFilms{
    padding: 1em;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
}

.seccionFilms figure{

    background-color: rgb(240, 229, 215);
    padding: 1em;
    border-radius: 1em;
    margin-right: 3em;
    margin-bottom: 3em;
}

.seccionFilms img{
    width: 90%;
}

.sectionFilms h3{
    max-width: fit-content;
}
/*- - - - - F I N  S E C C I Ó N  F I L M S  - - - - -*/

/*- - - - - S U B S E C C I Ó N  F I L M S  - - - - -*/
/*----- Sinopsis de Films -----*/
#sinopsis-film{
    display: flex;
    flex-direction: column;

    padding-top: 1em;
    margin-bottom: 4em;
}

#sinopsis-film h3{
    text-decoration: underline;  
}

#sinopsis-film img{
    display: flex;
    justify-content: center;

    padding-bottom: 2em;
}

#sinopsis-film div{
    display: flex;
    flex-direction: row;

    padding: 1em;
}

#sinopsis-film h6{
    border: solid 3px #91B7A9;
    border-radius: 2em;
    padding: 0.25em 1em;
}

#sinopsis-film p{
    padding: 1em;
}

#sinopsis-film button{
    color: black;
    font-family: 'Asap', sans-serif;

    margin: 2em 6em 0 6em;
    padding: 1em;
}
/*- - - - - F I N  S U B S E C C I Ó N  F I L M S  - - - - -*/

/*- - - - - S E C C I Ó N  F O R O S  - - - - -*/

#secciones-chat{
    margin-bottom: 3em;
}

#secciones-chat ul{
    display: inline-flex;
    flex-wrap: wrap;
}

#secciones-chat a{
    background-color:#91B7A9;
    color: #10303E; 
    margin: 0.7em 0.4em 0em 0.4em;
    border-radius: 15px;
    padding: 0.4em;

    display: inline-flex;
    justify-content: space-between;
}

#secciones-chat a:hover{
    background-color: white;
    color: #10303E;
    box-shadow: 0.2em 0.2em rgb(201, 193, 191) inset;
}

.chat-foro{
    background-color: #91B7A9;
    padding: 1em;
    max-width: fit-content;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.chat-foro figure{
    max-width: fit-content;
    text-align: left;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;

    padding-top: 0.5em;
}

.chat-foro figcaption{
    background-color:#CBE4DB;
    color: #10303E; 
    border-radius: 15px;
    padding: 0.4em;
    max-width: fit-content;
    height: fit-content;
}

.chat-foro figure img{
    width: 20%;
    padding-right: 0.5em;
}

.chat-foro form{
    padding-top: 2em;
    max-width: fit-content;   
}

.chat-foro form input{
    padding: 1em 1.5em;
}

.chat-foro form button{
    padding: 1em;
}
/*- - - - - F I N  S E C C I Ó N  F O R O S  - - - - -*/

/*- - - - - S E C C I Ó N  T A L L E R E S - - - - -*/

.talleresdisponibles{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.opciontaller {
    background-color: #91B7A9;
    padding: 1em;
    border-radius: 1em;
    margin-right: 2.5em;
    margin-bottom: 3em;    
}

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

.opciontaller .infopreviataller{
    max-width: fit-content;
}

.tttaller {
    margin-top: 1em;
    margin-bottom: 2em;
    background-color: #10303E;
    color: white;
    border-radius: 10px;
    padding: 0.5em;
}

.ttvermas a{
    background-color: #10303E;
    padding: 0.5em;
    color: white;
    border-radius: 5px;
}

.ttvermas a:hover{
    background-color: rgb(238, 208, 169);
    color: #10303E;
    padding: 0.5em;
    border-radius: 5px;
}

.fechataller a{
    font-style: italic;
    color: #10303E;
    margin-top: 1em;
}

.fechataller a:hover{
    color: white;  
} 

/* Taller 1 y 2*/

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

.talleringreso{
    background-color: rgb(238, 208, 169);
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2em;
    justify-content: center;
    border-radius: 10px;
}

.datostalleringreso{
    margin:2em;
    max-width: 600px;
}

.datostalleringreso p{
    margin-bottom: 2em ;
}

.datostalleringreso .linktaller{
    background-color: #10303E;
    color: white;
    padding: 1em;
    border-radius: 10px;
}

.datostalleringreso .linktaller:hover{
    background-color: white;
    color: #10303E;
}

.talleringreso img{
    max-width: 100%;
}
/*- - - - - F I N  S E C C I Ó N  T A L L E R E S - - - - -*/

/*- - - - - S E C C I Ó N  A G E N D A  - - - - -*/
.year{
    width: 100%;
    margin: 4em 0em;
    padding: 0em 5em;
    display: flex;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2em;
    
}

.containerAgenda{
    width: 30em;
    border: 1px solid #ddd;
    padding: 1em;
    box-shadow: -.5px 3px 5px rgba(0,0,0,0.1);
    margin-bottom: 4em;
}

.titleAgenda{
    text-align: center;
    margin: .2em 0;
    color: #232323;
    font-size: 2em;
    text-transform: uppercase;
}

.calendar{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.day{
    list-style: none;
    text-align: right;
    padding: .3em .5em;
    color: #444;
    font-size: 1.2em;
}

.day-name{
    background: #eee;
    font-weight: 700;
    text-align: center;
}

.first-day{
    grid-column-start: 5;
}
.first-day-abr{
    grid-column-start: 4;
}
.first-day-may{
    grid-column-start: 6;
}
.first-day-jun{
    grid-column-start: 2;
}
.first-day-jul{
    grid-column-start: 4;
}
.first-day-ago{
    grid-column-start: 7;
}
.first-day-sep{
    grid-column-start: 3;
}
.first-day-oct{
    grid-column-start: 5;
}
.first-day-dic{
    grid-column-start: 3;
}

.fechaagenda{
  background: #91B7A9;
}

.infoagenda{
  background-color: rgba(0, 6, 41, 0.6);
  color: #10303E;
  margin:0.6em 0.3em 0em 0.3em;
  border-radius: 10px;
  padding: 0.3em;
  display: inline-flex;
  justify-content: space-between;
}

.anotarmeagenda{
  background-color:#91B7A9;
  color: #10303E;
  margin:0.6em 0.3em 0em 0.3em;
  border-radius: 10px;
  padding: 0.3em;
  display: inline-flex;
  justify-content: space-between;
}

.tituloagenda{
  padding: 0em;
  margin: 0.6em 0.2em 0.2em 0.3em;
}
/*- - - - - F I N  S E C C I Ó N  A G E N D A  - - - - -*/

/*- - - - - F O O T E R  - - - - -*/
footer{
    background-color: #91B7A9;
    font-family: 'Asap', sans-serif;
    padding: 2em;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.redesAcumar ul{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
/*- - - - - F I N  F O O T E R  - - - - -*/

/* cambios a partir de los 640px */
@media(min-width: 40em) {
    h1{
        display:none
    }
    h2,
    h3{
        justify-content: flex-start;
        width: 100%;

    }

    /*- - - - - H E A D E R  - - - - -*/
    /* el menú deja de ser fijo */
    header nav {
        position: relative;
    }

    /* botón "hamburguesa" oculto */
    .menu-btn {
        display: none;
    }

    /* menu visible */
    header nav ul {
        display: flex; /* caja flexible para menu horizontal*/
        justify-content: center;
        position: relative;
        opacity: 1;
        visibility: visible;
    }

    /* items de lista  que contienen los vínculos del menu */
    header nav ul li {
        min-width: 4em; /* que no midan menos de: */
        margin: .25em 0 .25em .25em; /* separación */
    }

    /* vínculos del menu principal */
    header nav ul li a {
        background-color: rgba(0, 20, 20, 0.9);
        border-radius: .25em ;
        color: #91B7A9;
        font-size: 18px;
        width: auto;
        padding: .25em .5em;
        text-align: center;
        display: block; /* para que sean "cajas" */
    }

    /* cuando el cursor se posiciona sobre los vínculos */
    header nav ul li a:hover {
        background-color: white;
        color: #91B7A9;
    }
    /*------------------*/

    /*----- logo bmv -----*/
    .logo img{
        width: 10%;
        height: 50%;
    }

    /* tamaño del icono del perfil */
    .material-icons {
        font-size: 40px;
    }
    /*- - - - - F I N   H E A D E R  - - - - -*/

    /*- - - - - S E C C I Ó N  P E R F I L  - - - - -*/

    #presentacionUsuario{
        background-color: #91B7A9;
        padding: 1em 2em 1em 2em;
    
        border: solid 20px #91B7A9;
        border-radius: 2em;
    
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center; 
    }
    
    #presentacionUsuario img{
        width: 9em;
    }
    
    #presentacionUsuario ul{
        padding-left: 2em;
        text-align: left;
    
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    #presentacionUsuario h3{
        margin-bottom: 1em;
    }
    /*- - - - - F I N  S E C C I Ó N  P E R F I L  - - - - -*/

    /*- - - - - S E C C I Ó N  N O T I C I A S  - - - - -*/
    .noticias{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .noticias figure img{
        width: 40%;
        height: auto;
    }

    .noticias figure figcaption{
        background-color: rgba(0, 6, 41, 0.6);
        color: white;
        /*line-height: 1em; interlineado */
        font-weight: 1000;

        position: absolute;
        width: 40%;
        height: 100%;
        top: calc(100% - 1.7em);
        transition: all .6s ease-out;
    }
    /*- - - - - S E C C I Ó N  N O T I C I A S  - - - - -*/

    /*- - - - - S U B S E C C I Ó N  F I L M S  - - - - -*/
    #sinopsis-film img{
        width: 30%;
    }
    /*- - - - - F I N  S U B S E C C I Ó N  F I L M S  - - - - -*/

}

@media(min-width:900px){
    
    #reseña-libro img{
    max-width: 35%;
    }
}



