/* =========================================
   TABELA DE INFORMAÇÕES DO PRODUTO
   Tabela com informações de STATUS/IMPORTANTE
   Classes: info-table, header-row, status-cell, info-cell
   ========================================= */

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-row {
    background: linear-gradient(135deg,#800080,#9932cc);
    color: white;
}

.header-row th {
    padding: 5px 6px;
    text-align: center;
    font-weight: bold;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.status-cell {
    padding: 8px 6px;
    border-right: 1px solid #e0e0e0;
    vertical-align: top;
    background-color: #fff;
    width: 50%;
}

.info-cell {
    padding: 8px 6px;
    vertical-align: top;
    background-color: #fff;
    width: 50%;
}

.status-title {
    font-weight: bold;
    color: #800080;
    font-size: 15px;
}

.status-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.info-box {
    background-color: #f9f0ff;
    border-left: 3px solid #800080;
    padding: 6px;
    border-radius: 2px;
}

.info-title {
    font-weight: bold;
    font-size: 14px;
}

.info-content {
    color: #800080;
    font-weight: bold;
    font-size: 13px;
}
