/* ============================================================
   ACOMPANHAR MANIFESTACAO - CSS Exclusivo
   Padrao identico ao contato.css (titulo laranja, fundo branco)
   ============================================================ */

/* ===== SECAO PRINCIPAL (padrao contato.css) ===== */
.about-ouvidoria {
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 50%, #fff 100%);
  padding: 60px 0 80px;
  position: relative;
}

/* ===== TITULO PADRAO OECA (copiado do contato.css) ===== */
.titulo-oeca {
  text-align: center;
  margin-bottom: 50px;
}

.titulo-oeca h2 {
  font-family: 'Righteous', cursive;
  font-size: 3.5rem;
  color: #FF9C2C;
  text-shadow: 2px 2px 6px rgba(255,156,44,0.25);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
}

.titulo-oeca h2 i {
  font-size: 2.4rem;
  color: #FF9C2C;
}

.titulo-oeca .linha {
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, #FFDC00, #FF9C2C);
  border-radius: 2px;
  margin: 0 auto 18px;
}

.titulo-oeca p {
  font-size: 1.5rem;
  color: #777;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CARDS (padrao ctt-card do contato.css) ===== */
.ovd-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.ovd-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.ovd-card-title {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ff6600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ff6600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ovd-card-title i {
  font-size: 1.3rem;
}

/* ===== INPUT DE PROTOCOLO (padrao ctt-form) ===== */
.ovd-form .input-group-text {
  background: linear-gradient(135deg, #ff6600, #ff9c2c);
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 1.2rem;
}

.ovd-form .form-control {
  border: 2px solid #eee;
  border-left: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.ovd-form .form-control:focus {
  border-color: #ff6600;
  box-shadow: 0 0 0 4px rgba(255,102,0,0.1);
}

.ovd-btn {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255,102,0,0.3);
  cursor: pointer;
}

.ovd-btn:hover {
  background: linear-gradient(135deg, #e55a00, #ff6600);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,102,0,0.4);
}

/* ===== ALERTAS (padrao ctt-alert) ===== */
.ovd-alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ovd-alert-erro {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.ovd-alert-info {
  background: #e2f3ff;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}

/* ===== CARD RESULTADO ===== */
.ovd-resultado {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-top: 30px;
  animation: fadeInUp 0.5s ease;
}

.ovd-resultado-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ovd-resultado-header h5 {
  font-family: 'Righteous', cursive;
  font-size: 1.3rem;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ovd-resultado-header h5 i {
  color: #FF9C2C;
}

.ovd-resultado-body {
  padding: 30px;
}

/* ===== BADGES ===== */
.badge-status-ovd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge-status-ovd.recebida { background: #e2e8f0; color: #4a5568; }
.badge-status-ovd.em_analise { background: #fef3c7; color: #92400e; }
.badge-status-ovd.encaminhada { background: #dbeafe; color: #1e40af; }
.badge-status-ovd.respondida { background: #dcfce7; color: #166534; }
.badge-status-ovd.concluida { background: #d1fae5; color: #065f46; }
.badge-status-ovd.arquivada { background: #f3f4f6; color: #6b7280; }

.badge-tipo-ovd {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
}

.badge-tipo-ovd.reclamacao { background: #fee2e2; color: #991b1b; }
.badge-tipo-ovd.elogio { background: #d1fae5; color: #065f46; }
.badge-tipo-ovd.sugestao { background: #dbeafe; color: #1e40af; }
.badge-tipo-ovd.denuncia { background: #f3f4f6; color: #374151; }
.badge-tipo-ovd.solicitacao { background: #e0e7ff; color: #3730a3; }
.badge-tipo-ovd.informacao { background: #fef3c7; color: #92400e; }
.badge-tipo-ovd.outros { background: #f3f4f6; color: #6b7280; }

/* ===== TABELA DE DADOS ===== */
.tabela-dados-ovd {
  width: 100%;
}

.tabela-dados-ovd td {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.tabela-dados-ovd td:first-child {
  font-weight: 600;
  color: #718096;
  width: 120px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabela-dados-ovd td:last-child {
  color: #2d3748;
  font-weight: 500;
}

.tabela-dados-ovd tr:last-child td {
  border-bottom: none;
}

/* ===== BOX DESCRICAO ===== */
.box-descricao-ovd {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #FF9C2C;
}

.box-descricao-titulo-ovd {
  font-weight: 700;
  color: #FF9C2C;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.box-descricao-texto-ovd {
  color: #4a5568;
  line-height: 1.7;
  white-space: pre-wrap;
}

/* ===== BOX RESPOSTA ===== */
.box-resposta-ovd {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  border-left: 4px solid #22c55e;
}

.box-resposta-titulo-ovd {
  font-weight: 700;
  color: #166534;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.box-resposta-titulo-ovd i {
  font-size: 1.3rem;
}

.box-resposta-texto-ovd {
  color: #1f2937;
  line-height: 1.7;
  white-space: pre-wrap;
  font-size: 1rem;
}

.box-resposta-data-ovd {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== BOX AGUARDANDO ===== */
.box-aguardando-ovd {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  border-left: 4px solid #f59e0b;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.box-aguardando-ovd i {
  font-size: 1.5rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 3px;
}

.box-aguardando-texto-ovd {
  color: #92400e;
  line-height: 1.6;
}

.box-aguardando-texto-ovd strong {
  display: block;
  margin-bottom: 5px;
  color: #78350f;
}

/* ===== DICAS (padrao ctt-info-card) ===== */
.dicas-ouvidoria {
  margin-top: 40px;
}

.dica-card-ovd {
  background: white;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid #ff6600;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.dica-card-ovd:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.dica-icon-ovd {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6600, #ff9c2c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 3px 10px rgba(255,102,0,0.25);
}

.dica-card-ovd h6 {
  font-family: 'Righteous', cursive;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 6px;
  margin-top: 0;
}

.dica-card-ovd p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== BOTAO VOLTAR (padrao btn-oeca) ===== */
.btn-voltar-ovd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: white !important;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255,102,0,0.25);
}

.btn-voltar-ovd:hover {
  background: linear-gradient(135deg, #e55a00, #ff6600);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,102,0,0.35);
  color: white !important;
}

/* ===== ANIMACOES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 991.98px) {
  .about-ouvidoria { padding: 50px 0 60px; }
  .titulo-oeca h2 { font-size: 2.6rem; }
  .titulo-oeca h2 i { font-size: 1.8rem; }
  .titulo-oeca p { font-size: 1.2rem; }
  .ovd-card { padding: 24px; }
  .ovd-card-title { font-size: 1.3rem; }
  .dica-card-ovd { padding: 20px; }
  .dica-icon-ovd { width: 42px; height: 42px; font-size: 1.1rem; }
}

@media (max-width: 575.98px) {
  .titulo-oeca h2 { font-size: 1.8rem; flex-direction: column; gap: 8px; }
  .titulo-oeca .linha { width: 120px; }
  .ovd-card { padding: 20px; border-radius: 16px; }
  .ovd-card-title { font-size: 1.2rem; margin-bottom: 20px; padding-bottom: 10px; }
  .ovd-form .form-control { padding: 10px 12px; font-size: 0.95rem; }
  .ovd-btn { padding: 12px 24px; font-size: 1rem; }
  .ovd-resultado-header { padding: 20px; }
  .ovd-resultado-header h5 { font-size: 1.1rem; }
  .ovd-resultado-body { padding: 20px; }
  .dica-icon-ovd { width: 38px; height: 38px; font-size: 1rem; }
  .dica-card-ovd h6 { font-size: 1rem; }
  .dica-card-ovd p { font-size: 0.9rem; }
}

/* Reducao de movimento */
@media (prefers-reduced-motion: reduce) {
  .ovd-card, .dica-card-ovd, .ovd-btn, .btn-voltar-ovd {
    transition: none;
    animation: none;
  }
}
