.logo{
    width: 200px;
    height: auto;
    cursor: pointer;
}

.burger{display: none;}

nav {
    z-index: 9;
    display: flex; justify-content: space-between;
    width: 100vw; max-width: var(--max-ancho);
    height: 70px;
    margin-top: 2em;
    padding: 0 1em;
    font-size: .8rem;
    position: sticky; top: 0;
    background-color: var(--blanco);
    border-radius: 0 0 .8em .8em;
}
ul{
    display: flex; justify-content: flex-end; align-items: center;
}
li{
    list-style: none;
    margin: 0 .6em;
    transition: all .3s ease;
}
li a {
    text-decoration: none;
    color: var(--gris_oscuro);
    cursor: pointer;
}
li a:hover{
    font-weight: 500;
    color: var(--main);
    text-decoration: underline;
    transition: all .3s ease;
}
button.btn_blog{
    height: auto;
    margin: 0;
    margin-left: 2em;
    background-color: var(--main);
}


.home{
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: 100%;
    background-color: #b2fcc7;
    box-sizing: border-box;
}



/* anclas */
.about,
.ancla_galeria { width: 100%; margin-top: -120px;}
.ancla_prensa  { width: 100%; margin-top: -75px;}
.ancla_tienda  { width: 100%; margin-top: -75px;}
.ancla_blog    { width: 100%; margin-top: -75px;}

/* modal */
.modal{
    z-index: 2;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.8);
}



/* presentacion */
section.presentacion{
    display: flex; justify-content: space-between; align-items: flex-start;
    width: 100vw;
    height: auto; min-height: 150px;
    margin-top: 80px;
}
.presentacion_txt{
    position: relative;
    display: flex; flex-wrap: wrap;
    width: 50%; height: auto;
}
.presentacion .cargo{
    display: flex; align-items: center;
    width: 100%; max-height: 25px;
    font-size: .8rem;
    text-transform: uppercase;
}
 .presentacion .cargo span{
    display: inline-block;
    width: 10px; aspect-ratio: 1/1;
    margin-right: .8em;
    background-color: var(--main);
    border-radius: 50%;
    animation: cargo_bold;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

    @keyframes cargo_bold{
        0% {background-color: transparent;}
        50% {background-color: var(--main);}
        100% { background-color: transparent;}

    }


.presentacion .puntos_decoracion{
    position: absolute; bottom: -80px; left: -100px;
    width: 190px; height: 80px;
    background-image: url("../img/diamantes.gif");
    opacity: .2;
}
.presentacion h2{
    width: 100%;
    margin: .5em 0 0 0;
    font-family: var(--Playfair);
    font-weight: 600;
    font-size: 3.8rem;
    color: var(--negro);
    line-height: 3.5rem;
}
.presentacion p {
    color: var(--negro);
    font-size: .95rem;
}
.presentacion_img{
    width: 400px;
}





/* entidades */
section.entidades {
    margin: 0;
}
.entidades ul{
    display: flex; justify-content: space-between; align-items: center;
    width: 80%; height: auto; max-height: 100px;
    margin: 0; padding: 0;
}
.entidades li{
    margin: 0; padding: 0;
    display: flex; justify-content: center; align-items: center;
    width: auto; aspect-ratio: 1/1;
}
/* datos */
.datos_box{
    display: flex;
    width: 100vw;
    height: 300px;
    max-width: var(--max-ancho);
    /* margin-bottom: 3em; */
}
.datos_numeros{
    flex: 1; 
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; 
}
.datos_numero_box{
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; 
    width: calc(33% - 1em); height: calc(50% - 1em);
    margin: 0 .5em;
    padding-bottom: 1em;
    background-color: rgba(200,200,200,.2);
    box-sizing: border-box;
    border-radius: .8em;
}
.datos_numero_box h2{
    position: relative;
    font-size: 4rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--main);
}
.datos_numero_box span img{ width: 100px; height: auto;}
.datos_numero_box span{
    display: flex; justify-content: center; align-items: center;
    width: 100%;
}
span.plus{
    position: absolute; top: 20px; left:-50px;
    display: flex;
    font-size: .5em;
}
.datos_numero_box h3{
    font-size: 1rem;
    font-family: var(--Popins);
    color:  var(--gris_oscuro);
    text-align: center;
    line-height: 1em;
}
.datos_personales{flex: 1; display: flex; justify-content: center; align-items: center;}
.datos_personales_img img{ width: 100%; height: auto;}
.datos_personales_img {
    flex: 1;
    width: 100%;
    height: 100%;
    margin-right: 1.5em;
    border-radius: .8em;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    transition: all .3s ease;
}
.datos_personales_img:hover {box-shadow: 0 0 10px rgba(0,0,0,.5); transform: scale(1.05)}
.datos_personales_txt{flex: 1; height: 300px;}
.datos_personales_txt h2 {font-size: 2rem;}
.datos_personales_txt h3 { margin-top: .5em; color: var(--main); font-family: var(--Popins); font-size: .9rem;}
.datos_personales_txt p { font-size: .9em; padding: 0 1em 0 0;}
.datos_personales_img{ background-image: url('../img/humberto_11.jpg');}
.datos_personales_txt button { margin-bottom: -10px; padding: .5em 1em; font-size: .9rem; background-color: var(--main);}

.modulo_bio:hover {cursor: pointer;}
.modulo_bio{
    z-index: 9;
    position: fixed;
    display: flex; justify-content: center; align-items: center;
    width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,.95);
}
.bio_box{
    display: flex;
    width: 700px;
    height: 400px;
    border:2px solid var(--blanco); box-sizing: border-box;
    background-color: var(--gris_oscuro);
    border-radius: .8em;
    overflow: hidden;
}
.bio_img img{ width: 100%; height: auto;}
.bio_img{
    width: 40%;
    height: 100%;
    background-image: url('../img/humberto_03.jpg');
    background-size: cover;
    background-position: center center;
}
.bio_txt {
    width: 60%;
    height: auto;
    overflow: hidden;
    overflow-y: scroll;
}
.bio_txt h2{ padding: 1em 0 0 .5em; color: var(--blanco);}
.bio_txt p {
    padding-left: 1em;
    padding-right: 1.56em;
    color: var(--blanco);
    font-size: .9rem;
    white-space: pre-line;
    display: inline-block;
    word-wrap: break-word;
    hyphens: auto;
    text-justify:inter-word;
}

/* proceso */
section.proceso{
    min-height: 150px;
}
.proceso_box{
    width: 100%;
    min-height: 100px;
}
.proceso_box h3{
    padding: 0 0 .5em .5em;
    font-size: 2rem;
    font-family: var(--Popins);
    color: var(--main);
    text-align: center;
}
.proceso_item{
    display: flex; align-items: center;
    margin: .5em;
    padding: .5em 1em;
    border-radius: .5em;
    background-color: rgba(100,100,100,.1);
    min-height: 20px;
}
.proceso_item h4{
    width: 15%;
    font-family: var(--Popins);
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--main);
    margin-right:1em;
    padding-right: .5em;
    border-right: 3px solid var(--main);
}
.proceso_item h5{
    font-family: var(--Popins);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0,0,0,.8);
}
/* blog */

.loader_blog{
    z-index: 0;
    position: absolute;
    transition: all .3s ease;
    animation-name: loader_blog;
    animation-duration: .1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
} 
@keyframes loader_blog {
        0% {opacity: 0;}      
        50% {opacity: 1;}      
        100% {opacity: 0;}      
}
.blog{
 display: flex; flex-wrap: wrap;
}
.blog_box{
    z-index: 1;
    display: flex; flex-wrap: wrap;
    width: 100%; height: auto;
    padding: 0 2em;
}
.blog_txt{
    width: 100%;
    margin-bottom: 2em;
}
.blog_txt h4{ font-size: 1.5rem; color: var(--gris_oscuro);}
.blog_txt h2{ font-size: 3rem; color: var(--main);}
.post_box{
    display: flex; justify-content: center;
    width: 100%;
}
.card{
    flex: 1;
    width: 100%; height: auto;
    display: flex; flex-wrap: wrap;
    margin: 0 1em;
}
.card_portada img { width: 100%; height: 100%;}
.card_portada { display: flex; width: 100%; height: 150px; }
.card h3 { width: 100%; margin: .5em 0 .2em 0;  font-family: var(--Popins); font-size: 1.2rem; line-height: 1.3rem; color:var(--gris_oscuro)}
.card p  { width: 100%; font-size: .9rem; line-break:unset; }
.card a  { width: 100%; color: var(--main);}


.all_btn_blog_box{
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: auto;
    margin-top: 2em;
}
.all_btn_blog_box button{ 
    margin-top: 0;
    background-color: var(--main);
}

/* prensa */
.prensa_txt{display: flex; flex-wrap: wrap;}
.prensa_txt_left {flex:1; min-height: 500px;}

/* .prensa_txt_left ul li:hover {
    cursor: pointer;
    background-color: rgba(100,100,100,.1);
    padding: 0 .5em;
    border-radius: .5em;
} */

.prensa_txt h2 { 
    font-size: 3rem;
    margin-bottom: .4em;
    text-decoration: underline;
    text-underline-offset: 15px;
    text-underline-position: above;
    color: var(--gris_oscuro);
}
.prensa_txt h3 { 
    width: 70%;
    margin-bottom: 3em;
    font-family: var(--Popins);
    font-size: .9em;
    font-weight: 400;
}
.prensa_txt ul { 
    display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: first baseline;
    width: 100%;
    height: auto;

    margin: 0; 
    padding: 0;
    padding-left: .5em;
    overflow: hidden auto;
}
.prensa_txt li {
    position: relative;
    display: flex; flex-wrap: wrap;
    font-weight: 500; 
    width: 180px; height: auto;
    margin: 1em .5em;
    list-style: none;
    line-height: 1rem;
}
.prensa_txt li .prensa_articulo a :hover{
    text-decoration: underline;
}
.prensa_txt li a{
    display: flex;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.prensa_txt ul li::before{
    content: '';
    position: absolute; top: 3px; left: -12px;
    width: 3px;
    height: 100%;
    background-color: var(--main);
}

.prensa_tipo{
    display: flex; align-items: center;
    width: 100%;
    margin-top: .2em;
    color: var(--main);
    font-size: .9em;
}
.prensa_year{font-size: .8rem;}
.prensa_icono img{width: 100%; height: auto;}
.prensa_icono{
    width: 15px;
    height: 15px;
    margin-left: .5em;
    opacity: .7;
}

.categorias{
    display: flex; justify-content: center; align-items: center;
    color: rgba(0,0,0,.5);    
    width: 100%;
    padding: .5em;
    font-size: 1rem;
    font-weight: 600;
    background-color: rgba(100,100,100,.1);
    border-radius: .3em;
}
.categorias span{
    margin: .3em .5em;
    text-transform: capitalize;
    cursor: pointer;
}

.point_articulo,
.prensa_articulo span{ color: var(--main);}
li.prensa_articulo::before{ background-color: var(--main) !important;}

.point_folletos,
.prensa_folleto span{ color: green;}
li.prensa_folleto::before{ background-color: green !important;}

.point_capitulo,
.prensa_capitulo span{ color: rgb(224, 158, 103);}
li.prensa_capitulo::before{ background-color: rgb(224, 158, 103)!important;}

.point_entrevista,
.prensa_entrevista span{ color: black;}
li.prensa_entrevista::before{ background-color: black !important;}

.point_memoria,
.prensa_memoria span{ color: orange;}
li.prensa_memoria::before{ background-color: orange !important;}

.point_informe,
.prensa_informe span{ color: purple;}
li.prensa_informe::before{ background-color: purple !important;}


.modulo_pagination{
    display: flex; justify-content: center; align-items: center;
    min-height: 20px;
    padding: 1em;    
}

/* tienda */
section.tienda{
    flex-wrap: wrap; justify-content: flex-start;
    width: 100vw;
    min-height: 150px;
}
.tienda_portada {
    width: 100%; height: 300px;
    background-image: url('../img/libreria.webp');
    background-size: cover;
    background-position: center center;
    margin-bottom: 2em;
    border-radius: .8em;
    display: none_;
}
.tienda .cabecera{ display: flex; flex-wrap: wrap; justify-content: center;}
.tienda h3 {
    width: 100%;
    margin: 0; padding: 0;
    color: var(--negro);
    font-family: var(--Playfair);
    font-size: 2.5rem;
    text-align: center;
}
.tienda h5 { font-size: 1.2rem; width: 100%; text-align: center;}
.tienda p{ font-size: .9rem; width: 600px; text-align: center;}
.tienda .vitrina{
    display: flex; flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 2em;
}

.tienda_categoria{
    display: flex; justify-content: center; align-items: center;
    width: 100%;
    margin-top: 1em;
    margin-bottom: -1em;
    display: none_;
}
.tienda_categoria span:hover{
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    transform: translateY(-5px);
    cursor: pointer;
}
.tienda_categoria span{
    margin: 0 .5rem; 
    padding: .5em 1em;
    color: #fff;
    background-color: grey; 
    border-radius: .3em;
    text-transform: capitalize;
    transition: all .3s ease;
}

.categoria_venta{ background-color: var(--main) !important ;}
.categoria_venta_editorial{ background-color: orange !important ;}
.categoria_gratis{ background-color: var(--descarga) !important ;}
.categoria_aleatorio{ background-color: purple !important ;}

/*  */
.book{
    display: flex; align-items: flex-end;
    margin:2em 0;
}
.portada { width: 250px; transition: all .3s ease;}
.portada:hover{ cursor: pointer; transform: scale(1.05); opacity: .8;}

.data{
    display: flex; flex-wrap: wrap; align-items: flex-end;
    width: 220px;
    height: min-content;
    padding: 0 0 10px 1em;
}
.data h2:hover{ transform: translateX(5px);}
.data h2{
    display: inline-block;
    max-width: 100%;
    font-family: var(--Popins);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1em;
    color: var(--main);
    cursor: pointer;
    transition: all .3s ease;
}
.data h3{
    text-align: left;
    font-family: var(--Popins);
    font-size: .9rem;
    line-height: 1rem;
    font-weight: 300;
    margin-bottom: .5em;
    color: var(--gris_oscuro);
}
.data p{
    display: inline-block;
    display: none;
    max-width: 100%;
    font-size: .7rem;
    color: var(--gris_oscuro);
    word-wrap: break-word;
    hyphens: auto;
}

img.pag_icon{
    width: 15px; aspect-ratio: 1/1;
    margin-right:.5em ;
    opacity: .5;
}

.editorial{ word-wrap: break-word; hyphens: auto;}

.precio{ font-size: .8rem; font-weight: 700;}

.lanzamiento a:hover {color: var(--main);}
.lanzamiento a { color: var(--gris_oscuro); text-decoration: none; }
img.lanzamiento{ width: 25px; height: auto; opacity: 1;}
.lanzamiento { display: flex; align-items: center;}


.pag, .editorial, .precio{ 
    display:  flex; align-items: center;
    width: 100%;
    margin: .2em;
    font-size: .9rem;
    line-height: 1rem;
    color: var(--gris_oscuro);
}



.data button a, 
.data_detalle button a { color: var(--blanco); text-decoration: none;}

.data button img, 
.data_detalle button img { width: 18px; height: auto; margin-right: .3em; filter: invert(100%);}

.data button, 
.data_detalle button {
    display: flex; justify-content: center; align-items: center;
    min-width: 160px;
    min-height: 25px;
    padding: .5em;
    font-family: var(--Oswald);
    font-size: 1rem;
    font-weight: 500;
    color: var(--blanco);
    background-color: var(--main);
}
  .loader:after {
    content: ""; 
    display: block;
    width: 16px; aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid;
    border-color: #fff transparent #fff transparent;
    animation: loader .5s linear infinite;
  }
  @keyframes loader { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);}}

.descargar{ background-color: var(--descarga) !important;}
.btn_editorial{ background-color: orange !important;}
.desabilitado { background-color: #b2fcc7 !important;}

/* detalle */
.book_detalle_open{
    animation: book_detalle_open 0.5s ease forwards;
}
  
  @keyframes book_detalle_open {
    0% {opacity: 0;}
    100% { opacity: 1;}
  }

.book_detalle{
    display: flex; justify-content: center; align-items: center;
    width: 800px;
    height: auto;
    padding: 2em 0;
    background-color: #fff;
    overflow-y: auto scroll;
    border-radius: .5em;
}
.book_detalle_box{
    display: flex; flex-wrap: wrap;
}
.portada_detalle{
    width: 350px;
}
.data_detalle{
    width: 50%;
    padding: 2em;
}
.data_detalle h2{
    font-family: var(--Popins);
    color: var(--main);
    margin-bottom: .3em;
}
.data_detalle h3{
    padding-right: 1em;
    font-family: var(--Popins);
    color: var(--gris_oscuro);
    font-size: .9rem;
    line-height: 1.2em;
}
.data_detalle p{
    height: auto; max-height: 200px;
    margin-bottom: 2em;
    padding: 0 1em 0 0;
    font-size: .8rem;
    color: var(--gris_oscuro);
    overflow: hidden auto;
}
.data_detalle button{
    padding: .4em .9em;
    font-family: var(--Oswald);
    font-size: 1rem;
    font-weight: 500;
    color: var(--blanco);
    background-color: var(--main);
}
/* Galeria */
.popup_box{
    z-index: 9;
    position: fixed; top: 0; left:0;
    display: flex; justify-content: center; align-items: center;
    width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,.8);
    cursor: pointer;
}
.popup_div img{
    width: auto; height: 100%;
    border-radius: .8em;
}
.popup_div{
    display: flex; justify-content: center; align-items: center;
    height: 80vh;
    border-radius: .8em;
}
section.galeria{
    display: flex; justify-content: space-between; justify-content: center;
    width: 80%;
    height: auto; min-height: 400px;
    display: none;
}
.galeria_txt{
    display: flex;  justify-content: center; align-items: center;
    width: 40%;
    height: auto;
}
.galeria_txt_group{
    width: 100%;
    height: 100%;
}
.galeria_txt_group h2{
    font-size: 2.5rem;
    line-height: 2.2rem;
    margin-bottom: .5em;
}
.galeria_txt_group p{
    font-size: .9rem;
}    
.galeria_img img { background-position: center; transition: all .3s ease;}
.galeria_img img:hover { 
    transition: all .3s ease-in-out;
    transform: scale(1.1); 
    box-shadow: 0 0 10px grey; 
    cursor: pointer;
    opacity: .9;
} 
.galeria_img{
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    width: 70%;
    height: 100%;
}
.galeria_img_group{
    display: flex; justify-content: flex-end;
    width: 100%;
    height: 100%;
}
.galeria_img_left{
        display: flex; align-items: center;
        width: 110px;
        padding-right: .5em;
}
.galeria_img_left img{
    width: 100%;
    height: 120px;
    border-radius: .5em;
    background-image: url("../img/student1.jpg");
    background-size: cover;
}
.galeria_img_center{
            display: flex; flex-direction: column;
            width: 300px;
}
.galeria_img_center > div{
            flex: 1;
            width: 100%;
}
.galeria_img_center_top{ 
    display: flex; align-items: flex-end;
    padding-bottom: .5em;
}
img.galeria_img_center_top_left{
        width: 60%;
        height: 100%;
        background-image: url("../img/student3.jpg");
        background-size: cover;
        background-position: center center;
        border-radius: .5em;
        box-sizing: border-box;
}
img.galeria_img_center_top_right{
width: 40%;
height: 80%;
margin-left: .5em;
background-image: url("../img/student6.jpg");
background-size: cover;
background-position: center center;
border-radius: .5em;
}
.galeria_img_center_top{ 
        display: flex; align-items: flex-end;
        padding-bottom: .5em;
}
img.galeria_img_center_top_left{
            width: 60%;
            height: 100%;
            background-image: url("../img/student3.jpg");
            background-size: cover;
            background-position: center center;
            border-radius: .5em;
            box-sizing: border-box;
}
img.galeria_img_center_top_right{
            width: 40%;
            height: 80%;
            margin-left: .5em;
            background-image: url("../img/student6.jpg");
            background-size: cover;
            background-position: center center;
            border-radius: .5em;
}
.galeria_img_center_bottom { display: flex;}
img.galeria_img_center_bottom_left{
            width: 40%;
            height: 80%;
            background-image: url("../img/student5.jpg");
            background-size: cover;
            background-position: center center;
            border-radius: .5em;
}
img.galeria_img_center_bottom_right{
width: 60%;
height: 100%;
margin-left: .5em;
background-image: url("../img/student4.jpg");
background-size: cover;
background-position: center center;
border-radius: .5em;
}                
.galeria_img_right{
    display: flex; align-items: center;
    width: 130px;
    padding-left: .5em;
}
.galeria_img_right img{
            width: 100%; height: 180px;
            background-image: url("../img/student2.jpg");
            background-size: cover;
            border-radius: .5em;
}
.galeria_img_left img                 { background-image: url('../img/humberto_01.jpg');}
img.galeria_img_center_top_left       { background-image: url('../img/humberto_02.jpg');}
img.galeria_img_center_top_right      { background-image: url('../img/humberto_03.jpg');}
img.galeria_img_center_bottom_left    { background-image: url('../img/humberto_04.jpg');}
img.galeria_img_center_bottom_right   { background-image: url('../img/humberto_05.jpg');}
.galeria_img_right img                { background-image: url('../img/humberto_07.jpg');}


/* button Whatsapp */
.whatsapp_button img{width: 100%; aspect-ratio: 1 / 1;}
.whatsapp_button{
    display: flex; justify-content: center; align-items: center;
    position: fixed; bottom: 0; right: 0;
    margin-bottom: 25px; right: 10px;
    width: 50px; height: 50px;
    cursor: pointer;
    transition: all .3s ease;
}
.whatsapp_button:hover{
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0,0,0,.8));
}
.whatsapp_button:hover::before{
    content: '¿Necesitas ayuda?';
    display: flex; justify-content: center; align-items: center;
    position: absolute; top: 8px; right: 70px;
    width: auto; min-width: max-content;
    color: var(--blanco);
    background-color: var(--main);
    padding: .5em 1em;
    font-size: .9rem;
    border-radius: .5em;
}

footer {
    display: flex; justify-content: center; align-items: center;
    width: 100%; max-width: var(--max-ancho);
    height: 150px; max-height: 150px;
    border-top: 2px dotted var(--main) ;
}
footer > div {
    flex: 1;
    display: flex; align-items: center;
    justify-content: center;
    font-size: .9rem;
}

footer div:nth-child(1){ justify-content: flex-start;}
footer div:nth-child(2){ justify-content: flex-start;}
footer div:nth-child(3){ justify-content: flex-end;}

footer img{ width: 225px; height: auto;}

        /* .galeria_txt, */
        .comodin{
            display: none;
        
        }


        /* Cambia el color de la barra de desplazamiento */
::-webkit-scrollbar {
    width: 5px; /* grosor de la barra */
  }
  
  /* Cambia el color de la pista de la barra de desplazamiento */
  ::-webkit-scrollbar-track {
    background-color: #e1e1e1; /* color de fondo de la pista */
  }
  
  /* Cambia el color del thumb de la barra de desplazamiento */
  ::-webkit-scrollbar-thumb {
    background-color: var(--main); /* color del thumb */
    border-radius: 5px; /* borde redondeado del thumb */
  }

/* section.presentacion,
section.entidades,
section#datos,
.comodin{
    display: none;

} */

#prensa h2,
#prensa h3 {
    display: none;
}