body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0b3d7b 0%, #1a5bbf 70%, #2b6fdb 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    margin: 0;
}
.ouvidoria-card {
    max-width: 950px;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(15px);
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s ease;
}
.municipio-header {
    background: #ffffff;
    padding: 1.5rem 2rem 0.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.brasao-nome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.brasao {
    width: 75px;
    height: 75px;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    border: 2px solid #ffffff;
    background-image: url({{$ORG->Brasao}});
    background-size: cover;
    background-position: center;
    background-color: #ffffff;
}
.nome-municipio {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2b5e;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.nome-municipio small {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c5282;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card-body-custom {
    padding: 2rem 2rem 2rem 2rem;
    background: #ffffff;
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.form-control, .form-select {
    border-radius: 1rem;
    padding: 0.7rem 1rem;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
    border-color: #2b6fdb;
    box-shadow: 0 0 0 3px rgba(43, 111, 219, 0.25);
    background-color: #ffffff;
}
.radio-identity-group {
    background: #f9fafb;
    border-radius: 1.2rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e9eef3;
}
.form-check-input:checked {
    background-color: #1e4a8b;
    border-color: #1e4a8b;
}
.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(30, 74, 139, 0.25);
}
.btn-primary-custom {
    background: linear-gradient(145deg, #1a4c8c, #0e3b6f);
    border: none;
    border-radius: 3rem;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    color: white;
    transition: all 0.25s;
    box-shadow: 0 8px 18px rgba(10, 46, 94, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.btn-primary-custom:hover {
    background: linear-gradient(145deg, #1d5ab0, #124a8c);
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(8, 43, 90, 0.4);
    color: white;
}
.consulta-section {
    background: #f4f7fc;
    border-radius: 1.5rem;
    padding: 1.8rem 1.5rem;
    margin-top: 2.5rem;
    border: 1px solid #e4ebf5;
}
.ql-toolbar.ql-snow {
    border-radius: 1rem 1rem 0 0;
    border-color: #e2e8f0;
    background: #f9fcff;
}
.ql-container.ql-snow {
    border-radius: 0 0 1rem 1rem;
    border-color: #e2e8f0;
    background: #ffffff;
    font-size: 0.95rem;
    min-height: 180px;
}
#editor {
    min-height: 180px;
}
hr.divider {
    margin: 1.8rem 0 1.2rem;
    border-top: 2px dashed #dce3ec;
    opacity: 0.7;
}
.identity-legend {
    font-size: 0.8rem;
    color: #475569;
    margin-left: 0.3rem;
}

.timeline{
    border-left:3px solid #3498db;
    padding-left:20px;
}

.movimentacao{
    position:relative;
    margin-bottom:25px;
}

.movimentacao::before{
    content:"";
    position:absolute;
    left:-30px;
    top:5px;
    width:14px;
    height:14px;
    background:#3498db;
    border-radius:50%;
}