* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

header {
    background: transparent;
    color: white;
}

header img {
    margin: 0px 0px 0px 0px;
}

.links {
    display: flex;
    gap: 10px;
}

.links img {
    width: 30px;
    height: 30px;
    border: 1px solid white;
}

/* Navigation */
.main-nav {
    color: #FFF;

    background-color: #2d5b8f;
    display: flex;
    justify-content: center;
    padding: 5px 10px;
}

.nav-item {
    color: white;
    padding: 12px 25px;
    background-color: #103689;
    margin: 0 10px;
    display: inline-block;
    transition: background-color 0.3s;
    text-decoration: none;
    border-radius: 7px;
    height: 100%;
    align-items: center;
}

.nav-item:hover {
    background-color: #5a8bb7;
    text-decoration: none;
}

/* Pag principal */
.container {
    max-width: 1200px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 200px 1fr 220px;
    gap: 15px;
    padding: 0 20px;
}

.box {
    background-color: white;
    border: 1px solid #ccc;
    margin: 5px 5px 5px 5px;
}
/*-- ------------------------------------------------------------------------- -->
/* Elementos principales */
.sidebar-left-content {
    grid-column: 1;
    background-color: rgb(235, 235, 235);
    border: 1px solid #ccc;
}
.center-content {
    grid-column: 2;
    background-color: rgb(235, 235, 235);
    border: 1px solid #ccc;
}
.sidebar-right-content {
    grid-column: 3;
    background-color: rgb(235, 235, 235);
    border: 1px solid #ccc;
}

.page-title {
    color: black;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}


.center-content h3 {
    color: #333;
    font-size: 16px;
}

.noticia {
    display: flex;
    flex-direction: row;
}

.noticia h4 {
    color: #222;
    font-size: 20px;
}

.frame {
    color: black;
    padding-left: 5px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
#box{
    width: 190px; 
    height: 70px;
    display: block;
    align-items: center;
    justify-content: center;
}
.menu{
    color: #FFF;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    background-color: #2d5b8f;
    display: flex;
    justify-content: center;
    padding: 5px 10px;
}
.menu__container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  

}
.menu__links{
    height: 100%;
    transition: transform .5s;
    display: flex;
    
}
.menu__item{
    list-style: none;
    position: relative;
    height: 100%;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}
.menu__item:hover{
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}
.menu__link{
    color: #FFF;
    text-decoration: none;
    padding: 0 30px;
    display: flex;
    height: 100%;
    align-items: center;
    gap: 5px;
    transition: background-color 0.6s ease;
}
.menu__link:hover{
    background-color: #5e7094;
}
.menu__arrow {
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}
.menu__item--active .menu__arrow {
  transform: rotate(0deg);
}

/* SOLO EN ESCRITORIO: rota con hover */
@media (min-width: 801px) {
  .menu__item:hover {
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0deg);
  }

  .menu__item:hover .menu__arrow {
    transform: rotate(0deg);
  }
}
.menu__nesting{
    list-style: none;
    transition: clip-path .3s;
    clip-path: var(--clip);
    position: absolute;
    right: 0%;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    background-color: #000;
}
.menu__link--inside{
  padding: 30px 100px 30px 20px;
}
.menu__link--inside{
    background-color: #103689;
}


a{
    display:block;
    padding:1em;
    background-color: #103689;
    text-align:left;
    margin-right:0.2em;
    text-decoration:none;
    color:#000000;
}
    
a:hover{background-color:   #5e7094;
}


.menu__hamburguer{
  height: 100%;
  align-items: center;
  padding: 0 0.09px;
  cursor: url('img/mano.cur') 0 0, auto;
  display: none;
}