.InformacionPagina {
    padding: 60px 30px 60px 100px;
    position: relative;
    margin-left: 100px;
}

.InformacionPagina svg#Capa_1 {
    position: absolute;
    top: 50%;
    left: -100px;
    max-width: 200px;
    opacity: 1;
    transform: translateY(-50%);
    z-index: 23;
}

.InformacionPagina h4 {
    position: relative;
    z-index: 30;
    color: #ffff00;
    font-size: 30px;
    font-family: 'Moisette';
    margin-top: 0px !important;
}

.InformacionPagina .color {
    position: absolute;
    background: #00000078;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 12;
}

.InformacionPagina .imagenFondo{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover; /* Ajusta el tamaño para cubrir toda el área */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que se repita la imagen */
    filter: grayscale(100%);
    z-index: 9;
    transition: all 0.3s linear;
}

.InformacionPagina:hover .imagenFondo{
    transition: all 0.3s linear;
    filter: grayscale(0%);
}

.InformacionPagina .texto {
    color: #ffff00;
    position: relative;
    z-index: 33;
    font-family: 'Montserrat';
    font-size: 18px !important;
}

.InformacionPagina a {
    position: relative;
    z-index: 34;
    background: #ec67f6;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s linear;
    font-weight: 400;
    font-family: 'Moisette';
}

.InformacionPagina a:hover {
    background: #ffff00;
    color: #591a76;
    transition: all 0.3s linear;
}