 /* ── Formulário expandido ────────────────────────────── */
        .owner-form { max-width: 500px; gap: 0; }

        .form-group { margin-bottom: 12px; }

        .form-group select {
            width: 100%;
            padding: 13px 14px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
            outline: none;
            color: #333;
            background: #fff;
        }

        .form-mesmalinha {
            display: flex;
            gap: 8px;
        }

        .form-mesmalinha input { flex: 1; }

        .input-numero  { flex: 0 0 100px !important; }
        .input-estado  { flex: 0 0 80px  !important; }

        .form-group input:disabled {
            background-color: #f2f2f2;
            color: #888;
            cursor: not-allowed;
        }

        /* Radio tipo */
        .radio-tipo {
            display: flex;
            gap: 24px;
            justify-content: center;
            padding: 10px 0 2px;
        }

        .radio-tipo label {
            color: rgba(255,255,255,0.92);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .radio-tipo input[type="radio"] {
            width: auto;
            accent-color: #fff;
            cursor: pointer;
        }

        /* Label auxiliar acima dos campos (endereço, CEP lookup) */
        .field-hint {
            display: block;
            color: rgba(255,255,255,0.55);
            font-size: 11px;
            margin-bottom: 4px;
            text-align: left;
        }

        /* ── Modal de confirmação (reutiliza .modal-overlay / .modal-box) ── */
        .modal-box p.modal-text {
            color: #444;
            font-size: 14px;
            line-height: 1.65;
            margin: 0 0 22px;
        }

        .modal-btn-row {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .btn-modal-cancel {
            padding: 10px 22px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid #ccc;
            background: #f0f0f0;
            color: #555;
            font-family: 'Inter', sans-serif;
        }

        .btn-modal-confirm {
            padding: 10px 22px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            background: var(--primary);
            color: #fff;
            font-family: 'Inter', sans-serif;
        }

        .btn-modal-confirm:hover { background: #003d7a; }

        /* Nota Chat Imóvel abaixo dos benefícios */
        .benefit-note {
            font-size: 13px !important;
            color: #888 !important;
            margin-top: 8px !important;
        }

        @media (max-width: 540px) {
            .form-mesmalinha { flex-direction: column; }
            .input-numero, .input-estado { flex: 1 !important; }
        }