
/* link */
.platform-card {
    display: block;
    height: 100%;
    text-decoration: none;
}

/* card */
.platform-card__inner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;

    transition: all 0.3s ease;
}

/* hover */
.platform-card__inner:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-neon-blue);
}

/* container da logo */
.platform-card__logo {
    /* border: 2px solid red; */
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}

/* imagem */
.platform-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* remove limites antigos */
    max-width: none;
    max-height: none;

    transition: transform 0.3s ease;
    border-radius: 20px;

}

/* hover imagem */
.platform-card__inner:hover img {
    transform: scale(1.1);
}

/* nome */
.platform-card__name {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* responsivo */
@media (max-width: 768px) {
    .platform-card__logo {
        width: 90px;
        height: 90px;
    }

    .platform-card__name {
        font-size: 0.75rem;
    }
}