body {
    min-height: 100vh;
    background-color: #fff;
    position: relative;
}


#barra-navegacion{
    position: sticky;
    top: 0;
    z-index: 99;
    background-image: linear-gradient( 110.9deg,  rgba(44,221,239,1) 1.1%, rgba(14,191,210,1) 37.6%, rgba(8,127,140,1) 99.2% );
}

#barra-navegacion img {
    height: 4rem;
    width: auto;
    filter: drop-shadow(.2px -.2px 0px #fff) drop-shadow(-.2px .2px 0px #fff)  drop-shadow(0px 0px 1px #fff);
}

#barra-navegacion .nav-item {
    padding: 0 .25rem;
}

#barra-navegacion .nav-item>.nav-link {
    color: #fff;
    border-radius: 6px;
    &:hover {
        color: #ffffff;
        background-color: #15157810;
    }
}

#barra-navegacion .dropdown-menu>li>.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    &:hover{
        background: #f1f1f1;
    }
    &:active{
        color: #000;
        background: #9dfaffaa;
    }
}

#barra-social {
    padding: 8px 0;
}

.descripcion-publi{
    border: 1px solid #e4e4e4;
    padding: 15px 10px 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    color: #666;
    &::before{
        content: "";
        background-color: #6ba3f1;
        height: 100%;
        width: 8px;
        left: 0;
        top: 0;
        position: absolute;
    }
}



.gallery>a {
    border-radius: 1rem;
    display: inline-block;
    overflow: hidden;
    margin: 5px;
    transition: all 120ms linear;
    cursor: pointer;
    position: relative;
}

.contenido-html{
    img{
        max-width: 100%;
        border-radius: 4px;
        overflow: hidden;
        display: inline-block;
        box-shadow: 0px 0px 0px 3px #fff,
                    0px 0px 0px 4px #ccc !important;
    }
}

.gallery>a::after {
    position: absolute;
    content: "";
    background-color: #000c;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 120ms linear;
}

.gallery>a:hover::after {
    opacity: 1;
    content: "Ver imagen";
}

.gallery>a>img {
    transition: all 120ms linear;
    max-height: 12rem;
}

.gallery>a:hover>img {
    scale: 1.15;
}


.seccion {
    padding: .5rem 0;
}

.bienvenida-titulo>h1 {
    text-align: center;
    font-weight: bolder;
    color: var(--base-1);
}

.bienvenida-mensaje {
    margin-top: 2rem;
}

.seccion-titulo>h2 {
    text-align: center;
    font-weight: bolder;
    color: var(--base-3);
}

.seccion-mensaje {
    margin-top: 2rem;
}

#sitio-descripcion {
    position: relative;
    padding: 1rem;
    background-color: #f6f6f6;
    overflow: hidden;
    border-radius: 4px;
}

#sitio-descripcion::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--base-2);
}

#sitio-portada {
    height: 20rem;
    width: 100%;
    box-shadow: 0px 0px 12px 0px #0002;
    border: 1px solid #f1f1f1;
    object-fit: cover;
}

.articulo-seleccionable {
    display: inline-block;
    width: 30%;
    box-shadow: 0px 0px 12px 0px #0002;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-decoration: none;
    color: #333;
    position: relative;
    transition: all 200 linear;
}

.articulo-seleccionable>img {
    width: 100%;
    height: 10rem;
}

.articulo-seleccionable>img.img-default {
    object-fit: contain;
    padding: 20px;
    background-image: linear-gradient( 174.2deg,  rgba(255,244,228,1) 7.1%, rgba(240,246,238,1) 67.4% );
}

.articulo-seleccionable>img:not(.img-default) {
    object-fit: cover;
}

.articulo-seleccionable>h6 {
    padding: .5rem;
    margin: 0;
}

.articulo-seleccionable>.descripcion {
    padding: 0 .5rem .5rem .5rem;
    color: #a1a1a1;
    text-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 12px;
}

.articulo-seleccionable::after {
    content: "Ver publicación";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 27, 59, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    top: 100%;
    transition: all 120ms linear;
}

.articulo-seleccionable:hover::after {
    top: 0%;
}

.ver-imagen {
    display: inline-block;
    position: relative;
    overflow: hidden;
    /* border: 1px solid #dee2e6; */
    padding: 0.25rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.ver-imagen::after {
    content: "Clic para ver imagen";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 27, 59, 0.733);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    opacity: 0;
    transition: all 120ms linear;
}

.ver-imagen:hover::after {
    opacity: 1;
}


#pie {
    position: absolute;
    width: 100%;
    bottom: -10rem;
    padding: 2rem 1rem;
    background: var(--base-5);
}

#pie::after {
    content: "";
    position: absolute;
    top: -.5rem;
    left: 0;
    width: 100%;
    height: .5rem;
    background-color: var(--base-8);
}


#pie div {
    color: #fff;
}



.fecha-articulo {
    font-size: 12px;
}


.portada-articulo {
    height: 16rem;
    width: 100%;
    border-radius: 8px;
    background-color: #fafafa;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
}

.portada-articulo>img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.portada-articulo::after {
    content: "Clic para ver portada";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 27, 59, 0.733);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    opacity: 0;
    transition: all 120ms linear;
}

.portada-articulo:hover::after {
    opacity: 1;
}


.seccion-registro,
.titular-registro {
    position: relative;
    overflow: hidden;
}

.seccion-registro::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 6px;
    background-color: #4ae74a;
}

.titular-registro::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 6px;
    background-color: #0f47ffe0;
}

.btn-convocatoria:active {
    background: #06bd24 !important;
    color: #fff !important;
}

.btn-convocatoria {
    position: relative;
    background: #fff;
    padding: 10px 30px;
    border: 1px solid #acacac;
    ;
    overflow: hidden;
    font-weight: 600;
    box-shadow: 0px 0px 2px 0px #33a16e;
}

.btn-convocatoria::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    background: #06bd24;
    transition: 120ms all linear;
    z-index: -1;
}

.btn-convocatoria:not(.seleccionada):hover {
    color: #fff;
}

.btn-convocatoria:not(.seleccionada):hover::after {
    width: 100%;
    color: #fff;
}

.btn-convocatoria.seleccionada {
    background: #06bd24;
    color: #fff;
}



@media screen and (max-width: 1300px) {
    #barra-navegacion .nav-item>.nav-link {
        font-size: 14px;
    }
}


@media screen and (max-width: 500px) {
    #sitio-portada {
        height: 10rem;
    }
}