.home-cubos {   
    aspect-ratio: 1/1;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.home-cubos .cubito {
    aspect-ratio: 1/1;
    background-size: 90%;
    background-repeat: no-repeat;
}

.home-cubos .personaje {    
    width: 100%;
    height: 100%;   
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: all 0.2s ease;
}


.home-cubos .cubito-1 {
    background-position: right bottom;
}

.home-cubos .cubito-2 {
    background-position: left bottom;
}

.home-cubos .cubito-3 {
    background-position: right top;
}

.home-cubos .cubito-4 {
    background-position: left top;
}

.home-cubos .cubito-1 .personaje {
    background-size: 90%;
}

.home-cubos .cubito-1 .personaje:hover {
    background-size: 90%;
    transform: scale(1.1);
    transform-origin: left bottom;
}

.home-cubos .cubito-2 .personaje {
    background-size: 90%;
}

.home-cubos .cubito-2 .personaje:hover {
    background-size: 90%;
    transform: scale(1.1);
    transform-origin: left bottom;
}

.home-cubos .cubito-3 .personaje {
    max-height: 90%;
    width: 140%;
    margin-left: -30%;
    background-size: 90%;
}

.home-cubos .cubito-3 .personaje:hover {
    background-size: 90%;
    transform: scale(1.1);
    transform-origin: right bottom;
}


.home-cubos .cubito-4 .personaje {
    max-height: 90%;
    background-size: 90%;
}

.home-cubos .cubito-4 .personaje:hover {
    background-size: 90%;
    transform: scale(1.1);
    transform-origin: left bottom;
}
