/* here you can put your own css to customize and override the theme */
.input-secure {
    text-security: disc !important;
    -webkit-text-security: disc !important;
    -mox-text-security: disc !important;
}

/* ===========================================
   2FA MODULE — Modal Styles
   =========================================== */

/* --- Modal Headers (gradients) --- */
.tfa-modal-header {
    color: white;
    border-radius: 4px 4px 0 0;
}
.tfa-modal-header--amber {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}
.tfa-modal-header--green {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}
.tfa-modal-header--dark {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}
.tfa-modal-header .close {
    color: white;
    opacity: 0.8;
}
.tfa-modal-header .modal-title {
    margin: 0;
    font-weight: 600;
}
.tfa-modal-header small {
    opacity: 0.9;
}

/* --- Header layout --- */
.tfa-modal-header-center {
    text-align: center;
    padding: 10px 0;
}
.tfa-modal-header-flex {
    display: flex;
    align-items: center;
}
.tfa-header-icon {
    font-size: 48px;
    margin-bottom: 10px;
}
.tfa-header-icon-sm {
    font-size: 36px;
    margin-right: 15px;
}

/* --- Body & Footer --- */
.tfa-modal-body {
    padding: 25px;
}
.tfa-modal-body--flush {
    padding: 0;
}
.tfa-modal-footer {
    text-align: center;
    border-top: 1px solid #eee;
}
.tfa-modal-footer--spaced {
    border-top: 1px solid #eee;
    padding: 15px 25px;
}

/* --- Token digit inputs --- */
.tfa-digit,
.tfa-digit-setup {
    width: 45px;
    height: 55px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s;
}
.tfa-digits-container {
    text-align: center;
}
.tfa-digits-row {
    display: inline-flex;
    gap: 8px;
}
.tfa-token-description {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}
.tfa-token-message {
    text-align: center;
    margin-top: 15px;
    min-height: 24px;
}

/* --- Security options (menu) --- */
.security-option {
    padding: 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}
.security-option:hover {
    background: #f8f9fa;
}
.security-option-flex {
    display: flex;
    align-items: center;
}
.security-option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.security-option-icon i {
    color: white;
    font-size: 20px;
}
.security-option-content {
    flex: 1;
}
.security-option-content h4 {
    margin: 0 0 5px 0;
    font-weight: 600;
}
.security-option-content p {
    margin: 0;
    color: #666;
    font-size: 13px;
}
.security-option-arrow {
    color: #ccc;
    font-size: 18px;
}

/* --- Warning modal header --- */
.tfa-warning-header {
    padding: 20px 25px;
}
.tfa-warning-icons {
    margin-bottom: 10px;
}
.tfa-warning-icons i:first-child {
    margin-right: 8px;
}
.tfa-warning-icons i {
    font-size: 28px;
}
.tfa-warning-title {
    margin: 0 0 5px 0;
    font-weight: 700;
    font-size: 22px;
}
.tfa-warning-subtitle {
    margin: 0;
    opacity: 0.95;
    font-size: 14px;
}

/* --- Info box (callout) --- */
.tfa-info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}
.tfa-info-box-icon {
    font-size: 24px;
    color: #f39c12;
    margin-right: 15px;
    margin-top: 2px;
}
.tfa-info-box-title {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 14px;
}
.tfa-info-box-text {
    margin: 0;
    color: #666;
    font-size: 13px;
}

/* --- App cards (download) --- */
.tfa-app-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.2s;
}
.tfa-app-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.tfa-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.tfa-app-icon i {
    color: white;
    font-size: 24px;
}
.tfa-app-name {
    margin: 0 0 4px 0;
    font-weight: 600;
    font-size: 14px;
}
.tfa-app-vendor {
    color: #999;
    font-size: 11px;
    margin-bottom: 12px;
}
.tfa-app-links .btn {
    margin: 2px;
    font-size: 11px;
}
.tfa-app-badge {
    position: absolute;
    top: 8px;
    right: 8px;
}
.tfa-app-badge .label {
    font-size: 10px;
}

/* --- Section label --- */
.tfa-section-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 14px;
}

/* --- Countdown / Progress --- */
.tfa-countdown {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.tfa-countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.tfa-countdown-label i {
    margin-right: 8px;
}
.tfa-countdown-label span {
    font-size: 14px;
    color: #555;
}
.tfa-progress-track {
    background: #e0e0e0;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}
.tfa-progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s;
}

/* --- Setup 2FA (enable) --- */
.tfa-loading {
    text-align: center;
    padding: 40px;
}
.tfa-loading i {
    color: #3498db;
}
.tfa-loading p {
    margin-top: 15px;
    color: #666;
}
.tfa-setup-heading {
    color: #2c3e50;
    margin-bottom: 15px;
}
.tfa-setup-text {
    color: #666;
    font-size: 13px;
}
.tfa-setup-qr {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 15px 0;
}
.tfa-setup-hint {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}
.tfa-setup-info {
    margin-top: 15px;
    padding: 10px;
    background: #e8f4fd;
    border-radius: 5px;
    font-size: 12px;
}
.tfa-setup-verify {
    text-align: center;
    margin: 30px 0;
}
.tfa-setup-message {
    text-align: center;
    min-height: 50px;
}
.tfa-setup-actions {
    text-align: center;
    margin-top: 20px;
}
.tfa-secret-input {
    font-family: monospace;
    font-size: 12px;
    background: #f8f9fa;
}

/* ===========================================
   CONSULTA CNPJ / RECEITA FEDERAL
   =========================================== */

/* Fica dentro do col-md-6 do campo CNPJ, abaixo do input */
.mc-cnpj-feedback {
    display: block;
    clear: both;
    margin-top: 4px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}
.mc-cnpj-icone {
    font-style: normal;
    margin-right: 3px;
}

.mc-cnpj-erro {
    color: #a94442;
    background-color: #fdf2f2;
    border: 1px solid #e4b9b9;
}

.mc-cnpj-aviso {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border: 1px solid #ddc;
}

.mc-cnpj-ok {
    color: #3c763d;
    background-color: #f0faf0;
    border: 1px solid #c3e6cb;
}

.mc-cnpj-carregando {
    color: #555;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.mc-cnpj-carregando img {
    vertical-align: middle;
    margin-right: 4px;
    width: 14px;
}

/* --- Badge de status de sincronização --- */
.rf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 6px;
    border-radius: 10px !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.2px;
}
.rf-badge i { font-size: 14px; }
.rf-badge-default {
    color: #7f8c9b;
    background: #f0f2f5;
    border: 1px solid #dce1e8;
}
.rf-badge-warning {
    color: #946b2d;
    background: linear-gradient(135deg, #fef9ed, #fdf3d7);
    border: 1px solid #f0d78e;
}
.rf-badge-success {
    color: #1e6e3e;
    background: linear-gradient(135deg, #edf7ed, #d4edda);
    border: 1px solid #a3d9a5;
}
.rf-badge-danger {
    color: #7b1d1d;
    background: linear-gradient(135deg, #fef0f0, #fddede);
    border: 1px solid #f5a8a8;
}

/* ===========================================
   MUI BADGES — Sistema genérico de badges
   Reutilizáveis em qualquer contexto futuro.
   Visual alinhado ao Material Design: pill,
   gradiente suave, tipografia compacta.
   =========================================== */
.mui-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
    white-space: nowrap;
    vertical-align: middle;
}
.mui-badge i { font-size: 12px; }

.mui-badge-default {
    color: #7f8c9b;
    background: #f0f2f5;
    border: 1px solid #dce1e8;
}
.mui-badge-success {
    color: #1e6e3e;
    background: linear-gradient(135deg, #edf7ed, #d4edda);
    border: 1px solid #a3d9a5;
}
.mui-badge-warning {
    color: #946b2d;
    background: linear-gradient(135deg, #fef9ed, #fdf3d7);
    border: 1px solid #f0d78e;
}
.mui-badge-danger {
    color: #7b1d1d;
    background: linear-gradient(135deg, #fef0f0, #fddede);
    border: 1px solid #f5a8a8;
}
.mui-badge-info {
    color: #165a87;
    background: linear-gradient(135deg, #e8f3fc, #d0e9f8);
    border: 1px solid #9bcde8;
}
.mui-badge-neutral {
    color: #3d4f61;
    background: linear-gradient(135deg, #f0f4f8, #e2eaf2);
    border: 1px solid #bfcdd9;
}

/* --- Card principal dos dados RF --- */
.rf-card {
    border: 1px solid #d5dbe3;
    border-radius: 8px;
    overflow: hidden;
    font-size: 13px;
    background: #fff;
    margin-top: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Header: fundo claro com borda inferior discreta */
.rf-card-header {
    padding: 11px 16px;
    background: #f7f9fc;
    border-bottom: 1px solid #dde3ec;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rf-situacao {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.rf-situacao i { font-size: 13px; }
.rf-situacao-ativa {
    color: #fff;
    background: rgba(39, 174, 96, 0.85);
}
.rf-situacao-inativa {
    color: #fff;
    background: rgba(192, 57, 43, 0.85);
}
.rf-situacao-outra {
    color: #fff;
    background: rgba(243, 156, 18, 0.85);
}

/* Info: dados básicos empilhados (vertical, sem grid) */
.rf-info-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.rf-info-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 16px;
    border-bottom: 1px solid #eef0f4;
}
.rf-info-row:last-child { border-bottom: none; }
.rf-info-label {
    flex: 0 0 138px;
    padding-right: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4a5568;
    letter-spacing: 0.35px;
}
.rf-info-value {
    flex: 1;
    color: #2d3748;
    font-size: 13px;
    font-weight: 400;
}

/* Seções internas (CNAEs, sócios) */
.rf-section {
    padding: 10px 16px 12px;
    border-top: 1px solid #e8ecf1;
}
.rf-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4a5568;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e2e8f0;
}
.rf-section-title i {
    margin-right: 5px;
    color: #5b7a9d;
}

/* CNAE principal */
.rf-cnae-principal {
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 500;
}
.rf-cnae-codigo {
    display: inline-block;
    background: linear-gradient(135deg, #e8edf5, #dce4f2);
    color: #34495e;
    border: 1px solid #c1cfe0;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-family: 'Courier New', monospace;
    margin-right: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* CNAEs secundários */
.rf-cnaes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rf-cnaes-list li {
    padding: 5px 0;
    color: #4a5568;
    border-bottom: 1px solid #f5f6f8;
    line-height: 1.5;
    font-size: 12px;
}
.rf-cnaes-list li:last-child { border-bottom: none; }

/* Tabela de sócios */
.rf-socios-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.rf-socios-table thead tr {
    background: linear-gradient(180deg, #f5f7fa, #edf0f5);
}
.rf-socios-table th {
    padding: 7px 10px;
    text-align: left;
    font-weight: 700;
    color: #5a6a7e;
    border-bottom: 2px solid #d5dbe3;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.rf-socios-table td {
    padding: 7px 10px;
    color: #2c3e50;
    border-bottom: 1px solid #f0f2f5;
    font-weight: 400;
}
.rf-socios-table tbody tr:last-child td { border-bottom: none; }
.rf-socios-table tbody tr:hover { background: #f8f9fb; }

/* Variante de card para CNPJ inválido */
.rf-card-invalido {
    border-color: #f5a8a8;
}
.rf-card-invalido .rf-card-header {
    background: linear-gradient(135deg, #fff5f5, #fdeaea);
    border-bottom-color: #f5a8a8;
}

/* Footer: data de sincronização */
.rf-card-footer {
    padding: 8px 16px;
    background: #f5f7fa;
    border-top: 1px solid #e8ecf1;
    font-size: 11px;
    color: #8494a7;
}
.rf-card-footer i {
    margin-right: 5px;
    color: #a0b0c0;
}

/* --- Badges de status na grid de listagem --- */
.mc-status-ativo,
.mc-status-inativo,
.mc-status-pendente,
.mc-badge-rf {
    display: inline-block;
    padding: 2px 4px;
    border-radius: 8px !important;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 3px;
    white-space: nowrap;
    vertical-align: baseline;
}
.mc-status-ativo {
    background-color: #eaf7ef;
    color: #1a6e35;
    border: 1px solid #b7dfc5;
}
.mc-status-inativo {
    background-color: #fdf0ef;
    color: #8b2019;
    border: 1px solid #f2b8b4;
}
.mc-status-pendente {
    background-color: #f4f5f6;
    color: #50585f;
    border: 1px solid #d2d6da;
}
.mc-badge-rf {
    background-color: #e8f3fc;
    color: #165a87;
    border: 1px solid #b3d5f0;
}
.mc-badge-rf-invalido {
    background-color: #fdeaea;
    color: #7b1d1d;
    border: 1px solid #f5a8a8;
}
.mc-badge-rf i { margin-right: 2px; }


/* ===========================================
   UTILITÁRIOS
   Escala: 0=0  1=4px  2=8px  3=12px  4=16px  5=24px  6=32px  7=48px
   =========================================== */

/* --- Margin --- */
.m-0  { margin: 0 !important; }
.m-1  { margin: 4px !important; }
.m-2  { margin: 8px !important; }
.m-3  { margin: 12px !important; }
.m-4  { margin: 16px !important; }
.m-5  { margin: 24px !important; }
.m-6  { margin: 32px !important; }
.m-7  { margin: 48px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 4px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 12px !important; }
.mt-4 { margin-top: 16px !important; }
.mt-5 { margin-top: 24px !important; }
.mt-6 { margin-top: 32px !important; }
.mt-7 { margin-top: 48px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 4px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 12px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-5 { margin-bottom: 24px !important; }
.mb-6 { margin-bottom: 32px !important; }
.mb-7 { margin-bottom: 48px !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 4px !important; }
.ml-2 { margin-left: 8px !important; }
.ml-3 { margin-left: 12px !important; }
.ml-4 { margin-left: 16px !important; }
.ml-5 { margin-left: 24px !important; }
.ml-6 { margin-left: 32px !important; }
.ml-7 { margin-left: 48px !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 4px !important; }
.mr-2 { margin-right: 8px !important; }
.mr-3 { margin-right: 12px !important; }
.mr-4 { margin-right: 16px !important; }
.mr-5 { margin-right: 24px !important; }
.mr-6 { margin-right: 32px !important; }
.mr-7 { margin-right: 48px !important; }

.mx-0    { margin-left: 0 !important;    margin-right: 0 !important; }
.mx-1    { margin-left: 4px !important;  margin-right: 4px !important; }
.mx-2    { margin-left: 8px !important;  margin-right: 8px !important; }
.mx-3    { margin-left: 12px !important; margin-right: 12px !important; }
.mx-4    { margin-left: 16px !important; margin-right: 16px !important; }
.mx-5    { margin-left: 24px !important; margin-right: 24px !important; }
.mx-6    { margin-left: 32px !important; margin-right: 32px !important; }
.mx-7    { margin-left: 48px !important; margin-right: 48px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.my-0 { margin-top: 0 !important;    margin-bottom: 0 !important; }
.my-1 { margin-top: 4px !important;  margin-bottom: 4px !important; }
.my-2 { margin-top: 8px !important;  margin-bottom: 8px !important; }
.my-3 { margin-top: 12px !important; margin-bottom: 12px !important; }
.my-4 { margin-top: 16px !important; margin-bottom: 16px !important; }
.my-5 { margin-top: 24px !important; margin-bottom: 24px !important; }
.my-6 { margin-top: 32px !important; margin-bottom: 32px !important; }
.my-7 { margin-top: 48px !important; margin-bottom: 48px !important; }

/* --- Padding --- */
.p-0  { padding: 0 !important; }
.p-1  { padding: 4px !important; }
.p-2  { padding: 8px !important; }
.p-3  { padding: 12px !important; }
.p-4  { padding: 16px !important; }
.p-5  { padding: 24px !important; }
.p-6  { padding: 32px !important; }
.p-7  { padding: 48px !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 4px !important; }
.pt-2 { padding-top: 8px !important; }
.pt-3 { padding-top: 12px !important; }
.pt-4 { padding-top: 16px !important; }
.pt-5 { padding-top: 24px !important; }
.pt-6 { padding-top: 32px !important; }
.pt-7 { padding-top: 48px !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 4px !important; }
.pb-2 { padding-bottom: 8px !important; }
.pb-3 { padding-bottom: 12px !important; }
.pb-4 { padding-bottom: 16px !important; }
.pb-5 { padding-bottom: 24px !important; }
.pb-6 { padding-bottom: 32px !important; }
.pb-7 { padding-bottom: 48px !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 4px !important; }
.pl-2 { padding-left: 8px !important; }
.pl-3 { padding-left: 12px !important; }
.pl-4 { padding-left: 16px !important; }
.pl-5 { padding-left: 24px !important; }
.pl-6 { padding-left: 32px !important; }
.pl-7 { padding-left: 48px !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 4px !important; }
.pr-2 { padding-right: 8px !important; }
.pr-3 { padding-right: 12px !important; }
.pr-4 { padding-right: 16px !important; }
.pr-5 { padding-right: 24px !important; }
.pr-6 { padding-right: 32px !important; }
.pr-7 { padding-right: 48px !important; }

.px-0 { padding-left: 0 !important;    padding-right: 0 !important; }
.px-1 { padding-left: 4px !important;  padding-right: 4px !important; }
.px-2 { padding-left: 8px !important;  padding-right: 8px !important; }
.px-3 { padding-left: 12px !important; padding-right: 12px !important; }
.px-4 { padding-left: 16px !important; padding-right: 16px !important; }
.px-5 { padding-left: 24px !important; padding-right: 24px !important; }
.px-6 { padding-left: 32px !important; padding-right: 32px !important; }
.px-7 { padding-left: 48px !important; padding-right: 48px !important; }

.py-0 { padding-top: 0 !important;    padding-bottom: 0 !important; }
.py-1 { padding-top: 4px !important;  padding-bottom: 4px !important; }
.py-2 { padding-top: 8px !important;  padding-bottom: 8px !important; }
.py-3 { padding-top: 12px !important; padding-bottom: 12px !important; }
.py-4 { padding-top: 16px !important; padding-bottom: 16px !important; }
.py-5 { padding-top: 24px !important; padding-bottom: 24px !important; }
.py-6 { padding-top: 32px !important; padding-bottom: 32px !important; }
.py-7 { padding-top: 48px !important; padding-bottom: 48px !important; }

/* --- Display --- */
.d-none         { display: none !important; }
.d-block        { display: block !important; }
.d-inline       { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex         { display: flex !important; }
.d-inline-flex  { display: inline-flex !important; }

/* --- Flexbox --- */
.flex-row        { flex-direction: row !important; }
.flex-column     { flex-direction: column !important; }
.flex-wrap       { flex-wrap: wrap !important; }
.flex-nowrap     { flex-wrap: nowrap !important; }
.flex-1          { flex: 1 !important; }
.justify-start   { justify-content: flex-start !important; }
.justify-end     { justify-content: flex-end !important; }
.justify-center  { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around  { justify-content: space-around !important; }
.align-start     { align-items: flex-start !important; }
.align-end       { align-items: flex-end !important; }
.align-center    { align-items: center !important; }
.align-baseline  { align-items: baseline !important; }
.align-stretch   { align-items: stretch !important; }
.gap-1 { gap: 4px !important; }
.gap-2 { gap: 8px !important; }
.gap-3 { gap: 12px !important; }
.gap-4 { gap: 16px !important; }
.gap-5 { gap: 24px !important; }

/* --- Texto --- */
.text-left    { text-align: left !important; }
.text-center  { text-align: center !important; }
.text-right   { text-align: right !important; }
.text-upper   { text-transform: uppercase !important; }
.text-lower   { text-transform: lowercase !important; }
.text-capital { text-transform: capitalize !important; }
.text-nowrap  { white-space: nowrap !important; }
.text-truncate { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.text-break   { word-break: break-word !important; }
.text-muted   { color: #8494a7 !important; }
.text-bold    { font-weight: 700 !important; }
.text-semibold{ font-weight: 600 !important; }
.text-normal  { font-weight: 400 !important; }
.text-sm      { font-size: 11px !important; }
.text-base    { font-size: 13px !important; }
.text-lg      { font-size: 15px !important; }

/* --- Largura / Altura --- */
.w-25   { width: 25% !important; }
.w-50   { width: 50% !important; }
.w-75   { width: 75% !important; }
.w-100  { width: 100% !important; }
.w-auto { width: auto !important; }
.h-100  { height: 100% !important; }
.h-auto { height: auto !important; }
.mw-100 { max-width: 100% !important; }

/* --- Bordas --- */
.rounded-0  { border-radius: 0 !important; }
.rounded-sm { border-radius: 2px !important; }
.rounded    { border-radius: 4px !important; }
.rounded-md { border-radius: 6px !important; }
.rounded-lg { border-radius: 8px !important; }
.rounded-xl { border-radius: 12px !important; }
.rounded-pill { border-radius: 50px !important; }
.rounded-circle { border-radius: 50% !important; }
.border-0   { border: none !important; }

/* --- Posicionamento --- */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed    { position: fixed !important; }

/* --- Overflow --- */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto   { overflow: auto !important; }
.overflow-scroll { overflow: scroll !important; }

/* --- Cursor --- */
.cursor-pointer  { cursor: pointer !important; }
.cursor-default  { cursor: default !important; }
.cursor-not-allowed { cursor: not-allowed !important; }

/* --- Opacidade --- */
.opacity-0   { opacity: 0 !important; }
.opacity-25  { opacity: 0.25 !important; }
.opacity-50  { opacity: 0.5 !important; }
.opacity-75  { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }

/* --- Sombras --- */
.shadow-none { box-shadow: none !important; }
.shadow-sm   { box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important; }
.shadow      { box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important; }
.shadow-lg   { box-shadow: 0 4px 16px rgba(0,0,0,0.16) !important; }