/* =========================================================
   COMPONENTE: TAGS PÁGINA PRINCIPAL
   ========================================================= */

.progepe-tag-cloud {

    display: grid;

    /* 4 colunas no desktop */
    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;

    margin: 3rem 0;
    padding: 0;
}


/* =========================================================
   CARD DA TAG
   ========================================================= */

.progepe-tag-cloud .tag-box {

    position: relative;

    display: flex;
    flex-direction: column;

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

    min-height: 170px;

    padding: 1.5rem 1rem;

    background: #fff;

    border: 1px solid #d7e4ed;
    border-radius: 14px;

    text-align: center;

    overflow: hidden;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 10px 24px rgba(0, 84, 142, 0.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


/* =========================================================
   BARRA SUPERIOR
   ========================================================= */

.progepe-tag-cloud .tag-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #00548E,
        #007cd3
    );
}


/* =========================================================
   SETA
   ========================================================= */

.progepe-tag-cloud .tag-box::after {

    content: "→";

    position: absolute;

    right: 1rem;
    bottom: 1rem;

    width: 32px;
    height: 32px;

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

    border-radius: 50%;

    background: #edf6fb;

    color: #00548E;

    font-size: 1rem;
    font-weight: 700;

    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}


/* =========================================================
   ÍCONE
   ========================================================= */

.progepe-tag-cloud .tag-box img {

    width: 56px;
    height: 56px;

    object-fit: contain;

    margin-bottom: 1rem;

    transition: transform .2s ease;
}


/* =========================================================
   TEXTO
   ========================================================= */

.progepe-tag-cloud .progepe-tag-item {

    color: #003f6b;

    font-size: 1rem;
    font-weight: 700;

    line-height: 1.35;

    text-decoration: none;
}


/* =========================================================
   SUBTEXTO OPCIONAL
   ========================================================= */

.progepe-tag-cloud .tag-box span {

    margin-top: .5rem;

    color: #64727a;

    font-size: .9rem;
}


/* =========================================================
   HOVER
   ========================================================= */

.progepe-tag-cloud .tag-box:hover {

    transform: translateY(-6px);

    border-color: rgba(0, 84, 142, .25);

    box-shadow:
        0 12px 30px rgba(0, 84, 142, 0.12);
}

.progepe-tag-cloud .tag-box:hover img {

    transform: scale(1.08);
}

.progepe-tag-cloud .tag-box:hover::after {

    background: #00548E;

    color: #fff;

    transform: translateX(4px);
}

.progepe-tag-cloud .tag-box:hover .progepe-tag-item {

    color: #00548E;
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 900px) {

    .progepe-tag-cloud {

        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   CELULARES
   ========================================================= */

@media (max-width: 650px) {

    .progepe-tag-cloud {

        grid-template-columns: 1fr;
    }

    .progepe-tag-cloud .tag-box {

        min-height: 160px;
    }
}