/* Container Principal */
.cd-wrapper { 
    max-width: 850px; 
    margin: 20px auto; 
    font-family: 'Segoe UI', Roboto, sans-serif; 
    color: #ffffff !important; 
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
}

/* Títulos e Textos */
.cd-wrapper h2, .cd-wrapper p, .cd-wrapper label {
    color: #ffffff !important;
}

/* Menu de Navegação */
.cd-nav-tabs { 
    display: flex !important; 
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important; 
    margin-bottom: 30px !important; 
    gap: 15px !important; 
}

.cd-nav-tabs a { 
    text-decoration: none !important; 
    color: #ffffff !important; 
    font-weight: bold !important; 
    padding: 15px 10px !important; 
    border-bottom: 4px solid transparent !important; 
    transition: 0.3s !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    opacity: 0.7;
}

.cd-nav-tabs a.active { 
    border-bottom: 4px solid #FF6600 !important; 
    color: #FF6600 !important; 
    opacity: 1 !important;
}

/* Formulário e Alinhamento */
.cd-form-group { 
    margin-bottom: 25px !important; 
}

.cd-form-group label { 
    display: block !important; 
    margin-bottom: 8px !important; 
    font-weight: 600 !important;
}

.cd-form-group input[type="text"], 
.cd-form-group input[type="email"], 
.cd-form-group textarea, 
.cd-form-group select {
    width: 100% !important;
    padding: 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

/* Estilo para os Radio Buttons (O que você pediu) */
.cd-radio-group {
    display: flex !important;
    gap: 30px !important;
    margin-top: 10px !important;
    align-items: center !important;
}

.cd-radio-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    margin-bottom: 0 !important; /* Remove margens extras do tema */
}

.cd-radio-item input[type="radio"] {
    margin: 0 !important;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    accent-color: #FF6600 !important; /* Cor laranja no rádio */
}

/* Botão Enviar */
.cd-btn-primary { 
    background-color: #FF6600 !important; 
    color: #ffffff !important; 
    padding: 15px 45px !important; 
    border: none !important; 
    border-radius: 6px !important; 
    cursor: pointer !important; 
    font-weight: bold !important; 
    text-transform: uppercase !important;
    font-size: 16px !important;
    transition: background 0.3s ease !important;
}

.cd-btn-primary:hover { 
    background-color: #e65c00 !important; 
}

/* Box de Sucesso e Protocolo */
.cd-protocolo-box { 
    font-size: 24px !important; 
    color: #FF6600 !important; 
    background: rgba(0, 0, 0, 0.4) !important; 
    padding: 20px !important; 
    border: 1px dashed #FF6600 !important; 
    display: inline-block !important;
    margin: 20px 0 !important;
    border-radius: 8px !important;
}

/* =========================================
   ESTILOS DO CARD DE RESULTADO (CONSULTA)
   ========================================= */

/* Container principal do resultado */
.cd-status-card {
    background-color: #ffffff !important; /* Força o fundo branco */
    color: #333333 !important; /* Texto em cinza escuro/preto para leitura */
    padding: 25px !important;
    border-radius: 10px !important;
    margin-top: 30px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important; /* Sombra suave para destacar */
    border: none !important;
}

/* Título "Resultado da Consulta" (Mantendo o laranja da marca) */
.cd-status-card h3 {
    color: #FF6600 !important;
    margin-bottom: 20px !important;
    font-size: 1.5rem !important;
    border-bottom: 2px solid #f0f0f0 !important;
    padding-bottom: 15px !important;
}

/* Parágrafos e textos em negrito dentro do card */
.cd-status-card p, 
.cd-status-card strong {
    color: #333333 !important;
    font-size: 1rem !important;
    margin-bottom: 10px !important;
}

/* Badge de Status (Pendente, Em Análise, etc.) */
.cd-badge {
    background-color: #FF6600 !important;
    color: #ffffff !important;
    padding: 5px 15px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    display: inline-block !important;
}

/* Box de visualização da mensagem do relato */
.cd-relato-preview {
    background-color: #f5f5f5 !important; /* Fundo cinza bem claro */
    color: #333333 !important; /* Texto preto */
    padding: 20px !important;
    border-left: 5px solid #FF6600 !important; /* Borda lateral laranja */
    margin-top: 25px !important;
    border-radius: 6px !important;
    font-style: italic !important;
    line-height: 1.6 !important;
}

/* Título "Sua Mensagem" dentro do box */
.cd-relato-preview strong {
    display: block !important;
    margin-bottom: 10px !important;
    font-style: normal !important;
    color: #FF6600 !important; /* Destaque em laranja */
}