.buscado__card {
    position: relative;
    cursor: pointer;

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

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

    .buscado__card-title {
        font-weight: bold;
        margin-bottom: 0 !important;
    }
}

.buscado__card:hover .buscado__img {
    transform: scale(1.2); 
}

.buscado__card:hover .buscado__logo {
    transform: scale(1.1); 
}