.Illustrations .tp-card {
    /*max-width: 26rem;*/
    height: 26rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--rounded-2xl);
}

.Illustrations .Illustrations__contentCard {
    width: 18rem;
    display: grid;
    grid-template-rows: 1fr;
    align-items: center;
}

.Illustrations .tp-card img {
    border-radius: var(--rounded-2xl);
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.7s ease, filter 0.7s ease;
}

/* Blur e scale na imagem */
.Illustrations.toggle-enabled .tp-card img,
.Illustrations:not(.toggle-enabled) .tp-card:hover img {
    transform: scale(1.15);
    filter: blur(0.1rem);
}

.Illustrations .tp-card-linear {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(245, 246, 252, 0) 50%, #212529 100%), url();
}

.Illustrations.toggle-enabled .tp-card .tp-card__title {
    font-size: 1.1rem;
    font-family: var(--font-noto-medium);
    opacity: 0;
    transition: transform 0.35s ease;
}

.Illustrations.toggle-enabled .tp-card__title,
.Illustrations:not(.toggle-enabled) .tp-card:hover .tp-card__title {
    transform: translateY(0);
    animation: slideIn 0.55s ease forwards;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;

}

.Illustrations .Illustrations__description {
    font-size: 1.1rem;
    font-family: var(--font-noto-medium);
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.Illustrations .illustrations__arrow {
    display: none;
    position: relative;
    z-index: 2;
}

.Illustrations.toggle-enabled .tp-card .Illustrations__description,
.Illustrations.toggle-enabled .tp-card .illustrations__arrow,
.Illustrations:not(.toggle-enabled) .tp-card:hover .Illustrations__description,
.Illustrations:not(.toggle-enabled) .tp-card:hover .illustrations__arrow {
    transform: translateY(0);
    display: block;
    opacity: 1;
    margin-bottom: 1rem;
    animation: slideIn 0.55s ease forwards;
}


.Illustrations .tp-card:hover .Illustrations__description::after,
.Illustrations .illustrations__arrow::after
.Illustrations .tp-card:hover .tp-card__titleWithoutDescription::after {
    opacity: 1;
}

.Illustrations .tp-card:hover .tp-card__titleWithoutDescription::after {
    margin-bottom: 0.5rem;
    animation: slideIn 0.55s ease forwards;
}

.Illustrations .tp-card:hover .tp-card__title {
    position: relative;
}


.Illustrations .tp-card-content__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--rounded-2xl);
    pointer-events: none;
    z-index: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
