.destaque__item {
    width: 100%;
    position: relative;
}

.produto__imagem {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.8;
}

    .produto__imagem img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .produto__imagem::after {
        content: "";
        width: 50px;
        height: 50px;
        position: absolute;
        top: -34px;
        left: -25px;
        transform: rotate(45deg);
        background: rgb(var(--color-white-rgb));
    }
