.CertificadosBoard .Main {
    height: 80vh;
}

.CertificadosBoard .ListaBox {
    position: absolute;
}
.CertificadosBoard .BotonesBox {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.CertificadosBoard .BotonesBox button {
    border: 0;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    margin: 1em;
    padding: 0.5em;
    color: #fff;
    background-color: var(--color-principal-b);
    box-shadow: 1px 1px 3px #000;
    aspect-ratio: 1/1;
    opacity: 0.5;
    cursor: pointer;
}
.CertificadosBoard .BotonesBox button:hover {
    color: #fff;
    background-color: var(--color-principal);
    opacity: 1;
}
.CertificadosBoard .BotonesBox button:active {
    color: #fff;
    background-color: #000;
    opacity: 1;
}
/* ------------Puntos------------- */
.CertificadosBoard .PuntosBox {
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.CertificadosBoard .PuntosBox button {
    margin: 0.5em;
    width: 1em;
    height: 1em;
    background-color: var(--color-principal);
    box-shadow: 0px 0px 3px #000;
    border: 0;
    transition: 1s;
    cursor: pointer;
}
.CertificadosBoard .PuntosBox button:hover {
    background-color: var(--color-principal-b);
}
.CertificadosBoard .PuntosBox button:active {
    background-color: #000;
}
/* ------------PuntosActivo */
.CertificadosBoard .PuntosBox button.Activo {
    background-color: #000;
    width: 2em;
    height: 1.5em;
    cursor: default;
}

/* -------------------------------------- */

.CertificadosBoard .CertificadoItem {
    position: relative;
}

.CertificadosBoard .CertificadoItem .ItemImagenBox {
    width: 100%;
    height: 100%;
}
.CertificadosBoard .CertificadoItem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.CertificadosBoard .ItemContenidoBox {
    position: absolute;
    bottom: 2em;
    margin: 1em;
    padding: 0.5em;
    right: 0;
    background-color: #0005;
    color: #fff;
    backdrop-filter: blur(5px);
    text-align: right;
    border-radius: 0.5em;

}
.CertificadosBoard .ItemContenidoBox h3 {
    text-align: center;
    color: #fff;
    margin: 0px;
}
