/*==================================================
    DASHBOARD IDAPC
==================================================*/

.idapc-dashboard {

    background: #15294b;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);

}

.idapc-dashboard-title {

    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;

}

/*==================================================
    GRID
==================================================*/

.idapc-dashboard-grid {

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;

}

/*==================================================
    CARDS
==================================================*/

.idapc-card {

    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 5px 18px rgba(0,0,0,.18);
    border: 2px solid transparent;

}

.idapc-card:hover {

    transform: translateY(-6px);
    border-color: #d4af37;

    box-shadow:
        0 0 20px rgba(212,175,55,.35),
        0 8px 20px rgba(0,0,0,.25);

}

.idapc-card span {

    display: block;
    font-size: 30px;
    margin-bottom: 15px;

}

.idapc-card strong {

    display: block;
    font-size: 18px;
    color: #15294b;
    margin-bottom: 8px;

}

.idapc-card small {

    display: block;
    color: #666;
    line-height: 1.5;
    font-size: 14px;

}

/*==================================================
    SIDEBAR IDAPC
==================================================*/

.idapc-sidebar-info {

    text-align: center;
    padding: 25px 15px;
    border-bottom: 1px solid #ececec;

}

.idapc-sidebar-info img {

    width: 80px;
    margin-bottom: 12px;

}

.idapc-sidebar-info h2 {

    color: #15294b;
    font-size: 26px;
    margin: 0;

}

.idapc-sidebar-info h3 {

    color: #D4AF37;
    font-size: 16px;
    margin: 8px 0;

}

.idapc-sidebar-info p {

    color: #666;
    font-size: 13px;
    line-height: 1.5;

}

/*==================================================
    RESPONSIVO
==================================================*/

@media (max-width:1200px) {

    .idapc-dashboard-grid {

        grid-template-columns: repeat(2,1fr);

    }

}

@media (max-width:768px) {

    .idapc-dashboard {

        padding: 20px;

    }

    .idapc-dashboard-title {

        font-size: 28px;

    }

    .idapc-dashboard-grid {

        grid-template-columns: 1fr;

    }

}