/* Estilos para el Hub de Informes - Línea Estética */

.hub-informes-wrapper {
    padding: 20px;
    background-color: #f4f7fa;
    min-height: 100vh;
}

.hub-section-le {
    margin-bottom: 40px;
}

.hub-header-le {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eef2f7;
    margin-bottom: 25px;
}

.hub-header-le i {
    font-size: 18px;
    color: #9265cc;
}

.hub-header-le h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #9265cc;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.hub-grid-le {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

/* TARJETA DE INFORME */
.hub-card-le {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    text-decoration: none !important;
    color: inherit !important;
}

.hub-card-le:hover {
    border: 1px dashed #9265cc;
    box-shadow: 0 12px 30px rgba(146, 101, 204, 0.12);
    transform: translateY(-5px);
}

.hub-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hub-icon-box {
    width: 44px;
    height: 44px;
    background: #f8f6ff;
    color: #9265cc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hub-tag-looker {
    font-size: 10px;
    font-weight: 700;
    background: #f1f5f9;
    color: #4285f4;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hub-titulo-principal {
    color: var(--color-gray-light) !important;
}

.hub-card-le h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-gray-light);
}

.hub-card-le p {
    margin: 0 0 20px;
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
    flex-grow: 1;
}

/* PREVIEW DE DATOS (KPIs) */
.hub-preview-data {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hub-preview-box {
    background: white;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #edf2f7;
    text-align: center;
}

.hub-preview-box span {
    display: block;
    font-size: 9px;
    color: #718096;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hub-preview-box b {
    font-size: 12px;
    color: #9265cc;
}

/* BOTÓN DE ACCIÓN */
.hub-btn-le {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #9265cc;
    color: #ffffff;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.hub-card-le:hover .hub-btn-le {
    background: #7a4eb3;
}
