/* CSS Document */






/* DENUNCIA */

.chamadafundo  { background-color:#efefef; padding:30px; }

.card {
    background: #fff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 420px;
  }
  .denuncia h1 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
  }
  .denuncia  p.subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .denuncia label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
  }
  .denuncia textarea {
    width: 100%;
    min-height: 140px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Roboto';
    resize: vertical;
  }
  .denuncia textarea:focus {
    outline: none;
    border-color: #6c5ce7;
  }
 .denuncia  button {
    margin-top: 16px;
    width: 30%;
    padding: 12px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  .denuncia button:hover {
    background: #c20000;
  }
  .denuncia button:disabled {
    background: #b3aef0;
    cursor: not-allowed;
  }
  .mensagem-status {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
  }
  .sucesso {
    background: #e6f7ed;
    color: #1e7e42;
    border: 1px solid #b6e6c6;
  }
  .erro {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f5c2be;
  }