/* ========================================
   SISTEMA DE ATERMAÇÃO - ESTILOS PRINCIPAIS
   Desenvolvido seguindo diretrizes CNJ
   VERSÃO COM FUNDO CLARO
   ======================================== */

/* ===== VARIÁVEIS CSS ===== */
:root {
    --cor-primaria: #2E7D32;
    --cor-secundaria: #FFC107;
    --cor-texto: #333333;
    --cor-fundo: #ffffff;
    --cor-fundo-secao: #f8f9fa;
    --cor-branco: #ffffff;
    --cor-erro: #d32f2f;
    --cor-sucesso: #4caf50;
    --cor-info: #2196f3;
    --cor-aviso: #ff9800;
    --sombra: 0 2px 8px rgba(0,0,0,0.1);
    --sombra-forte: 0 4px 16px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --border-radius-grande: 12px;
    --transicao: all 0.3s ease;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--cor-fundo);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
}

/* ===== CONTAINER PRINCIPAL ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--cor-fundo);
    min-height: 100vh;
}

/* ===== CABEÇALHO ===== */
.cabecalho {
    background: linear-gradient(135deg, var(--cor-primaria), #4CAF50);
    color: var(--cor-branco);
    padding: 30px 0;
    text-align: center;
    margin-bottom: 30px;
    border-radius: var(--border-radius-grande);
    box-shadow: var(--sombra);
}

.cabecalho h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--cor-branco);
}

.cabecalho p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--cor-branco);
}

/* ===== BARRA DE PROGRESSO ===== */
.progresso {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    background-color: var(--cor-fundo);
    padding: 15px;
    border-radius: var(--border-radius);
}

.passo {
    display: flex;
    align-items: center;
    color: #666666;
    font-weight: 500;
    transition: var(--transicao);
    padding: 10px;
    border-radius: var(--border-radius);
    background-color: var(--cor-branco);
    border: 1px solid #e0e0e0;
}

.passo.ativo {
    color: var(--cor-primaria);
    transform: scale(1.05);
    background: rgba(46, 125, 50, 0.1);
    border-color: var(--cor-primaria);
}

.passo.concluido {
    color: var(--cor-sucesso);
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--cor-sucesso);
}

.numero-passo {
    background: #dddddd;
    color: var(--cor-branco);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    font-size: 14px;
    transition: var(--transicao);
}

.passo.ativo .numero-passo {
    background: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.3);
}

.passo.concluido .numero-passo {
    background: var(--cor-sucesso);
}

/* ===== SEÇÕES ===== */
.secao {
    background: var(--cor-branco);
    border-radius: var(--border-radius-grande);
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--sombra);
    display: none;
    animation: fadeIn 0.3s ease-in;
    border: 1px solid #e8e8e8;
}

.secao.ativa {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.titulo-secao {
    color: var(--cor-primaria);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--cor-secundaria);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== SUBSEÇÕES ===== */
.subsecao {
    margin: 30px 0;
    padding: 20px;
    background: var(--cor-fundo-secao);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--cor-primaria);
    border: 1px solid #e8e8e8;
}

.subsecao h3 {
    color: var(--cor-primaria);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.subsecao h4 {
    color: var(--cor-primaria);
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

/* ===== CAMPOS DE FORMULÁRIO ===== */
.grupo-campo {
    margin-bottom: 25px;
}

.label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cor-texto);
    font-size: 14px;
}

.obrigatorio {
    color: var(--cor-erro);
    font-weight: bold;
}

.input {
    width: 100%;
    padding: 12px;
    border: 2px solid #dddddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transicao);
    background-color: var(--cor-branco);
    color: var(--cor-texto);
}

.input:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    background-color: var(--cor-branco);
}

.input:invalid:not(:placeholder-shown) {
    border-color: var(--cor-erro);
}

.input:valid:not(:placeholder-shown) {
    border-color: var(--cor-sucesso);
}

.textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    background-color: var(--cor-branco);
}

.select {
    cursor: pointer;
    background-color: var(--cor-branco);
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    appearance: none;
}

/* ===== CHECKBOXES ===== */
.checkbox-grupo {
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
    gap: 10px;
}

.checkbox {
    margin-top: 3px;
    transform: scale(1.3);
    cursor: pointer;
    accent-color: var(--cor-primaria);
}

.checkbox-label {
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    color: var(--cor-texto);
}

/* ===== GRIDS ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* ===== CARDS ===== */
.card {
    background: var(--cor-branco);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 2px solid #e0e0e0;
    transition: var(--transicao);
}

.card:hover {
    border-color: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: var(--sombra);
}

.card h3 {
    color: var(--cor-primaria);
    margin-bottom: 15px;
}

/* ===== LISTAS DE PESSOAS ===== */
.lista-pessoas {
    background: var(--cor-fundo-secao);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
}

.pessoa-item {
    background: var(--cor-branco);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transicao);
}

.pessoa-item:hover {
    box-shadow: var(--sombra);
}

.pessoa-dados {
    flex: 1;
}

.pessoa-dados strong {
    color: var(--cor-primaria);
    font-size: 1.1rem;
}

.pessoa-dados small {
    color: #666666;
    display: block;
    margin-top: 5px;
}

.pessoa-acoes {
    display: flex;
    gap: 10px;
}

/* ===== CONTADORES ===== */
.contador {
    display: inline-block;
    background: var(--cor-primaria);
    color: var(--cor-branco);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

/* ===== SELETORES DE TEMPLATE ===== */
.template-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.template-card {
    background: var(--cor-branco);
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transicao);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--cor-texto);
}

.template-card:hover {
    border-color: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: var(--sombra);
}

.template-card.selecionado {
    border-color: var(--cor-primaria);
    background: rgba(46, 125, 50, 0.05);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.template-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* ===== BOTÕES ===== */
.botoes {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
    background-color: var(--cor-fundo);
    padding: 20px;
    border-radius: var(--border-radius);
}

.botao {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transicao);
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.botao:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.botao-primario {
    background: var(--cor-primaria);
    color: var(--cor-branco);
}

.botao-primario:hover:not(:disabled) {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.botao-secundario {
    background: #6c757d;
    color: var(--cor-branco);
}

.botao-secundario:hover:not(:disabled) {
    background: #5a6268;
}

.botao-sucesso {
    background: var(--cor-sucesso);
    color: var(--cor-branco);
    font-size: 18px;
    padding: 15px 30px;
}

.botao-sucesso:hover:not(:disabled) {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.botao-pequeno {
    padding: 8px 16px;
    font-size: 14px;
    min-width: auto;
}

.botao-erro {
    background: var(--cor-erro);
    color: var(--cor-branco);
}

.botao-erro:hover:not(:disabled) {
    background: #c62828;
}

/* ===== ALERTAS ===== */
.alerta {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 4px solid;
    background-color: var(--cor-branco);
}

.alerta-info {
    background: #e3f2fd;
    border-left-color: var(--cor-info);
    color: #1565c0;
}

.alerta-sucesso {
    background: #e8f5e8;
    border-left-color: var(--cor-sucesso);
    color: #2e7d32;
}

.alerta-erro {
    background: #ffebee;
    border-left-color: var(--cor-erro);
    color: #c62828;
}

.alerta-aviso {
    background: #fff3e0;
    border-left-color: var(--cor-aviso);
    color: #e65100;
}

/* ===== DOCUMENTOS ===== */
.lista-documentos {
    background: var(--cor-fundo-secao);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
}

.documento-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--cor-branco);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

.documento-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-ok {
    background: #e8f5e8;
    color: var(--cor-sucesso);
}

.status-pendente {
    background: #fff3e0;
    color: #f57c00;
}

.status-erro {
    background: #ffebee;
    color: var(--cor-erro);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--cor-branco);
    border-radius: var(--border-radius-grande);
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: var(--sombra-forte);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== CAMPOS ARRAY ===== */
.campo-array {
    border: 2px dashed #dddddd;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 15px 0;
    background: var(--cor-fundo-secao);
}

.item-array {
    background: var(--cor-branco);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

/* ===== LOADING ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--cor-primaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== UTILITÁRIOS ===== */
.escondido {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== ACESSIBILIDADE ===== */
:focus {
    outline: 3px solid var(--cor-secundaria);
    outline-offset: 2px;
}

.botao:focus,
.input:focus,
.select:focus {
    outline: 3px solid var(--cor-secundaria);
    outline-offset: 2px;
}

/* ===== CAMPO COM PREFIXO (R$) ===== */
.input-with-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 12px;
    color: var(--cor-primaria);
    font-weight: 600;
    font-size: 16px;
    z-index: 1;
    pointer-events: none;
}

.input-with-prefix-field {
    padding-left: 45px !important;
    background-color: var(--cor-branco) !important;
}

/* ===== CAMPOS CONDICIONAIS ===== */
.campo-condicional {
    transition: var(--transicao);
    margin-left: 20px;
    border-left: 3px solid var(--cor-secundaria);
    padding-left: 15px;
    background: rgba(255, 193, 7, 0.05);
}

.campo-condicional.escondido {
    display: none !important;
}

/* Animação suave para campos condicionais */
.campo-condicional:not(.escondido) {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* ===== PEDIDOS ===== */
.pedido-item {
    margin: 10px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background: var(--cor-branco);
}

.subcampo-pedido {
    margin-top: 15px;
    padding: 15px;
    background: var(--cor-fundo-secao);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--cor-primaria);
}

.pedidos-especificos,
.pedidos-padrao {
    background: var(--cor-fundo-secao);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 15px 0;
}

/* ===== FORÇA FUNDO BRANCO EM TODOS OS ELEMENTOS ===== */
html, body {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.container, .secao, .subsecao, .card, .lista-pessoas, .pessoa-item, .modal-content {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.input, .textarea, .select {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-color: #dddddd !important;
}

.template-card {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* ===== PRINT ===== */
@media print {
    .cabecalho,
    .progresso,
    .botoes,
    .modal {
        display: none !important;
    }
    
    .secao {
        display: block !important;
        box-shadow: none;
        border: 1px solid #dddddd;
        margin-bottom: 20px;
        page-break-inside: avoid;
        background-color: white !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
}

/* ========================================
   CORREÇÃO ESPECÍFICA PARA MOBILE
   Adicione este código ao FINAL do style.css
   ======================================== */

/* ===== FORÇA FUNDO BRANCO EM TUDO ===== */
* {
    background-color: white !important;
    color: #333333 !important;
}

/* ===== EXCEÇÕES PARA ELEMENTOS COM CORES ESPECÍFICAS ===== */
.cabecalho, .cabecalho * {
    background: linear-gradient(135deg, #2E7D32, #4CAF50) !important;
    color: white !important;
}

.numero-passo {
    background: #dddddd !important;
    color: white !important;
}

.passo.ativo .numero-passo {
    background: #2E7D32 !important;
    color: white !important;
}

.passo.concluido .numero-passo {
    background: #4caf50 !important;
    color: white !important;
}

.botao-primario, .botao-primario * {
    background: #2E7D32 !important;
    color: white !important;
}

.botao-secundario, .botao-secundario * {
    background: #6c757d !important;
    color: white !important;
}

.botao-sucesso, .botao-sucesso * {
    background: #4caf50 !important;
    color: white !important;
}

.botao-erro, .botao-erro * {
    background: #d32f2f !important;
    color: white !important;
}

.contador {
    background: #2E7D32 !important;
    color: white !important;
}

/* ===== ALERTAS COM CORES ESPECÍFICAS ===== */
.alerta-info {
    background: #e3f2fd !important;
    color: #1565c0 !important;
}

.alerta-sucesso {
    background: #e8f5e8 !important;
    color: #2e7d32 !important;
}

.alerta-erro {
    background: #ffebee !important;
    color: #c62828 !important;
}

.alerta-aviso {
    background: #fff3e0 !important;
    color: #e65100 !important;
}

/* ===== BARRA DE PROGRESSO ESPECÍFICA ===== */
.progresso {
    background-color: white !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 30px !important;
}

.passo {
    background-color: white !important;
    color: #666666 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 10px !important;
}

.passo.ativo {
    background: rgba(46, 125, 50, 0.1) !important;
    color: #2E7D32 !important;
    border-color: #2E7D32 !important;
}

.passo.concluido {
    background: rgba(76, 175, 80, 0.1) !important;
    color: #4caf50 !important;
    border-color: #4caf50 !important;
}

/* ===== CORREÇÃO PARA DARK MODE DO SISTEMA ===== */
@media (prefers-color-scheme: dark) {
    * {
        background-color: white !important;
        color: #333333 !important;
    }
    
    .cabecalho, .cabecalho * {
        background: linear-gradient(135deg, #2E7D32, #4CAF50) !important;
        color: white !important;
    }
    
    .botao-primario, .botao-primario * {
        background: #2E7D32 !important;
        color: white !important;
    }
    
    .botao-secundario, .botao-secundario * {
        background: #6c757d !important;
        color: white !important;
    }
    
    .botao-sucesso, .botao-sucesso * {
        background: #4caf50 !important;
        color: white !important;
    }
    
    .progresso {
        background-color: white !important;
    }
    
    .passo {
        background-color: white !important;
        color: #666666 !important;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    * {
        background-color: white !important;
        color: #333333 !important;
    }
    
    .progresso {
        background-color: white !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 20px !important;
    }
    
    .passo {
        background-color: white !important;
        color: #666666 !important;
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        padding: 15px !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 8px !important;
    }
    
    .passo.ativo {
        background: rgba(46, 125, 50, 0.1) !important;
        color: #2E7D32 !important;
        border-color: #2E7D32 !important;
    }
    
    .passo.concluido {
        background: rgba(76, 175, 80, 0.1) !important;
        color: #4caf50 !important;
        border-color: #4caf50 !important;
    }
    
    .cabecalho, .cabecalho * {
        background: linear-gradient(135deg, #2E7D32, #4CAF50) !important;
        color: white !important;
    }
    
    .botao-primario, .botao-primario * {
        background: #2E7D32 !important;
        color: white !important;
    }
    
    .botao-secundario, .botao-secundario * {
        background: #6c757d !important;
        color: white !important;
    }
    
    .botao-sucesso, .botao-sucesso * {
        background: #4caf50 !important;
        color: white !important;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    * {
        background-color: white !important;
        color: #333333 !important;
    }
    
    .progresso {
        background-color: white !important;
        padding: 15px !important;
    }
    
    .passo {
        background-color: white !important;
        color: #666666 !important;
    }
    
    .cabecalho, .cabecalho * {
        background: linear-gradient(135deg, #2E7D32, #4CAF50) !important;
        color: white !important;
    }
}

/* ===== FORÇA PARA WEBKIT (SAFARI MOBILE) ===== */
@supports (-webkit-appearance: none) {
    * {
        background-color: white !important;
        color: #333333 !important;
    }
    
    .progresso {
        background-color: white !important;
    }
    
    .passo {
        background-color: white !important;
        color: #666666 !important;
    }
    
    .cabecalho, .cabecalho * {
        background: linear-gradient(135deg, #2E7D32, #4CAF50) !important;
        color: white !important;
    }
}

/* ===== FORÇA PARA CHROME MOBILE ===== */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    * {
        background-color: white !important;
        color: #333333 !important;
    }
    
    .progresso {
        background-color: white !important;
    }
    
    .passo {
        background-color: white !important;
        color: #666666 !important;
    }
}

/* ===== HACK PARA FORÇAR FUNDO BRANCO ===== */
html, body, .container {
    background: white !important;
    background-color: white !important;
    background-image: none !important;
}

.progresso, .passo {
    background: white !important;
    background-color: white !important;
    background-image: none !important;
}

/* ===== ÚLTIMA TENTATIVA - FORÇA ABSOLUTA ===== */
.progresso {
    background: white !important;
    background-color: white !important;
    background-image: none !important;
    color: #333 !important;
}

.progresso * {
    background-color: white !important;
    color: #333 !important;
}

.passo {
    background: white !important;
    background-color: white !important;
    background-image: none !important;
    color: #666 !important;
}

.passo * {
    background-color: inherit !important;
    color: inherit !important;
}
