/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 13 2025 | 11:33:47 */
/* ===== SOLICITAÇÕES DE CONTEÚDO - CSS ===== */
.solicitacoes-container { max-width: 800px; margin: 0 auto; padding: 20px; }
.solicitacao-header { text-align: center; margin-bottom: 40px; padding: 30px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-radius: 12px; }
.solicitacao-header h2 { margin: 0 0 10px 0; font-size: 28px; }
.solicitacao-header p { margin: 0; opacity: 0.9; }
.aviso-importante-grande { background: #fff3cd; border: 2px solid #ffc107; border-radius: 8px; padding: 15px; margin: 15px 0; text-align: center; }
.aviso-importante-grande h4 { margin: 0 0 10px 0; color: #856404; }
.aviso-importante-grande p { margin: 0; color: #856404; font-size: 14px; }

.solicitacao-form { background: white; border-radius: 12px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.form-etapa { display: none; }
.form-etapa.ativa { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.campo-grupo { margin-bottom: 25px; }
.campo-grupo label { display: block; margin-bottom: 8px; font-weight: 600; color: #2d3748; }
.campo-input, .campo-select, .campo-textarea { width: 100%; padding: 12px 15px; border: 2px solid #e2e8f0; border-radius: 8px; font-size: 16px; transition: all 0.3s ease; }
.campo-input:focus, .campo-select:focus, .campo-textarea:focus { outline: none; border-color: #4299e1; box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1); }
.campo-file { width: 100%; padding: 10px; border: 2px dashed #cbd5e0; border-radius: 8px; background: #f7fafc; }
.campo-textarea { resize: vertical; min-height: 100px; }

.campo-erro {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}

.aviso-importante { background: #fffaf0; border: 2px solid #ed8936; border-radius: 8px; padding: 20px; margin-bottom: 25px; }
.aviso-importante ol { margin: 15px 0; padding-left: 20px; }
.aviso-importante li { margin-bottom: 8px; }

.form-acoes { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 20px; border-top: 1px solid #e2e8f0; }
.btn-voltar, .btn-proximo, .btn-enviar { padding: 12px 30px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-voltar { background: #a0aec0; color: white; }
.btn-voltar:hover { background: #718096; }
.btn-proximo, .btn-enviar { background: #4299e1; color: white; }
.btn-proximo:hover, .btn-enviar:hover { background: #3182ce; transform: translateY(-2px); }
.btn-enviar { background: #48bb78; }
.btn-enviar:hover { background: #38a169; }

.confirmacao-sucesso { text-align: center; padding: 40px; }
.confirmacao-sucesso h3 { color: #48bb78; font-size: 24px; margin-bottom: 15px; }
.info-confirmacao { text-align: left; margin: 20px 0; }
.detalhes-prazo { background: #e8f5e8; border: 1px solid #4caf50; border-radius: 8px; padding: 15px; margin: 15px 0; }
.acompanhamento { background: #e3f2fd; border: 1px solid #2196f3; border-radius: 8px; padding: 15px; margin: 15px 0; }
.btn-painel { display: inline-block; background: #2196f3; color: white; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: 600; margin: 10px 0; transition: all 0.3s ease; }
.btn-painel:hover { background: #1976d2; transform: translateY(-2px); }
.btn-nova-solicitacao { background: #4299e1; color: white; border: none; padding: 12px 25px; border-radius: 8px; font-size: 16px; cursor: pointer; margin-top: 20px; }

@media (max-width: 768px) {
    .solicitacoes-container { padding: 10px; }
    .solicitacao-form { padding: 20px; }
    .form-acoes { flex-direction: column; gap: 10px; }
    .btn-voltar, .btn-proximo, .btn-enviar { width: 100%; }
}