.formulario-gpr {
    background: white;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-top: 24px;
}

.campo-form {
    margin-bottom: 24px;
}

.campo-form label {
    display: block;
    font-weight: 700;
    color: #203452;
    margin-bottom: 10px;
}

.campo-form input[type="text"],
.campo-form input[type="email"],
.campo-form input[type="date"],
.campo-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cfd8e3;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.campo-form input:focus,
.campo-form select:focus {
    border-color: #004a80;
    box-shadow: 0 0 0 3px rgba(0, 74, 128, 0.12);
}

.campo-form small {
    display: block;
    margin-top: 6px;
    color: #6b7280;
}

.opcoes-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.opcoes-form label {
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.opcoes-form input {
    margin-top: 3px;
}

.campo-renovar {
    border-left: 4px solid #004a80;
    padding-left: 18px;
}

.subtitulo-form {
    background: #f8fafc;
    border-left: 4px solid #004a80;
    padding: 18px 20px;
    border-radius: 12px;
    margin: 30px 0 24px 0;
}

.subtitulo-form h2 {
    color: #004a80;
    margin-bottom: 6px;
    font-size: 22px;
}

.subtitulo-form p {
    margin: 0;
    color: #52616f;
}

.texto-ajuda {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.texto-ajuda p {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.texto-ajuda p:last-child {
    margin-bottom: 0;
}

.campo-form input[type="file"] {
    width: 100%;
    padding: 14px;
    background: #f8fafc;
    border: 1px dashed #94a3b8;
    border-radius: 10px;
    cursor: pointer;
}

.box-modelo-documento {
    background: #f0f7fc;
    border: 1px solid #c9e2f2;
    border-left: 4px solid #004a80;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.box-modelo-documento strong {
    color: #004a80;
    display: block;
    margin-bottom: 6px;
}

.box-modelo-documento p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
}

.btn-modelo {
    background: #004a80;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

.btn-modelo:hover {
    opacity: 0.9;
}

.campo-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cfd8e3;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    resize: vertical;
    font-family: Arial, sans-serif;
}

.campo-form textarea:focus {
    border-color: #004a80;
    box-shadow: 0 0 0 3px rgba(0, 74, 128, 0.12);
}