.tp-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 15px;
}

.portfolio-card {
    background: #15171c;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgb(34 42 58);
}

.card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.image-viewport img {
    width: 100%;
    display: block;
    transition: transform 10.5s cubic-bezier(.5, .8, .1, 1);
    object-fit: cover;
    object-position: center;
}

.portfolio-card:hover img {
    transform: translateY(calc(-100% + 240px));
}

.image-viewport:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(
        to bottom,
        rgba(10, 13, 20, 0),
        #15171c
    );
}

.card-badge {
    background: #7c3bed26;
    color: #4ddcff;
    border: 1px solid;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: #fff;
    margin: 15px 5px;
}
.card-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 15px;
}

.card-metrics div {
    display: grid;
    text-align: center;
}

.card-metrics span {
    font-size: 15px;
    font-weight: 300;
}

/* CORES DAS MÉTRICAS */
strong.leads {
    color: #7c3bed;
}

strong.access {
    color: #159645;
}

strong.conversion {
    color: #60d9fb;
}

.card-button {
    font-family: 'Inter';
    font-weight: 500;
    display: block;
    margin-top: 16px;
    padding: 12px;
    background: #00ffb40f;
    color: #00ffb4;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #00ffb4;
}
.card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}