@charset "utf-8";
/*  CSS GENERAL: colores y fuentes  */
:root {
--dorado:#ffcc66;
--frambuesa:#D4145A;
--verde:#165B31;
--theme-color:#000233;
--theme-color-claro:#D6DBFF;
--theme-color-gris:rgba(148,148,148,1.00);
--theme-color-neutro:#000233;
--theme-color-neutro-trans:rgba(0,2,51,0.77);
--theme-color-inverse:rgba(13,13,13,1);
--text-color:#EDEFFF;
--text-color-inverse:#EDEFFF;
--text-color-oscuro:#000233;
--primary-color:#333399;
--primary-color-claro:#9db5e6;
--primary-color-oscuro:#165B31;
--transi: .3s;
}
/* RESET */
body {
    overflow-x: hidden;
    overflow-y: auto;
	background: var(--theme-color);
}
/* Barra scroll */
body::-webkit-scrollbar {
    width: 1.2em;
}
body::-webkit-scrollbar-track {
    background: var(--theme-color);
}
body::-webkit-scrollbar-thumb{
    background: var(--dorado);
}
/* colores logo */
.a {
    fill: var(--dorado);
}
.b {
    fill: var(--text-color-inverse);
}
/* FUENTES */
@font-face {
    font-family: "GillSBC";
    src: url("../Fuentes/gill-sans-bold-condensed-1.otf");
}
@font-face {
    font-family: "serif";
    src: url("../Fuentes/LibreBaskerville-Regular.ttf");
}
h1 {
  text-transform:uppercase;
    font-family: "Gill sans MT";
    font-size: clamp(.6rem, 1rem + 3vw, 10rem);
/*    font-weight: 500;*/
    line-height: 1.1em;
    text-align: center;
    margin-top: 60px; 
    text-wrap: balance;
    color: var(--dorado);
}
h1::first-letter,h2::first-letter,h3::first-letter,h4::first-letter {
    content: "";
    font-size: 150%;
}
h1,h2,h3 {
    font-weight: 500;
}
h1 span {
    color: var(--primary-color-oscuro);
}
.noticiasIndice h1 {
    padding-top: 1.2em;
    font-family: "Gill sans MT";
    font-size: clamp(.7rem, 1rem + 3vw, 7em);
    line-height: 1.3em;
    font-weight: normal;
    color: var(--dorado);
}
h2 {
    font-family: "serif";
    text-transform: uppercase;
    font-size: clamp(1rem, 1rem + 2vw, 3rem);
    color: var(--text-color-inverse);
/*    line-height: 150%;*/
    font-weight: 400;
    text-align: center;
    padding-top: .9em;
    padding-bottom: .1em;
}
h2 span {
    color: var(--primary-color-oscuro);
    padding: 0 .2em 0 .2em;
}
.listas h2 {
    text-align: left;
}
.noticias h2 { 
}
.resumNot h2 {
    color: var(--text-color);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}
h3 {
    font-family: "Gill sans MT";
    font-size: clamp(1rem, 2vw + 1rem, 2.2rem);
    line-height: clamp(1.3rem, 1.5rem + 3vw, 3rem);
    color: var(--dorado);
    text-align: center;
    padding-top: .1em;
    padding-bottom: .5em;
}
h4 {
    font-weight: bold;
    font-size: 1.2rem;
    font-family: "Gill sans MT";
    letter-spacing: 1px;
    text-align: center;
}
h1, h2, h3, h4 {
    text-wrap: balance;
}
p {
    font-family: "serif";
    font-size: clamp(0.5rem, 1.2rem, 1.7rem); 
    margin: .5em;
    text-indent: 3rem;
    color:inherit;
    text-align:left;
}
.Menus, .campoInput {
    font-size: .7rem;
    letter-spacing: 1px;
    color: var(--text-color-inverse);
    font-family: "serif";
    text-align: center;
}
.flechasPaginas {
    font-family: "serif";
        font-size: clamp(.25rem, .5vw, .5rem); 
/*    font-size: clamp(.3rem, .4rem, .7rem);*/
    text-transform: uppercase;
 }
figcaption {
    font-family: "serif";
    font-size: 1rem;
    text-align: center;
    z-index: 2;
}
ul {
    list-style: none;
    padding: 0;
}
.color-acento {
color: var(--secundary-color);
}
