.ficha__card {
    position: relative;
    cursor: pointer;

    .ficha__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .ficha__body {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: linear-gradient(to right, #2e3e4fAA 30%, #A38949AA 100%);
        color: white;
    }

    .ficha__logo {
        width: 120px;
        top: -90px;
        right: 1rem;
        position: absolute;
        transition: transform 0.4s ease;
    }

    .ficha__card-title {
        font-weight: bold;
    }
}

.ficha__card:hover .ficha__img {
    transform: scale(1.2); 
}

.ficha__card:hover .ficha__logo {
    transform: scale(1.1); 
}