/* =====================================================
   DOWNLOADS
===================================================== */

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.download-card {
    display: flex;
    flex-direction: column;

    min-height: 250px;
    padding: 24px;

    background: #fff;

    border: 1px solid var(--borda);
    border-radius: 16px;

    box-shadow: 0 8px 24px rgba(0, 59, 115, .06);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.download-card:hover {
    transform: translateY(-3px);

    border-color: #c4d9ed;

    box-shadow: 0 12px 30px rgba(0, 59, 115, .10);
}


/* ÍCONE */

.download-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: var(--azul-claro);
    border-radius: 11px;

    font-size: 21px;
}


/* CONTEÚDO */

.download-card-content {
    flex: 1;
}

.download-card-content small {
    display: block;

    margin-bottom: 6px;

    color: var(--verde);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .04em;
}

.download-card h2 {
    margin: 0 0 8px;

    color: var(--azul-escuro);

    font-size: 18px;
    line-height: 1.25;
}

.download-card p {
    margin: 0;

    color: var(--cinza);

    font-size: 13px;
    line-height: 1.55;
}


/* LINK */

.download-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
    padding-top: 15px;

    color: var(--azul);

    border-top: 1px solid var(--borda);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.download-link span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--azul-claro);

    border-radius: 50%;

    transition:
        background .2s ease,
        color .2s ease;
}

.download-link:hover span {
    background: var(--azul);
    color: #fff;
}


/* RESPONSIVO */

@media (max-width: 900px) {

    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        min-height: auto;
    }

}